GraphQL

Interface Types

Interface types define a set of fields that other object types can implement, ensuring consistency in the schema.

Connection

Connection types must contain a pageInfo field as well as nodes and edges.

Fields

pageInfo - PageInfo!

Node

The generic Node interface. All first-class entities in the API implement this interface.

Fields

id - ID! Globally unique identifier for a record to support Global Object Identification. See: https://graphql.org/learn/global-object-identification/