WIP
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
enum IdentityAuthDeviceTypeEnum {
|
||||
PASSWORD
|
||||
APPLICATION_PASSWORD
|
||||
}
|
||||
|
||||
enum IdentityGroupRoleEnum {
|
||||
SYSTEM_ADMIN
|
||||
REALM_ADMIN
|
||||
STANDARD
|
||||
}
|
||||
|
||||
10
graphql/identity/identity.queries.graphql
Normal file
10
graphql/identity/identity.queries.graphql
Normal file
@@ -0,0 +1,10 @@
|
||||
type IdentityUserOutput {
|
||||
error:
|
||||
data: IdentityUser
|
||||
}
|
||||
|
||||
type Query {
|
||||
identityUsers()
|
||||
identityUser(urn: String!): IdentityUserOutput!
|
||||
myUser
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
type IdentityGroup {
|
||||
urn: ID!
|
||||
isAdmin: Boolean!
|
||||
role: IdentityGroupRoleEnum!
|
||||
name: String
|
||||
|
||||
Users: IdentityGroupToIdentityUserEdge!
|
||||
|
||||
Reference in New Issue
Block a user