OBJECT

PersonUser

link GraphQL Schema definition

type PersonUser implements Node, UserInterface {

The datetime when the user was created
createdAt: ISO8601DateTime!

Indicates whether this User is deleted
deleteFlag: Boolean!

The email of the PersonUser.
email: String!

The status of the PersonUser.
enabled: Boolean!

The first name of the PersonUser.
firstName: String!

id: ID!

The last name of the PersonUser.
lastName: String!

The preferred name of the PersonUser. Will be used as the display name if
present.
preferredName: String

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!

}