ApiClientWithSecret
API Clients can be used to obtain OAuth 2 access tokens. The secret is only shown once in the response of creating the API Client.
type ApiClientWithSecret = {
__typename?: 'APIClientWithSecret';
id: Scalars['String'];
name: Scalars['String'];
scope: Scalars['String'];
createdAt?: Maybe<Scalars['DateTime']>;
lastUsedAt?: Maybe<Scalars['Date']>;
secret: Scalars['String'];
};