Node Reference

GraphQL Node

Endpoint, query, variables, and headers for a GraphQL query or mutation.

Sends a GraphQL query or mutation to an endpoint.

A GraphQL node with an endpoint, query, and variables A GraphQL node with an endpoint, query, and variables

Fields

Always exactly these three, plus optional headers:

  • Endpoint , a single-line template field.
  • Query , a multiline template field with the full query or mutation text. There’s no separate operation-name field , name the operation inside the query text itself if you need one.
  • Variables , a multiline JSON template matching the query’s $variables.
  • Headers , optional, added via the menu → Add Header, same key/value template UI as HTTP Request.

Every ${string.x}/${number.x}/${bool.x} placeholder across these fields becomes an input port , see Template Syntax Reference.

Output

Like the HTTP node, the response lands on a persistent data output port that holds a steady pulse rather than a one-shot flash. Feed it into a Get JSON Value Node to pull out a specific field from the response.