Euler Finance · Example Payload

Getgraphql

Lightweight GET mode for development/debugging. Disabled in production; use POST `/v3/graphql` there. Requires `query` and optionally accepts `variables` (JSON string) and `operationName`. Ponder LIKE filter operators reject unescaped `%` and `_` wildcard values. For standard GraphQL usage, use POST `/v3/graphql`.

GraphQL

Getgraphql is an example object payload from Euler Finance, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "getGraphql",
  "method": "GET",
  "path": "/v3/graphql",
  "summary": "GraphQL endpoint (GET query mode)",
  "description": "Lightweight GET mode for development/debugging.\nDisabled in production; use POST `/v3/graphql` there.\nRequires `query` and optionally accepts `variables` (JSON string) and `operationName`.\nPonder LIKE filter operators reject unescaped `%` and `_` wildcard values.\nFor standard GraphQL usage, use POST `/v3/graphql`.\n",
  "tags": [
    "GraphQL"
  ],
  "parameters": [
    {
      "name": "query",
      "in": "query",
      "required": true,
      "example": "string"
    },
    {
      "name": "variables",
      "in": "query",
      "required": false,
      "example": "string"
    },
    {
      "name": "operationName",
      "in": "query",
      "required": false,
      "example": "string"
    }
  ],
  "responses": {
    "200": {
      "description": "GraphQL response",
      "schema": {
        "type": "object"
      }
    }
  }
}