-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Labels
pkg: backendChanges in the backend package.Changes in the backend package.
Milestone
Description
Add the following to backend
Admin GraphQL API:
type Query {
tenant(id: string!): Tenant
tenants: TenantsConnection! // pagination query for tenants
whoAmI: { id, isOperator }
}
type Mutation {
createTenant(input: CreateTenantInput): CreateTenantMutationResponse!
updateTenant(input: UpdateTenantInput): UpdateTenantMutationResponse!
deleteTenant(input: DeleteTenantInput): DeleteTenantMutationResponse!
}
-
tenant
query - "who am I" query
-
tenants
query -
createTenant
mutation -
updateTenant
mutation -
deleteTenant
mutation
Prerequisites
Metadata
Metadata
Assignees
Labels
pkg: backendChanges in the backend package.Changes in the backend package.
Type
Projects
Status
Done