OBJECT

User

The User type

link GraphQL Schema definition

  • type User implements Node, Timestamped {
  • # An automatically managed timestamp that is set every time a user logs in.
  • lastLogin: DateTime!
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set when an object is first created.
  • createdAt: DateTime!
  • name: String
  • # A list of roles in which this user is enrolled
  • #
  • # Arguments
  • # where: [Not documented]
  • # orderBy: [Not documented]
  • # first: [Not documented]
  • # after: [Not documented]
  • # last: [Not documented]
  • # before: [Not documented]
  • roles(
  • where: RoleWhereArgs,
  • orderBy: [RoleOrderByArgs],
  • first: Int,
  • after: String,
  • last: Int,
  • before: String
  • ): UserRolesConnection
  • # A globally unique ID.
  • id: ID!
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set whenever an object is mutated.
  • modifiedAt: DateTime!
  • # The user's username.
  • username: String!
  • }