v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Degraphql_routes

List all Degraphql_routes associated with a Service

List all Degraphql_routes associated with a Service

get/v2/control-planes/{controlPlaneId}/core-entities/services/{ServiceId}/degraphql/routes

Path parameters

ServiceIdstring required

ID of the Service to lookup

Query parameters

sizeinteger

Number of resources to be returned.

offsetstring

Offset from which to return the next set of resources. Use the value of the 'offset' field from the response of a list operation as input here to paginate through all the resources

tagsstring

A list of tags to filter the list of resources on. Multiple tags can be concatenated using ',' to mean AND or using '/' to mean OR.

Response

A successful response listing Degraphql_routes

nextstring

URI to the next page (may be null)

offsetstring

Offset is used to paginate through the API. Provide this value to the next list operation to fetch the next page

Example response

{
  "data": [
    {
      "id": "56c4566c-14cc-4132-9011-4139fcbbe50a",
      "query": "query{ user { email } }",
      "service": {
        "id": "bd380f99-659d-415e-b0e7-72ea05df3218"
      },
      "uri": "/users"
    }
  ]
}