INPUT_OBJECT

Form_Exact

Exact match query arguments for Form

link GraphQL Schema definition

  • input Form_Exact {
  • # Select multiple Form by ID.
  • id: [Int]
  • # True if the form is archived, and no longer active.
  • is_active: Boolean
  • # True to show the template forms, false otherwise.
  • # Note that template forms should not be referenced directly.
  • is_template: Boolean
  • # `true` to show the archived items, `false` otherwise. Defaults to `false`.
  • is_archived: Boolean
  • # Only show forms that are visible to users with these tags.
  • tag_permissions: [Int]
  • # Show only forms linked to the given tasks
  • task_id: [Int]
  • }