OBJECT

Lot

externalId - an external identifier that matches to an instance of type Lot

link GraphQL Schema definition

  • type Lot {
  • id: Int!
  • clientName: String
  • communityId: Int
  • name: String!
  • dataName: String
  • salesStatus: LotSalesStatus!
  • externalId: String
  • address: String
  • premium: Int
  • size: Float
  • plan: String
  • garagePosition: GaragePosition
  • # Arguments
  • # clientName:
  • inventory(clientName: String!): Inventory
  • latitude: Float
  • longitude: Float
  • metroName: String
  • cityName: String
  • stateCode: String
  • zip: Zip
  • postCode: String
  • countryCode: String
  • siteplanInfo: LotSiteplanInfo
  • # Retrive the name of the associated siteplan.
  • #
  • # Arguments
  • # clientName:
  • siteplanName(clientName: String!): String
  • # Retrieve excluded plan-elevations for this lot.
  • #
  • # Arguments
  • # clientName:
  • excludedPlanElevations(clientName: String!): [PlanElevation]
  • # Retrieve available plan-elevations for this lot (base elevation-plans with
  • # excluded ones removed).
  • #
  • # Arguments
  • # clientName:
  • availablePlanElevations(clientName: String!): [PlanElevation]
  • # Retrieve excluded schemes for this lot.
  • #
  • # Arguments
  • # clientName:
  • excludedSchemes(clientName: String!): [Scheme]
  • # Retrieve available schemes for this lot (base schemes with excluded ones
  • # removed).
  • #
  • # Arguments
  • # clientName:
  • availableSchemes(clientName: String!): [Scheme]
  • # Retrieve associated siteplan info
  • siteplan: Siteplan
  • }