Query

Every GraphQL schema has a root type for both queries and mutations. The query type defines GraphQL operations that retrieve data from the server.

Fields

node (Node)

Fetches an object given its ID.

Argument Type Description
id ID!

ID of the object.

nodes ([Node]!)

Fetches a list of objects given a list of IDs.

Argument Type Description
ids [ID!]!

IDs of the objects.

viewer (User)

Current user

Argument Type Description
uuid String