ENUM

Task_WhereGroup_Fields

Where group options for Task. Matches when any field in the array is met

link GraphQL Schema definition

  • enum Task_WhereGroup_Fields {
  • # Task name.
  • name
  • # An ID used to link this task to an external application.
  • external_id
  • # `true` to show the active items, `false` otherwise. `null` to show both active &
  • # deactivated items. Defaults to `true`.
  • is_active
  • # `true` to show the deleted items, `false` otherwise.
  • is_deleted
  • # List of project ids to filter tasks based on the associated task groups, if not
  • # task groups associated, all tasks returned
  • project_id
  • # List of client ids to filter tasks based on the associated task groups, if not
  • # task groups associated, all tasks returned
  • client_id
  • # `true` to show the skill required tasks, `false` to show asset required tasks.
  • # `null` to show both skill required and asset required tasks. Defaults to null.
  • is_skill_required
  • }