Source type

Hygraph Source Configuration

Hygraph sources receive content model and content entry webhooks across Hygraph's supported methods with signed gcms-signature verification.

HYGRAPHGET, POST, PUT, DELETESecret KeyContent and data
Hygraph sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.HygraphProviderGET, POST, PUT, DELETESignedFastHookSource URLHYGRAPHProvider credentialsignatureVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

Hygraph configuration

Create a Hygraph source, keep GET and POST and PUT and DELETE enabled, and provide the configured Secret Key values for provider signature. FastHook uses these settings to validate each Hygraph delivery before it enters the routing workflow.

Source Type

HYGRAPH

Allowed methods

GET, POST, PUT, DELETE

Authentication

Provider signature

Credential fields

Secret Key

Hygraph source config
{
  "type": "HYGRAPH",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "HYGRAPH",
      "webhook_signing_secret": "provider-secret"
    },
    "allowed_http_methods": ["GET","POST","PUT","DELETE"]
  }
}

Hygraph request contract

FastHook parses gcms-signature, builds the Hygraph signed JSON envelope with body, environment, and timestamp, then verifies the base64 HMAC-SHA256 signature.

GETPOSTPUTDELETE

Hygraph headers

Preserve gcms-signature when sending Hygraph test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.

gcms-signature

Contains sign, env, and t parameters.

Hygraph setup

  1. Create a Hygraph webhook and use the generated FastHook Source URL.
  2. Paste the Hygraph secret key into FastHook.
  3. Keep the broader GET/POST/PUT/DELETE method set because Hygraph can use multiple methods.

Continue with Hygraph