This commit is contained in:
2024-04-21 06:37:19 +00:00
parent 2410ef056c
commit 59540510b7
97 changed files with 1930 additions and 1029 deletions

View File

@@ -11,7 +11,7 @@ type AuthOauth2Client {
clientSecret: String
Realm: AuthOauth2ClientToAuthRealmEdge
Scopes: AuthOauth2ClientToAuthOauth2Scopes
Scopes: AuthOauth2ClientToAuthOauth2ScopesEdge
}
type AuthOauth2Scope {

View File

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

View File

@@ -1,5 +1,6 @@
input UpdateSystemSettingInput {
urn: ID!
hashValueType: SystemSettingHashValueTypeEnum!
hashValue: String!
}