OBJECT

Note

link GraphQL Schema definition

  • type Note {
  • # the addresses of the note
  • addresses: [Address!]
  • # the appraisals of the note
  • appraisals: [Appraisal!]
  • # the attachments of the note
  • attachments: [NoteAttachment!]
  • # the automation trackers of the note
  • automationTracker: AutomationTracker
  • # Body derived from note text, only for email notes
  • body: String
  • # the callOutcome of the note
  • callOutcome: CallOutcomeEnum
  • # the campaigns of the note
  • campaigns: [Campaign!]
  • # the number of clicks on the email of the note
  • clicks: Int
  • # When the note was closed (enquiries only)
  • closedAt: ISO8601DateTime
  • # the contacts of the note
  • contacts: [Contact!]
  • # the contracts of the note
  • contracts: [Contract!]
  • # When the note was created
  • createdAt: ISO8601DateTime!
  • # the deal of the note
  • deals: [Deal!]!
  • # Whether the note is deletable
  • deletable: Boolean!
  • # Whether the note is editable
  • editable: Boolean!
  • # the attachments of the automation email
  • emailAttachments: [EmailAttachment!]
  • # Status of the email
  • emailStatus: EmailStatusesEnum
  • # ID of the note
  • id: ID!
  • # the inspection of the note
  • inspections: [Inspection!]
  • # the invoice of the note
  • invoices: [Invoice!]
  • # the noteType of the note
  • noteType: NoteTypeEnum
  • # the offer price of the note
  • offerPrice: String
  • # the offer of the note
  • offers: [Offer!]!
  • # the number of opens on the email of the note
  • opens: Int
  • # the permission of the note
  • permission: Permission
  • # the potential tenancies of the note
  • potentialTenancies: [PotentialTenancy!]
  • # the projectStages of the note
  • projectStages: [ProjectStage!]
  • # the projects of the note
  • projects: [Project!]
  • # the properties of the note
  • properties: [Property!]
  • # Property interest level, if both contact and property are present and there is a
  • # relevant record
  • propertyInterest: PropertyInterest
  • # Data from Propps related to the offer
  • proppsData: String
  • # Propps ID of the offer
  • proppsOfferId: String
  • # referred by of the Note
  • referredBy: String
  • # Status derived from note text, only for status update notes
  • status: String
  • # Subject derived from note text, only for email notes
  • subject: String
  • # the tasks of the note
  • tasks: [Task!]
  • # the text of the note
  • text: String
  • # When the note was last updated
  • updatedAt: ISO8601DateTime!
  • # the user of the note
  • user: User
  • # the visibleToVendor of the note
  • visibleToVendor: Boolean
  • # Viewed website urls (website log type)
  • websiteUrls: [WebsiteUrl!]
  • }