Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
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 #
ActionExecution | |
|
data AsyncActionQueryExecution v Source #
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
data ActionExecutionPlan Source #
newtype ActionContext Source #
Instances
data ActionWebhookPayload Source #
Instances
data ActionWebhookErrorResponse Source #
ActionWebhookErrorResponse | |
|
Instances
type ActionWebhookResponse = Value Source #
data ActionRequestInfo Source #
ActionRequestInfo | |
|
Instances
data ActionResponseInfo Source #
ActionResponseInfo | |
|
Instances
data ActionInternalError Source #
ActionInternalError | |
|
Instances
Action handler logging related
data ActionHandlerLog Source #
ActionHandlerLog | |
|