OBJECT

PropertyPreference

Property Preference

link GraphQL Schema definition

  • type PropertyPreference {
  • # business property types of the property preference
  • businessPropertyTypes: [BusinessPropertyTypeEnum!]
  • # comments on the property preference
  • comments: String
  • # Commercial listing type of the property preference
  • commercialListingType: CommercialListingTypeEnum
  • # commercial property types of the property preference
  • commercialPropertyTypes: [CommercialPropertyTypeEnum!]
  • # contact of the property preference
  • contact: Contact
  • # When the property preference was created
  • createdAt: ISO8601DateTime
  • # ID of the property preference
  • id: ID!
  • # Land size units
  • landSizeUnit: LandSizeUnitsEnum
  • # Listing types of the property preference
  • listingTypes: [ListingTypeEnum!]
  • # Maximum number of bathrooms of the property preference
  • maxBathrooms: Int
  • # Maximum number of bedrooms of the property preference
  • maxBedrooms: Int
  • # Max car spaces
  • maxCarSpaces: Int
  • # Max commercial
  • maxCommercialRent: Float
  • # Max floor size
  • maxFloorSize: Int
  • # Max land size
  • maxLandSize: Float
  • # Max land size in square metres
  • maxLandSizeSqm: Float
  • # Max sale price
  • maxPrice: Float
  • # Max rent
  • maxRent: Float
  • # Mininmum number of bathrooms of the property preference
  • minBathrooms: Int
  • # Mininmum number of bedrooms of the property preference
  • minBedrooms: Int
  • # Min car spaces
  • minCarSpaces: Int
  • # Min floor size
  • minFloorSize: Int
  • # Min land size
  • minLandSize: Float
  • # Min land size in square metres
  • minLandSizeSqm: Float
  • # Min sale price
  • minPrice: Float
  • # Min rent
  • minRent: Float
  • # Postcode ids of the property preference
  • postcodeIds: [Int!]
  • # Postcodes of the property preference
  • #
  • # 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.
  • postcodes(after: String, before: String, first: Int, last: Int): PostcodeConnection
  • # Property tags of the property preference
  • #
  • # 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.
  • propertyTags(after: String, before: String, first: Int, last: Int): PropertyTagConnection
  • # property types of the property preference
  • propertyTypes: [ResidentialPropertyTypeEnum!]
  • # rural property types of the property preference
  • ruralPropertyTypes: [RuralPropertyTypeEnum!]
  • # When the property preference was last updated
  • updatedAt: ISO8601DateTime
  • }