OBJECT

Inspection

Inspection

link GraphQL Schema definition

  • type Inspection {
  • # Attended contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • attendedContacts(query: String): [Contact!]
  • # Attending contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • attendingContacts(query: String): [Contact!]
  • # Average price feedback
  • avgPriceFeedback: Int!
  • # Cancelled contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • cancelledContacts(query: String): [Contact!]
  • # URL for inspection check in page
  • checkInUrl: String!
  • # Confirmed contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • confirmedContacts(query: String): [Contact!]
  • # When the inspection was created
  • createdAt: ISO8601DateTime
  • # Contacts who enquired on the property
  • #
  • # Arguments
  • # query: Search query of the Contact
  • # excludeAttending: Exclude attending contacts (pre-registered)
  • # from results
  • # excludeAttended: Exclude attended contacts from results
  • enquiredOnProperty(
  • query: String,
  • excludeAttending: Boolean,
  • excludeAttended: Boolean
  • ): [Contact!]
  • # finish of the Inspection
  • finish: ISO8601DateTime
  • # ID of the Inspection
  • id: ID!
  • # Inspection type enum of the Inspection
  • inspectionType: InspectionTypeEnum
  • # Maximum price feedback
  • maxPriceFeedback: Int!
  • # Minimum price feedback
  • minPriceFeedback: Int!
  • # No show contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • noShowContacts(query: String): [Contact!]
  • # Total number of attended Inspection
  • numAttended: Int!
  • # Total number of confirmed Inspection
  • numConfirmed: Int!
  • # Total number of price feedbacks
  • numPriceFeedbacks: Int!
  • # Total number of property interests relating to this inspection
  • #
  • # Arguments
  • # interested: [Not documented]
  • numPropertyInterests(interested: [PropertyInterestEnum!]): Int
  • # Total number of registered Inspection
  • numRegistered: Int!
  • # Contacts not present in the other contact queries
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # query: Search query of the Contact
  • otherContacts(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: String
  • ): ContactConnection
  • # Property of the Inspection
  • property: Property
  • # The property interests relating to this inspection
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # interested: [Not documented]
  • propertyInterests(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • interested: [PropertyInterestEnum!]
  • ): PropertyInterestConnection
  • # Registered contacts for the inspection
  • #
  • # Arguments
  • # query: Search query of the Contact
  • registeredContacts(query: String): [Contact!]
  • # start of the Inspection
  • start: ISO8601DateTime
  • # When the inspection was last updated
  • updatedAt: ISO8601DateTime
  • # User of the Inspection
  • user: User
  • }