OBJECT

AuthUser

link GraphQL Schema definition

  • type AuthUser {
  • # ID of the entity.
  • id: String!
  • # Create date of the entity.
  • createdAt: DateTime!
  • # Last update date of the entity.
  • updatedAt: DateTime!
  • # Email of the user.
  • email: String!
  • # Name of the user.
  • name: String!
  • players: [PlayerClient!]!
  • }