Schema change notifications
Receive alerts whenever changes are made to your graph's schema
You can
You can configure separate change notifications for each
Setup
See
Webhook format
If you receive schema change notifications via a
The JSON object conforms to the structure of the ResponseShape
interface:
interface Change {description: string;}interface ResponseShape {eventType: "SCHEMA_PUBLISH"; // Currently, only SCHEMA_PUBLISH webhooks are supportedeventID: string;changes: Change[]; // Set of schema changes that occurredschemaURL: string; // See description belowschemaURLExpiresAt: string; // ISO 8601 Date stringgraphID: string;variantID: string; // See description belowtimestamp: string; // ISO 8601 Date string}
-
The value of
schemaURL
is a short-lived (24-hour) URL that enables you to fetch the published schema without authenticating (such as with an API key). The URL expires at the time indicated byschemaURLExpiresAt
. -
The value of
variantID
is in the formatgraphID@variantName
(for example,mygraph@staging
).