OBJECT

AccessKey

A security secret to control access to graphQL objects.

link GraphQL Schema definition

  • type AccessKey {
  • # The access key ID.
  • id: ID!
  • # The secret key.
  • secret: String!
  • # The access key name.
  • name: String
  • # The date and time at which the secret was created.
  • createdAt: DateTime
  • # The date and time at which the secret was last updated.
  • updatedAt: DateTime
  • # The date and time at which the access key expires.
  • expiration: DateTime
  • }