WIP
This commit is contained in:
20
graphql/auth/auth.types.graphql
Normal file
20
graphql/auth/auth.types.graphql
Normal file
@@ -0,0 +1,20 @@
|
||||
type AuthRealm {
|
||||
urn: ID!
|
||||
name: String
|
||||
createdAt: String
|
||||
}
|
||||
|
||||
type AuthOauth2Client {
|
||||
urn: ID!
|
||||
clientId: String!
|
||||
clientType: AuthOauth2ClientTypeEnum!
|
||||
clientSecret: String
|
||||
|
||||
Realm: AuthOauth2ClientToAuthRealmEdge
|
||||
Scopes: AuthOauth2ClientToAuthOauth2Scopes
|
||||
}
|
||||
|
||||
type AuthOauth2Scope {
|
||||
urn: ID!
|
||||
scope: String
|
||||
}
|
||||
Reference in New Issue
Block a user