Schemas
- Last UpdatedMay 31, 2023
- 1 minute read
The Schemas Asp.net Core controller.
Check For Schema Changes
Triggers a check to the TypeStore to see if the schema or access control needs to be reloaded. If they need to be reloaded then the service will be temporarily unavailable (503).
Request
POST /api/v1.0-preview/tenants/{tenantId}/namespaces/{namespaceId}/graphql/schema
Parameters
string tenantId
Tenant identifier.string namespaceId
Namespace identifier.
Request Body
Any non-empty text/plain content. You can use the word "force" to force a schema reload.
"string"
Response
| Status Code | Body Type | Description |
|---|---|---|
| 200 | None | Success. |
| 204 | None | Schema is already up to date. |
| 400 | string | Failed to update the schema. If this does not resolve itself you may need to contact technical support. |
| 403 | string | Forbidden. |
| 503 | None | Service unavailable. |