INPUT_OBJECT

Task_Exact

Exact match query arguments for Task

link GraphQL Schema definition

  • input Task_Exact {
  • # Select multiple Task by ID.
  • id: [Int]
  • # Task name.
  • name: String
  • # `true` to show the active items, `false` otherwise. `null` to show both active &
  • # deactivated items. Defaults to `true`.
  • is_active: Boolean
  • # `true` to show the deleted items, `false` otherwise.
  • is_deleted: Boolean
  • # List of project ids to filter tasks based on the associated task groups, if not
  • # task groups associated, all tasks returned
  • project_id: [[Int]]
  • # List of client ids to filter tasks based on the associated task groups, if not
  • # task groups associated, all tasks returned
  • client_id: [[Int]]
  • # `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: Boolean
  • }