INPUT_OBJECT

Project_Exact

Exact match query arguments for Project

link GraphQL Schema definition

  • input Project_Exact {
  • # Select multiple Project by ID.
  • id: [Int]
  • # Project name.
  • name: String
  • # An ID used to link to an external application.
  • external_id: [String]
  • # The unique client ID.
  • client_id: [Int]
  • # True if active, false if archived.
  • client_is_active: Boolean
  • # Filters to projects with the modified by the given user
  • modified_by_user_id: [Int]
  • # Find all direct descendants of the project with this ID.
  • parent_id: [[Int]]
  • # Parent ID which all results will be a child of hierarchically
  • child_of: Int
  • # True to only get root projects, false otherwise
  • root_only: Boolean
  • # Filters to projects with the supervisor
  • supervisor_id: [Int]
  • # Only show projects with these tags
  • tags_id: [[Int]]
  • # `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
  • # Get projects which contains at least one order with satisfy ALL the given args
  • orders_that_have: ProjectHasOrder
  • }