Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 74e4159

Browse files
committed
fix: Add missing service GQL error defn
1 parent 86286d2 commit 74e4159

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

graphql_api/types/errors/errors.graphql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,7 @@ type ProviderError implements ResolverError {
3737
type OwnerNotActivatedError implements ResolverError {
3838
message: String!
3939
}
40+
41+
type MissingService implements ResolverError {
42+
message: String!
43+
}

graphql_api/types/mutation/update_default_organization/update_default_organization.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
union UpdateDefaultOrganizationError = UnauthenticatedError | ValidationError
1+
union UpdateDefaultOrganizationError = UnauthenticatedError | ValidationError | MissingService
22

33
type UpdateDefaultOrganizationPayload {
44
error: UpdateDefaultOrganizationError

0 commit comments

Comments
 (0)