INTERFACE

UserInterface

link GraphQL Schema definition

interface UserInterface {

The datetime when the user was created
createdAt: ISO8601DateTime!

Indicates whether this User is deleted
deleteFlag: Boolean!

id: ID!

The primary role assignment belonging to this User.
primaryRoleAssignment: RoleAssignment

The active role assignments belonging to this User.

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
roleAssignments(after: String, before: String, first: Int, last: Int): RoleAssignmentConnection!

The datetime when the user was last updated
updatedAt: ISO8601DateTime!

}