INPUT_OBJECT

Webhook_Exact

Exact match query arguments for Webhook

link GraphQL Schema definition

  • input Webhook_Exact {
  • # Select multiple Webhook by ID.
  • id: [Int]
  • # URL the hook will call.
  • url: String
  • # Human friendly name of the webhook.
  • name: String
  • # Time webhook was created.
  • created_time: DateTime
  • # The unique ID.
  • webhook_module_id: [Int]
  • # Module name (e.g. order, project, client, etc.).
  • module_name: String
  • # Method name (e.g. create, submit, etc.).
  • method_name: String
  • # Webhook version.
  • version: Int
  • # Filters to Webhooks with the created by the given user_ids
  • created_by_id: [Int]
  • # `true` to show the active items, `false` otherwise. `null` to show both active &
  • # deactivated items. Defaults to `true`.
  • is_active: Boolean
  • }