mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
342 lines
6.7 KiB
ReStructuredText
342 lines
6.7 KiB
ReStructuredText
.. meta::
|
|
:description: Manage actions with the Hasura schema/metadata API
|
|
:keywords: hasura, docs, schema/metadata API, API reference, actions
|
|
|
|
.. _api_actions:
|
|
|
|
Schema/Metadata API Reference: Actions
|
|
======================================
|
|
|
|
.. contents:: Table of contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
Introduction
|
|
------------
|
|
|
|
**actions** are user defined mutations with custom business logic.
|
|
|
|
.. _create_action:
|
|
|
|
create_action
|
|
-------------
|
|
|
|
``create_action`` is used to define an action. There shouldn't be an existing action with the same name.
|
|
|
|
Create a synchronous action with name ``create_user``:
|
|
|
|
.. code-block:: http
|
|
|
|
POST /v1/query HTTP/1.1
|
|
Content-Type: application/json
|
|
X-Hasura-Role: admin
|
|
|
|
{
|
|
"type":"create_action",
|
|
"args":{
|
|
"name":"create_user",
|
|
"definition":{
|
|
"kind":"synchronous",
|
|
"arguments":[
|
|
{
|
|
"name":"username",
|
|
"type":"String!"
|
|
},
|
|
{
|
|
"name":"email",
|
|
"type":"String!"
|
|
}
|
|
],
|
|
"output_type":"User",
|
|
"handler":"https://action.my_app.com/create-user"
|
|
},
|
|
"comment": "Custom action to create user"
|
|
}
|
|
}
|
|
|
|
|
|
.. _create_action_syntax:
|
|
|
|
Args syntax
|
|
^^^^^^^^^^^
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - name
|
|
- true
|
|
- :ref:`ActionName <ActionName>`
|
|
- Name of the action
|
|
* - definition
|
|
- true
|
|
- ActionDefinition_
|
|
- Definition of the action
|
|
* - comment
|
|
- false
|
|
- text
|
|
- comment
|
|
|
|
.. _ActionDefinition:
|
|
|
|
ActionDefinition
|
|
&&&&&&&&&&&&&&&&
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - arguments
|
|
- false
|
|
- Array of InputArgument_
|
|
- Input arguments
|
|
* - output_type
|
|
- true
|
|
- :ref:`GraphQLType <GraphQLType>`
|
|
- The output type of the action. Only object and list of objects are allowed.
|
|
* - kind
|
|
- false
|
|
- [ ``synchronous`` | ``asynchronous`` ]
|
|
- The kind of the mutation action (default: ``synchronous``). If the type of
|
|
the action is ``query`` then the ``kind`` field should be omitted.
|
|
* - headers
|
|
- false
|
|
- [ :ref:`HeaderFromValue <HeaderFromValue>` | :ref:`HeaderFromEnv <HeaderFromEnv>` ]
|
|
- List of defined headers to be sent to the handler
|
|
* - forward_client_headers
|
|
- false
|
|
- boolean
|
|
- If set to ``true`` the client headers are forwarded to the webhook handler (default: ``false``)
|
|
* - handler
|
|
- true
|
|
- :ref:`WebhookURL <WebhookURL>`
|
|
- The action's webhook URL
|
|
* - type
|
|
- false
|
|
- [ ``mutation`` | ``query`` ]
|
|
- The type of the action (default: ``mutation``)
|
|
|
|
.. _InputArgument:
|
|
|
|
InputArgument
|
|
&&&&&&&&&&&&&
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - name
|
|
- true
|
|
- text
|
|
- Name of the argument
|
|
* - type
|
|
- true
|
|
- :ref:`GraphQLType <GraphQLType>`
|
|
- Type of the argument
|
|
|
|
.. note::
|
|
|
|
The ``GraphQL Types`` used in creating an action must be defined before via :ref:`Custom Types <api_custom_types>`
|
|
|
|
.. _drop_action:
|
|
|
|
drop_action
|
|
-----------
|
|
|
|
``drop_action`` is used to remove an action. Permissions defined on the actions are also dropped automatically.
|
|
|
|
Drop an action ``create_user``:
|
|
|
|
.. code-block:: http
|
|
|
|
POST /v1/query HTTP/1.1
|
|
Content-Type: application/json
|
|
X-Hasura-Role: admin
|
|
|
|
{
|
|
"type":"drop_action",
|
|
"args":{
|
|
"name":"create_user",
|
|
"clear_data": true
|
|
}
|
|
}
|
|
|
|
.. _drop_action_syntax:
|
|
|
|
Args syntax
|
|
^^^^^^^^^^^
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - name
|
|
- true
|
|
- :ref:`ActionName <ActionName>`
|
|
- Name of the action
|
|
* - clear_data
|
|
- false
|
|
- boolean
|
|
- If set to ``true`` and action kind is ``asynchronous``, related data is deleted from catalog. (default: ``true``)
|
|
|
|
.. _update_action:
|
|
|
|
update_action
|
|
-------------
|
|
|
|
``update_action`` is used to update the definition of the action. Definition thus provided is
|
|
replaced with existing one.
|
|
|
|
Update an action ``create_user`` by making it's kind to ``asynchronous``:
|
|
|
|
.. code-block:: http
|
|
|
|
POST /v1/query HTTP/1.1
|
|
Content-Type: application/json
|
|
X-Hasura-Role: admin
|
|
|
|
{
|
|
"type":"update_action",
|
|
"args":{
|
|
"name":"create_user",
|
|
"definition":{
|
|
"kind":"asynchronous",
|
|
"arguments":[
|
|
{
|
|
"name":"username",
|
|
"type":"String!"
|
|
},
|
|
{
|
|
"name":"email",
|
|
"type":"String!"
|
|
}
|
|
],
|
|
"output_type":"User",
|
|
"handler":"https://action.my_app.com/create-user"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.. _update_action_syntax:
|
|
|
|
Args syntax
|
|
^^^^^^^^^^^
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - name
|
|
- true
|
|
- :ref:`ActionName <ActionName>`
|
|
- Name of the action
|
|
* - definition
|
|
- true
|
|
- ActionDefinition_
|
|
- Definition of the action to be replaced
|
|
|
|
.. _create_action_permission:
|
|
|
|
create_action_permission
|
|
------------------------
|
|
|
|
``create_action_permission`` is used to define a permission to make action visible for a role.
|
|
|
|
.. code-block:: http
|
|
|
|
POST /v1/query HTTP/1.1
|
|
Content-Type: application/json
|
|
X-Hasura-Role: admin
|
|
|
|
{
|
|
"type": "create_action_permission",
|
|
"args": {
|
|
"action": "create_user",
|
|
"role": "user"
|
|
}
|
|
}
|
|
|
|
.. _create_action_permission_syntax:
|
|
|
|
Args syntax
|
|
^^^^^^^^^^^
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - action
|
|
- true
|
|
- :ref:`ActionName <ActionName>`
|
|
- Name of the action
|
|
* - role
|
|
- true
|
|
- :ref:`RoleName <RoleName>`
|
|
- Name of the role
|
|
* - comment
|
|
- false
|
|
- text
|
|
- comment
|
|
|
|
.. _drop_action_permission:
|
|
|
|
drop_action_permission
|
|
----------------------
|
|
|
|
``drop_action_permission`` is used to drop a permission defined on an action.
|
|
|
|
.. code-block:: http
|
|
|
|
POST /v1/query HTTP/1.1
|
|
Content-Type: application/json
|
|
X-Hasura-Role: admin
|
|
|
|
{
|
|
"type": "drop_action_permission",
|
|
"args": {
|
|
"action": "create_user",
|
|
"role": "user"
|
|
}
|
|
}
|
|
|
|
.. _drop_action_permission_syntax:
|
|
|
|
Args syntax
|
|
^^^^^^^^^^^
|
|
|
|
.. list-table::
|
|
:header-rows: 1
|
|
|
|
* - Key
|
|
- Required
|
|
- Schema
|
|
- Description
|
|
* - name
|
|
- true
|
|
- :ref:`ActionName <ActionName>`
|
|
- Name of the action
|
|
* - role
|
|
- true
|
|
- :ref:`RoleName <RoleName>`
|
|
- Name of the role
|