OBJECT
UserRolesEdge
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 UserRolesEdge {
- # The node value for the edge.
- : Role!
- # An opaque cursor pointing to an object in a connection.
- #
- # Used by the 'after' and 'before' pagination arguments.
- : String!
- # The access level for this user enrollment.
- : AccessLevel!
- # When paired with the Node interface, this is an automatically managed
- #
- # timestamp that is set when an object is first created.
- : DateTime!
- # When paired with the Node interface, this is an automatically managed
- #
- # timestamp that is set whenever an object is mutated.
- : DateTime!
- }