12 April 2022
Composable Commerce
HTTP API
Enhancement
Security and privacyGraphQL

You can now view and configure the deletion date of API Clients in the GraphQL API.

Changes:

  • [GraphQL API] Changed the APIClientWithoutSecret type:
    • Added the deleteAt field to the APIClientWithoutSecret type.
  • [GraphQL API] Changed the APIClientWithSecret type:
    • Added the deleteAt field to the APIClientWithSecret type.
  • [GraphQL API] Changed the CreateApiClient type:
    • Input field deleteDaysAfterCreation was added to CreateApiClient type

The following changes were introduced in terms of GraphQL SDL:

extend type APIClientWithoutSecret {
  deleteAt: DateTime
}

extend type APIClientWithSecret {
  deleteAt: DateTime
}

extend input CreateApiClient {
  deleteDaysAfterCreation: Int
}