Schema

Scalars

Enums

Objects

Input Objects

WebhookSubscription (OBJECT)

Represents a webhook subscription.

Schema Definition

type WebhookSubscription {   # Indicates whether the webhook subscription is active.
active: Boolean!   # The unique identifier of the webhook subscription.
id: ID!   # The secret to be used to construct the signature of event invocations.
secret: String!   # The event topics to subscribe to.
topics: [String]   # The URL to send the webhook to.
url: String! }