OBJECT

TaskAsset

An asset's association with a task

link GraphQL Schema definition

  • type TaskAsset {
  • # Unique TaskAsset ID.
  • id: Int!
  • # The related task
  • task: Task
  • # The related asset
  • asset: Asset
  • # The asset's list ranking (position in the list during allocation).
  • rank: Float
  • # True if the relationship is active, false if archived.
  • is_active: Boolean!
  • # The user that last modified this item.
  • modified_by: User
  • # The date the item was last updated in UTC+0.
  • modified_time: DateTime
  • }