Skip to content

Latest commit

 

History

History
99 lines (73 loc) · 3.04 KB

restified-endpoints.mdx

File metadata and controls

99 lines (73 loc) · 3.04 KB
sidebar_label sidebar_position description keywords
RESTified GraphQL endpoints
14
Manage RESTified endpoints with the Hasura Metadata API
hasura
docs
Metadata API
API reference
RESTified endpoints

Metadata API Reference: RESTified GraphQL Endpoints

Introduction

Add/Remove a RESTified GraphQL endpoint to Hasura GraphQL Engine.

:::tip Supported from

The Metadata API is supported for versions v2.0.0 and above and replaces the older schema/Metadata API.

:::

create_rest_endpoint {#metadata-create-rest-endpoint}

create_rest_endpoint is used to associate a URL template with a query.

An example request as follows:

POST /v1/metadata HTTP/1.1
Content-Type: application/json
X-Hasura-Role: admin

{
    "type": "create_rest_endpoint",
    "args": {
        "name": "example-name",
        "url": "example",
        "methods": ["POST","PUT","PATCH"],
        "definition": {
            "query": {
              "query_name": "example_mutation",
              "collection_name": "test_collection"
            }
        },
        "comment": "some optional comment"
    }
}

Args syntax {#metadata-create-rest-endpoint-syntax}

Key Required Schema Description
name true Text A unique identifier for the endpoint
url true EndpointUrl URL of the REST endpoint
methods true EndpointMethods Non-Empty case sensitive list of supported HTTP Methods
definition true EndpointDef Definition for the REST endpoint
comment false Text comment

:::tip Supported from

RESTified endpoints are supported from versions v2.0.0-alpha.1 and above.

:::

drop_rest_endpoint {#metadata-drop-rest-endpoint}

drop_rest_endpoint is used to delete an existing RESTified GraphQL Endpoint.

An example request as follows:

POST /v1/metadata HTTP/1.1
Content-Type: application/json
X-Hasura-Role: admin

{
    "type": "drop_rest_endpoint",
    "args": {
        "name": "name_of_the_endpoint"
    }
}

Args syntax {#metadata-drop-rest-endpoint-syntax}

Key Required Schema Description
name true Text URL of the RESTified endpoint

:::tip Supported from

RESTified endpoints are supported from versions v2.0.0-alpha.1 and above.

:::