| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Hasura.GraphQL.Execute.Action.Types
Contents
Synopsis
- newtype ActionExecution = ActionExecution {
- unActionExecution :: forall m. (MonadIO m, MonadBaseControl IO m, MonadError QErr m, MonadTrace m) => m (EncJSON, ResponseHeaders)
- data AsyncActionQuerySourceExecution v = AsyncActionQuerySourceExecution {}
- data AsyncActionQueryExecution v
- data AsyncActionQueryExecutionPlan = AsyncActionQueryExecutionPlan {}
- data ActionExecutionPlan
- newtype ActionContext = ActionContext {}
- data ActionWebhookPayload = ActionWebhookPayload {}
- data ActionWebhookErrorResponse = ActionWebhookErrorResponse {
- _awerMessage :: !Text
- _awerCode :: !(Maybe Text)
- _awerExtensions :: !(Maybe Value)
- type ActionWebhookResponse = Value
- data ActionRequestInfo = ActionRequestInfo {
- _areqiUrl :: !Text
- _areqiBody :: !Value
- _areqiHeaders :: ![HeaderConf]
- _areqiTransformedRequest :: !(Maybe Request)
- data ActionResponseInfo = ActionResponseInfo {
- _aresiStatus :: !Int
- _aresiBody :: !Value
- _aresiHeaders :: ![HeaderConf]
- data ActionInternalError = ActionInternalError {}
- data ActionHandlerLog = ActionHandlerLog {}
Documentation
newtype ActionExecution Source #
Constructors
| ActionExecution | |
Fields
| |
data AsyncActionQuerySourceExecution v Source #
Constructors
| AsyncActionQuerySourceExecution | |
Fields
| |
data AsyncActionQueryExecution v Source #
Constructors
| AAQENoRelationships !(ActionLogResponse -> Either QErr EncJSON) | Async actions associated with no relationships. |
| AAQEOnSourceDB !(SourceConfig ('Postgres 'Vanilla)) !(AsyncActionQuerySourceExecution v) | Async actions with relationships defined to Postgres (as of now, we may have support for other backends as well in further iterations) tables. |
data AsyncActionQueryExecutionPlan Source #
A plan to execute async action query
Constructors
| AsyncActionQueryExecutionPlan | |
Fields
| |
data ActionExecutionPlan Source #
newtype ActionContext Source #
Constructors
| ActionContext | |
Fields | |
Instances
data ActionWebhookPayload Source #
Constructors
| ActionWebhookPayload | |
Fields | |
Instances
data ActionWebhookErrorResponse Source #
Constructors
| ActionWebhookErrorResponse | |
Fields
| |
Instances
type ActionWebhookResponse = Value Source #
data ActionRequestInfo Source #
Constructors
| ActionRequestInfo | |
Fields
| |
Instances
data ActionResponseInfo Source #
Constructors
| ActionResponseInfo | |
Fields
| |
Instances
data ActionInternalError Source #
Constructors
| ActionInternalError | |
Fields
| |
Instances
Action handler logging related
data ActionHandlerLog Source #
Constructors
| ActionHandlerLog | |
Fields
| |