OBJECT

ClientAuthorization

The authorization a user has provided to an OAuth client.

link GraphQL Schema definition

1type ClientAuthorization {
2
3# The ID of the client.
4clientID: ID!
5
6# The name of the client.
7clientName: String
8
9# The time when the authorization was created.
10createdAt: Time
11
12}