OBJECT

Event

Event record

link GraphQL Schema definition

  • type Event {
  • # Addresses attached to the event
  • addresses: [Address!]
  • # Appraisals attached to the event
  • appraisals: [Appraisal!]
  • # Contact attached to the event
  • contacts: [Contact!]
  • # when the event was created
  • createdAt: ISO8601DateTime!
  • # User that created the event
  • createdByUser: User
  • # Deals attached to the event
  • deals: [Deal!]
  • # Can delete event
  • deletable: Boolean!
  • # descriptions of the event
  • description: String
  • # Can edit event
  • editable: Boolean!
  • # event type of the event
  • eventType: EventTypeEnum!
  • # FinishDate of the event
  • finish: ISO8601DateTime!
  • # ID of the event
  • id: ID!
  • # locations of the event
  • location: String
  • # Name of the event
  • name: String
  • # permissions of the event
  • permission: Permission
  • # PotentialTenancies attached to the event
  • potentialTenancies: [PotentialTenancy!]
  • # Properties attached to the event
  • properties: [Property!]
  • # StartDate of the event
  • start: ISO8601DateTime!
  • # Summary and property and contacts of the event
  • summaryAndPropertyAndContacts: String
  • # When the event was last updated
  • updatedAt: ISO8601DateTime!
  • }