2018-10-08 17:12:03 +03:00
|
|
|
Schema/Metadata API Reference
|
|
|
|
=============================
|
|
|
|
|
|
|
|
The Schema/Metadata API provides the following features:
|
|
|
|
|
|
|
|
1. Execute SQL on the underlying Postgres database, supports schema modifying actions.
|
|
|
|
2. Modify Hasura metadata (permissions rules and relationships).
|
|
|
|
|
|
|
|
This is primarily intended to be used as an ``admin`` API to manage Hasura schema and metadata.
|
|
|
|
|
|
|
|
Endpoint
|
|
|
|
--------
|
|
|
|
|
|
|
|
All requests are ``POST`` requests to the ``/v1/query`` endpoint.
|
|
|
|
|
|
|
|
Request
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. code-block:: http
|
|
|
|
|
|
|
|
POST /v1/query HTTP/1.1
|
|
|
|
|
|
|
|
{
|
2018-10-29 12:12:44 +03:00
|
|
|
"type": "<query-type>",
|
2018-10-08 17:12:03 +03:00
|
|
|
"args": <args-object>
|
|
|
|
}
|
|
|
|
|
|
|
|
Body syntax: :ref:`Query <query_syntax>`
|
|
|
|
|
|
|
|
.. _query_syntax:
|
|
|
|
|
|
|
|
``Query``
|
|
|
|
^^^^^^^^^
|
|
|
|
|
|
|
|
.. list-table::
|
|
|
|
:header-rows: 1
|
|
|
|
|
|
|
|
* - Key
|
|
|
|
- Required
|
|
|
|
- Schema
|
|
|
|
- Description
|
|
|
|
* - type
|
|
|
|
- true
|
|
|
|
- String
|
|
|
|
- Type of the query
|
|
|
|
* - args
|
|
|
|
- true
|
|
|
|
- JSON Value
|
|
|
|
- The arguments to the query
|
|
|
|
|
|
|
|
The various types of queries are listed in the following table:
|
|
|
|
|
|
|
|
.. list-table::
|
|
|
|
:header-rows: 1
|
|
|
|
|
|
|
|
* - ``type``
|
|
|
|
- ``args``
|
|
|
|
- ``Synopsis``
|
|
|
|
|
|
|
|
* - :ref:`run_sql`
|
|
|
|
- :ref:`run_sql_args <run_sql_syntax>`
|
|
|
|
- Run SQL directly on Postgres
|
|
|
|
|
2018-10-17 08:27:11 +03:00
|
|
|
* - :ref:`track_table`
|
|
|
|
- :ref:`TableName <TableName>`
|
|
|
|
- Add a table/view
|
|
|
|
|
|
|
|
* - :ref:`untrack_table`
|
|
|
|
- :ref:`untrack_table_args <untrack_table_syntax>`
|
|
|
|
- Remove a table/view
|
|
|
|
|
2018-10-08 17:12:03 +03:00
|
|
|
* - :ref:`create_object_relationship`
|
|
|
|
- :ref:`create_object_relationship_args <create_object_relationship_syntax>`
|
|
|
|
- Define a new object relationship
|
|
|
|
|
|
|
|
* - :ref:`create_array_relationship`
|
|
|
|
- :ref:`create_array_relationship_args <create_array_relationship_syntax>`
|
|
|
|
- Define a new array relationship
|
|
|
|
|
|
|
|
* - :ref:`drop_relationship`
|
|
|
|
- :ref:`drop_relationship_args <drop_relationship_syntax>`
|
|
|
|
- Drop an existing relationship
|
|
|
|
|
|
|
|
* - :ref:`set_relationship_comment`
|
|
|
|
- :ref:`set_relationship_comment_args <set_relationship_comment_syntax>`
|
|
|
|
- Set comment on an existing relationship
|
|
|
|
|
|
|
|
* - :ref:`create_insert_permission`
|
|
|
|
- :ref:`create_insert_permission_args <create_insert_permission_syntax>`
|
|
|
|
- Specify insert permission
|
|
|
|
|
|
|
|
* - :ref:`drop_insert_permission`
|
|
|
|
- :ref:`drop_insert_permission_args <drop_insert_permission_syntax>`
|
|
|
|
- Remove existing insert permission
|
|
|
|
|
|
|
|
* - :ref:`create_select_permission`
|
|
|
|
- :ref:`create_select_permission_args <create_select_permission_syntax>`
|
|
|
|
- Specify select permission
|
|
|
|
|
|
|
|
* - :ref:`drop_select_permission`
|
|
|
|
- :ref:`drop_select_permission_args <drop_select_permission_syntax>`
|
|
|
|
- Remove existing select permission
|
|
|
|
|
|
|
|
* - :ref:`create_update_permission`
|
|
|
|
- :ref:`create_update_permission_args <create_update_permission_syntax>`
|
|
|
|
- Specify update permission
|
|
|
|
|
|
|
|
* - :ref:`drop_update_permission`
|
|
|
|
- :ref:`drop_update_permission_args <drop_update_permission_syntax>`
|
|
|
|
- Remove existing update permission
|
|
|
|
|
|
|
|
* - :ref:`create_delete_permission`
|
|
|
|
- :ref:`create_delete_permission_args <create_delete_permission_syntax>`
|
|
|
|
- Specify delete permission
|
|
|
|
|
|
|
|
* - :ref:`drop_delete_permission`
|
|
|
|
- :ref:`drop_delete_permission_args <drop_delete_permission_syntax>`
|
|
|
|
- Remove existing delete permission
|
|
|
|
|
|
|
|
* - :ref:`set_permission_comment`
|
|
|
|
- :ref:`set_permission_comment_args <set_permission_comment_syntax>`
|
|
|
|
- Set comment on an existing permission
|
|
|
|
|
|
|
|
* - ``"bulk"``
|
|
|
|
- :ref:`Query <query_syntax>` array
|
|
|
|
- Execute multiple operations in a single query
|
|
|
|
|
2018-10-25 10:22:51 +03:00
|
|
|
* - :ref:`create_event_trigger`
|
|
|
|
- :ref:`create_event_trigger_args <create_event_trigger_syntax>`
|
|
|
|
- Create or replace event trigger
|
|
|
|
|
|
|
|
* - :ref:`delete_event_trigger`
|
|
|
|
- :ref:`delete_event_trigger_args <delete_event_trigger_syntax>`
|
|
|
|
- Delete existing event trigger
|
|
|
|
|
2018-10-08 17:12:03 +03:00
|
|
|
**See**
|
|
|
|
|
|
|
|
- :doc:`Run SQL <run-sql>`
|
2018-10-17 08:27:11 +03:00
|
|
|
- :doc:`Tables/Views <table-view>`
|
2018-10-08 17:12:03 +03:00
|
|
|
- :doc:`Relationships <relationship>`
|
|
|
|
- :doc:`Permissions <permission>`
|
2018-10-25 10:22:51 +03:00
|
|
|
- :doc:`Event Triggers <event-triggers>`
|
2018-10-08 17:12:03 +03:00
|
|
|
|
|
|
|
Response structure
|
|
|
|
------------------
|
|
|
|
|
|
|
|
.. list-table::
|
|
|
|
:widths: 10 10 30
|
|
|
|
:header-rows: 1
|
|
|
|
|
|
|
|
* - Status code
|
|
|
|
- Description
|
|
|
|
- Response structure
|
|
|
|
|
|
|
|
* - ``200``
|
|
|
|
- Success
|
|
|
|
- .. parsed-literal::
|
|
|
|
|
|
|
|
Request specific
|
|
|
|
|
|
|
|
* - ``400``
|
|
|
|
- Bad request
|
|
|
|
- .. code-block:: haskell
|
|
|
|
|
|
|
|
{
|
|
|
|
"path" : String,
|
|
|
|
"error" : String
|
|
|
|
}
|
|
|
|
|
|
|
|
* - ``401``
|
|
|
|
- Unauthorized
|
|
|
|
- .. code-block:: haskell
|
|
|
|
|
|
|
|
{
|
|
|
|
"error" : String
|
|
|
|
}
|
|
|
|
|
|
|
|
* - ``500``
|
|
|
|
- Internal server error
|
|
|
|
- .. code-block:: haskell
|
|
|
|
|
|
|
|
{
|
|
|
|
"error" : String
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Error codes
|
|
|
|
-----------
|
|
|
|
|
|
|
|
.. csv-table::
|
|
|
|
:file: dataerrors.csv
|
|
|
|
:widths: 10, 20, 70
|
|
|
|
:header-rows: 1
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
:hidden:
|
|
|
|
|
|
|
|
Run SQL <run-sql>
|
2018-10-17 08:27:11 +03:00
|
|
|
Tables/Views <table-view>
|
2018-10-08 17:12:03 +03:00
|
|
|
Relationships <relationship>
|
|
|
|
Permissions <permission>
|
2018-10-25 10:22:51 +03:00
|
|
|
Event Triggers <event-triggers>
|
2018-10-08 17:12:03 +03:00
|
|
|
Syntax definitions <syntax-defs>
|
|
|
|
|