Skip to main content

UserEdge

Implements the Relay Edge interface

type UserEdge implements Edge {
cursor: String!
node: User!
}

Fields

UserEdge.cursor ● String! non-null scalar

Opaque identifier pointing to this consent node in the pagination mechanism

UserEdge.node ● User! non-null object

The consent

Interfaces

Edge interface

Edge type containing the node and cursor. The node is not defined in the interface because generic is not supported by GraphQL but all implementation contains its own node property according to the paginated type.

Member Of

UserConnection object