INPUT_OBJECT

TriggerInput

TriggerInput is used to construct Trigger

link GraphQL Schema definition

  • input TriggerInput {
  • # name is the unique name of the type validator
  • name: String!
  • # gtype is the type of object the validator will be applied to (ex: user)
  • gtype: String!
  • # expression is a boolean CEL expression used to evaluate the doc/connection
  • expression: String!
  • # trigger is the map CEL expression that mutates the doc/connection before it is
  • # stored
  • trigger: String!
  • # if target_docs is true, this validator will be applied to documents.
  • target_docs: Boolean!
  • # if target_connections is true, this validator will be applied to connections.
  • target_connections: Boolean!
  • }

link Require by

This element is not required by anyone