2020-03-11 13:09:25 +03:00
|
|
|
.. meta::
|
|
|
|
:description: Hasura actions
|
|
|
|
:keywords: hasura, docs, actions
|
|
|
|
|
2020-03-11 22:42:36 +03:00
|
|
|
.. _actions:
|
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
Actions
|
|
|
|
=======
|
2020-02-24 19:19:14 +03:00
|
|
|
|
|
|
|
.. contents:: Table of contents
|
|
|
|
:backlinks: none
|
|
|
|
:depth: 2
|
|
|
|
:local:
|
|
|
|
|
|
|
|
What are actions?
|
|
|
|
-----------------
|
|
|
|
|
2020-04-16 10:25:19 +03:00
|
|
|
Actions are a way to extend Hasura's schema with custom business
|
|
|
|
logic using custom queries and mutations. Actions can be
|
2020-02-24 19:19:14 +03:00
|
|
|
added to Hasura to handle various use cases such as data validation, data
|
|
|
|
enrichment from external sources and any other complex business logic.
|
|
|
|
|
2020-08-25 19:21:21 +03:00
|
|
|
.. thumbnail:: /img/graphql/core/actions/actions-arch.png
|
2020-02-24 19:19:14 +03:00
|
|
|
:class: no-shadow
|
|
|
|
:alt: Actions high level architecture
|
|
|
|
|
2020-08-18 14:45:37 +03:00
|
|
|
.. admonition:: Supported from
|
2020-02-24 19:19:14 +03:00
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
Actions are supported in Hasura GraphQL engine versions ``v.1.2.0`` and above.
|
2020-03-09 11:57:29 +03:00
|
|
|
|
2020-06-02 17:55:40 +03:00
|
|
|
Actions are supported for **Postgres versions 10 and above**.
|
2020-03-09 11:57:29 +03:00
|
|
|
|
2020-02-24 19:19:14 +03:00
|
|
|
Action description
|
|
|
|
------------------
|
|
|
|
|
|
|
|
An action consists of the following parts:
|
|
|
|
|
2020-04-16 10:25:19 +03:00
|
|
|
1. ``Type``: The type of the action (``query`` or ``mutation``)
|
|
|
|
2. ``Definition``: The definition of the query or mutation
|
|
|
|
3. ``Handler``: The logic to be run when the query or mutation is executed
|
2020-04-29 10:46:02 +03:00
|
|
|
4. ``Kind``: Sync or async. In case of a query action, there is no ``Kind``
|
|
|
|
associated with it. A query action is always sync
|
2020-04-16 10:25:19 +03:00
|
|
|
|
|
|
|
Type
|
|
|
|
****
|
|
|
|
|
|
|
|
Actions can be of two types:
|
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
- **Query action**: An action of type ``query`` extends the query root of the
|
|
|
|
Hasura schema. This means that you can execute this action through a GraphQL query.
|
|
|
|
Query actions must be used where you want to fetch data from a data source without
|
|
|
|
changing anything on the data source.
|
|
|
|
- **Mutation action**: An action of type ``mutation`` extends the mutation root of
|
|
|
|
the Hasura schema. This means that you can execute this action through a GraphQL
|
|
|
|
mutation. Mutation actions must be used when you want to mutate the state of a data
|
|
|
|
source and fetch some data.
|
2020-02-24 19:19:14 +03:00
|
|
|
|
|
|
|
Definition
|
|
|
|
**********
|
|
|
|
|
|
|
|
The action definition consists of the following:
|
|
|
|
|
2020-04-16 10:25:19 +03:00
|
|
|
- ``Action Name``: The action will be available as a query or mutation in the GraphQL
|
2020-02-24 19:19:14 +03:00
|
|
|
schema named as the action name
|
|
|
|
- ``Arguments``: Arguments are used to pass dynamic values along with the
|
2020-04-16 10:25:19 +03:00
|
|
|
query/mutation.
|
|
|
|
- ``Response type``: The GraphQL type of the response that the query or mutation will
|
2020-02-24 19:19:14 +03:00
|
|
|
return. Actions can only return object types.
|
|
|
|
|
|
|
|
For instance, consider this action definition:
|
|
|
|
|
|
|
|
.. code-block:: graphql
|
|
|
|
|
|
|
|
extend type Mutation {
|
|
|
|
userLogin(username: String!, password: String!): UserInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
In this definition, we are extending the mutation root with an action called
|
|
|
|
``userLogin``.
|
|
|
|
|
|
|
|
- ``userLogin`` is the action name
|
|
|
|
- ``username`` and ``password`` are the arguments that accept non-nullable
|
|
|
|
string values.
|
|
|
|
- ``UserInfo`` is the response type of the action
|
|
|
|
|
|
|
|
**Custom Types**
|
|
|
|
|
|
|
|
An action must return an object type. This means, you will have to define your
|
|
|
|
custom types like so:
|
|
|
|
|
|
|
|
.. code-block:: graphql
|
|
|
|
|
|
|
|
type UserInfo {
|
|
|
|
accessToken: String!
|
|
|
|
userId: Int!
|
|
|
|
}
|
|
|
|
|
2020-03-11 22:42:36 +03:00
|
|
|
Read more about :ref:`custom types<custom_types>`.
|
2020-02-24 19:19:14 +03:00
|
|
|
|
|
|
|
Handler
|
|
|
|
*******
|
|
|
|
|
|
|
|
Once you define the action types, you also have to specify the logic to run
|
2020-04-16 10:25:19 +03:00
|
|
|
when the action is executed. This can be done in an HTTP webhook,
|
2020-02-24 19:19:14 +03:00
|
|
|
also called the action handler. It could be a REST endpoint or a serverless
|
|
|
|
function.
|
|
|
|
|
2020-03-11 22:42:36 +03:00
|
|
|
Learn more about :ref:`writing an action handler<action_handlers>`.
|
2020-02-24 19:19:14 +03:00
|
|
|
|
|
|
|
Kind
|
|
|
|
****
|
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
**Mutation actions** are of two kinds:
|
2020-02-24 19:19:14 +03:00
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
* **Synchronous**: Sync actions return a response to the client after
|
2020-02-24 19:19:14 +03:00
|
|
|
receiving a response from the handler.
|
2020-04-29 10:46:02 +03:00
|
|
|
* **Asynchronous**: :ref:`Async actions <async_actions>` return an
|
2020-02-24 19:19:14 +03:00
|
|
|
``action id`` as response to the client before receiving a response from the
|
|
|
|
handler and allow the client to subscribe to the actual response using the
|
|
|
|
``action id``.
|
|
|
|
|
2020-04-29 10:46:02 +03:00
|
|
|
**Query actions** don't have a kind, they always behave like sync mutation actions.
|
2020-04-16 10:25:19 +03:00
|
|
|
|
2020-02-24 19:19:14 +03:00
|
|
|
How it works?
|
|
|
|
-------------
|
|
|
|
|
2020-04-16 10:25:19 +03:00
|
|
|
* Hasura receives the action GraphQL query or mutation and converts this request into an
|
2020-02-24 19:19:14 +03:00
|
|
|
event payload.
|
|
|
|
* The event is captured, persisted and then delivered to the action handler with
|
|
|
|
the appropriate retry/delivery guarantees.
|
|
|
|
* The action handler runs and returns a response that is captured as an event
|
|
|
|
and again persisted to the event store.
|
|
|
|
* The action response is returned to the client synchronously or asynchronously
|
|
|
|
based on the kind.
|
|
|
|
|
2020-05-11 16:12:58 +03:00
|
|
|
Actions vs. remote schemas
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Both actions and remote schemas can be used to extend Hasura with business logic.
|
|
|
|
However, they have slightly different use cases.
|
|
|
|
|
|
|
|
**Actions**
|
|
|
|
|
|
|
|
Actions can be used when we want to call a REST endpoint from Hasura as a resolver for some custom types.
|
|
|
|
They are especially useful for setting up serverless functions as resolvers.
|
|
|
|
|
|
|
|
**Remote schemas**
|
|
|
|
|
|
|
|
If you have an existing GraphQL API or if you're comfortable building a GraphQL server yourself,
|
|
|
|
you can use :ref:`remote schemas <remote_schemas>` to add custom types and resolvers.
|
|
|
|
|
2020-02-24 19:19:14 +03:00
|
|
|
Learn more
|
|
|
|
----------
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
:titlesonly:
|
|
|
|
|
2020-02-25 18:30:00 +03:00
|
|
|
create
|
2020-02-24 19:19:14 +03:00
|
|
|
Custom types <types/index>
|
2020-02-25 18:30:00 +03:00
|
|
|
action-handlers
|
|
|
|
async-actions
|
2021-02-02 12:38:47 +03:00
|
|
|
Codegen <codegen/index>
|
2020-02-25 18:30:00 +03:00
|
|
|
derive
|
2020-04-29 10:46:02 +03:00
|
|
|
action-permissions
|
2020-05-21 20:27:11 +03:00
|
|
|
reuse-types-actions
|
2020-04-24 10:55:51 +03:00
|
|
|
debugging
|
2021-02-02 11:04:45 +03:00
|
|
|
logs-clean-up
|
2020-06-11 15:57:46 +03:00
|
|
|
|
|
|
|
..
|
|
|
|
action-examples
|