12 April 2022
Security and privacyGraphQL
You can now view and configure the deletion date of API Clients in the GraphQL API.
Changes:
- [GraphQL API] Changed the 
APIClientWithoutSecrettype:- Added the 
deleteAtfield to theAPIClientWithoutSecrettype. 
 - Added the 
 - [GraphQL API] Changed the 
APIClientWithSecrettype:- Added the 
deleteAtfield to theAPIClientWithSecrettype. 
 - Added the 
 - [GraphQL API] Changed the 
CreateApiClienttype:- Input field 
deleteDaysAfterCreationwas added toCreateApiClienttype 
 - Input field 
 
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
}