OBJECT

RoleMembersEdge

An edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.

link GraphQL Schema definition

  • type RoleMembersEdge {
  • # The node value for the edge.
  • node: User!
  • # An opaque cursor pointing to an object in a connection.
  • #
  • # Used by the 'after' and 'before' pagination arguments.
  • cursor: String!
  • # The access level for this user enrollment.
  • accessLevel: AccessLevel!
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set when an object is first created.
  • createdAt: DateTime!
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set whenever an object is mutated.
  • modifiedAt: DateTime!
  • }