OBJECT

ApiToken

link GraphQL Schema definition

  • type ApiToken implements Node {
  • id: ID!
  • # The name of the token
  • name: String!
  • # The token used to authenticate the user
  • token: String!
  • # The last time the token was used
  • lastUsedAt: Time
  • createdAt: Time!
  • # The timestamp when the token expires
  • expiresAt: Time
  • # The user that owns the token
  • user: User
  • }

link Require by