OBJECT

Autocomplete

Autocomplete entity for unified quick name searching.

link GraphQL Schema definition

  • type Autocomplete {
  • # The name label to show for this item.
  • label: String!
  • # The reference ID for this item.
  • value: Int!
  • # The total number of projects associated with this item (client type only).
  • total_projects: Int!
  • # The total number of tasks associated with this item (client type only).
  • total_tasks: Int!
  • # The total number of assets associated with this item (task type only).
  • total_assets: Int!
  • # True if the task requires assets, false otherwise (task type only).
  • require_asset: Boolean!
  • }