CreateOrganizationResponse
A union representing the possible return types when creating an Organization
union CreateOrganizationResponse =
  | BadRequestError
  | CreateOrganizationResult
  | InternalServerError
Possible types
CreateOrganizationResponse.BadRequestError object
Returned when there is an error in the request.
CreateOrganizationResponse.CreateOrganizationResult object
The successful result of creating an Organization
CreateOrganizationResponse.InternalServerError object
Returned when an error is encountered that is not expected.
Returned By
createOrganization mutation