This commit is contained in:
2024-04-15 01:45:41 +00:00
parent b790a70d3a
commit 2410ef056c
46 changed files with 886 additions and 93 deletions

View File

@@ -1,3 +1,10 @@
enum IdentityAuthDeviceTypeEnum {
PASSWORD
APPLICATION_PASSWORD
}
enum IdentityGroupRoleEnum {
SYSTEM_ADMIN
REALM_ADMIN
STANDARD
}

View File

@@ -0,0 +1,10 @@
type IdentityUserOutput {
error:
data: IdentityUser
}
type Query {
identityUsers()
identityUser(urn: String!): IdentityUserOutput!
myUser
}

View File

@@ -1,6 +1,7 @@
type IdentityGroup {
urn: ID!
isAdmin: Boolean!
role: IdentityGroupRoleEnum!
name: String
Users: IdentityGroupToIdentityUserEdge!