Skip to main content

GraphQL Connector

GraphQL Make GraphQL requests (queries and mutations) to a GraphQL-based API

Connections

API Key

API Key connection

InputCommentsDefault
API KeyAPI Key
Authentication SchemeThe authentication scheme to useBasic

Basic Username/Password

Basic Username and Password connection

InputCommentsDefault
UsernameUsername
PasswordPassword

OAuth 2.0 Authorization Code

OAuth 2.0 Authorization Code flow

This connection uses OAuth 2.0, a common authentication mechanism for integrations. Read about how OAuth 2.0 works here.

InputCommentsDefault
Authorize URLThe OAuth 2.0 Authorization URL for the API
Token URLThe OAuth 2.0 Token URL for the API
ScopesSpace separated OAuth 2.0 permission scopes for the API
Client IDClient Identifier of your app for the API
Client SecretClient Secret of your app for the API
HeadersAdditional header to supply to authorization requests

OAuth 2.0 Client Credentials

OAuth 2.0 Client Credentials flow

This connection uses OAuth 2.0, a common authentication mechanism for integrations. Read about how OAuth 2.0 works here.

InputCommentsDefault
Token URLThe OAuth 2.0 Token URL for the API
ScopesSpace separated OAuth 2.0 permission scopes for the API
Client IDClient Identifier of your app for the API
Client SecretClient Secret of your app for the API
HeadersAdditional header to supply to token requests

Actions

GraphQL Request

Issue a generic GraphQL request

InputCommentsDefault
Connection
GraphQL EndpointThe endpoint of the GraphQL API
Query or Mutationquery ($customerName: String!) {
customers(name: $customerName) {
nodes {
id
labels
users {
nodes {
id
email
}
}
}
}
}
VariablesVariables to pass in to your query or mutation
HeadersCustom headers to send along with your request
Debug RequestWhen true, the entire request and response (including auth headers) will be logged out.false