Files
2022-05-27 20:21:01 +03:00

81 lines
1.3 KiB
GraphQL

query Apartment($id: Int!, $user: String!) {
apartment(id: $id){
id
status
place {
lat
lon
address
city {
name
country {
name
}
}
}
latestAuction{
hasAccountBid(account: $user)
}
m2
livingM2
kitchenM2
rooms
floor
numberOfFloors
number
description
buildingYear
houseType
hasElevator
hasCargoElevator
balconies
hasLoggia
hasYardWindows
hasStreetWindows
combinedBaths
dividedBaths
ceilingHeight
hasGroundParking
hasUndergroundParking
hasMultilevelParking
housingComplex
hasGas
hasVideoSurveillance
hasIntercom
hasConcierge
hasSecurity
hasGarbageChute
subways {
way
minutes
}
isStudio
photos {
id
link
docType
}
documents {
id
link
name
docType
}
user {
id
email
phone
}
}
}