refactor: rewrite useUsers with RQ

This commit is contained in:
kasia.oczkowska
2024-03-15 15:01:53 +00:00
parent 76f77e8a4c
commit ab671ccbf7
7 changed files with 29 additions and 236 deletions

View File

@@ -26,7 +26,6 @@ type Query {
getBillingAndUsage: GetBillingAndUsage
getConfig(keys: [String]): JSONObject
getNotifications: [Notification]
getUsers(limit: Int!, offset: Int!): UserConnection
}
type Mutation {
@@ -304,16 +303,6 @@ type SamlAuthProvidersRoleMapping {
remoteRoleName: String
}
type UserConnection {
edges: [UserEdge]
pageInfo: PageInfo
totalCount: Int
}
type UserEdge {
node: User
}
input CreateConnectionInput {
key: String!
appAuthClientId: String