OBJECT

Task

Task record

link GraphQL Schema definition

  • type Task {
  • # Addresses attached to the task
  • addresses: [Address!]
  • # Appraisals attached to the task
  • appraisals: [Appraisal!]
  • # Automation tracker id of the task
  • automationTracker: AutomationTracker
  • # Body of the task
  • body: String
  • # Completed at of the task
  • completedAt: ISO8601DateTime
  • # Contact attached to the task
  • contacts: [Contact!]
  • # Contracts attached to the task
  • contracts: [Contract!]
  • # When the task was created
  • createdAt: ISO8601DateTime!
  • # created by user id of the task
  • createdByUser: User
  • # Deals attached to the task
  • deals: [Deal!]
  • # Can edit task
  • deletable: Boolean!
  • # DueDate of the task
  • dueDate: ISO8601DateTime
  • # Can edit task
  • editable: Boolean!
  • # Task group
  • group: TaskGroupEnum!
  • # ID of the task
  • id: ID!
  • # Inspections attached to the task
  • inspections: [Inspection!]
  • # Invoices attached to the task
  • invoices: [Invoice!]
  • # permission of the task
  • permission: Permission
  • # Potential Tenancies attached to the task
  • potentialTenancies: [PotentialTenancy!]
  • # Project stage attached to the task
  • projectStages: [ProjectStage!]
  • # Projects attached to the task
  • projects: [Project!]
  • # Properties attached to the task
  • properties: [Property!]
  • # When the task was last updated
  • updatedAt: ISO8601DateTime!
  • }