OBJECT

Enquiry

link GraphQL Schema definition

  • type Enquiry {
  • # the addresses of the note
  • addresses: [Address!]
  • # the appraisals of the note
  • appraisals: [Appraisal!]
  • # The closed_at of the enquiry
  • closedAt: ISO8601DateTime
  • # The contact id of the enquiry
  • contactId: ID
  • # The contacts of the enquiry
  • contacts: [Contact!]!
  • # the contracts of the note
  • contracts: [Contract!]
  • # When the enquiry was created
  • createdAt: ISO8601DateTime!
  • # the deal of the note
  • deals: [Deal!]!
  • # ID of the enquiry
  • id: ID!
  • # the inspection of the note
  • inspections: [Inspection!]
  • # the invoice of the note
  • invoices: [Invoice!]
  • # the permission of the enquiry
  • permission: Permission
  • # the projectStages of the note
  • projectStages: [ProjectStage!]
  • # the projects of the note
  • projects: [Project!]
  • # Properties of the enquiry
  • properties: [Property!]!
  • # Property interest level, if both contact and property are present and there is a
  • # relevant record
  • propertyInterest: PropertyInterest
  • # The referred_by of the enquiry
  • referredBy: String
  • # When the enquiry was marked as archived
  • spammedAt: ISO8601DateTime
  • # The text of the enquiry
  • text: String
  • # When the enquiry was last updated
  • updatedAt: ISO8601DateTime!
  • # The user of the enquiry
  • user: User
  • # The visible_to_vendor of the enquiry
  • visibleToVendor: Boolean!
  • }