INPUT_OBJECT

PreferenceInput

The preference input type.

link GraphQL Schema definition

  • input PreferenceInput {
  • # The amenities the property should have.
  • amenities: [Amenity!]
  • # The condition of the property the buyer lead is looking for.
  • condition: Condition
  • # The date when the preferences set was created. If empty we set it to the date
  • # the preferences set was imported.
  • created_at: JSONDateTime
  • # The currency code for the budget range.
  • currency: Currency
  • # If the buyer lead is an investor set this to true, false otherwise.
  • is_investor: Boolean
  • # The location preferences. A list of location information that describing where
  • # the property should be located.
  • locationPreferences: [LocationPreferenceInput!]
  • # Text about location preferences
  • location_text: String
  • # if set, determine maximum gross area
  • max_gross_area: Float
  • # if set, determine maximum liveable area
  • max_liveable_area: Float
  • # if set, determine maximum net area
  • max_net_area: Float
  • # if set, determine maximum plot area
  • max_plot_area: Float
  • # The maximum value for the budget range.
  • max_price: Float
  • # Message about user preferences
  • message: String
  • # if set, determine minimum gross area
  • min_gross_area: Float
  • # if set, determine minimum liveable area
  • min_liveable_area: Float
  • # if set, determine minimum net area
  • min_net_area: Float
  • # if set, determine minimum plot area
  • min_plot_area: Float
  • # The minimum value for the budget range.
  • min_price: Float
  • # The minimum number of rooms the property has. This is a valid field for house
  • # and apartments.
  • min_rooms: Int
  • # The property negotiation type. Express the interest to acquire or rent a
  • # property.
  • negotiation: NegotiationType!
  • # The subtype of property.
  • subtypes: [PropertySubtype!]
  • # The property main type. Express the interest in a house or apartment or other
  • # property types.
  • type: PropertyType!
  • # The date when the preferences where updated. If empty we set it to the date the
  • # preferences set was imported.
  • updated_at: JSONDateTime
  • # The whishes from amenities list the property preferable should have.
  • wishes: [Amenity!]
  • # The text about user wishes
  • wishes_text: String
  • }