Property Groups Query
Gets property group lists from EverReal
Introduction
Property Group Query
type Query {
propertyGroups(input: PropertyGroupFilterListPaging): [PropertyGroup]
}type PropertyGroup {
id: String
externalId: String
name: String
createdAt: DateTime
updatedAt: DateTime
descriptions: PropertyGroupDescription
properties: [PartialProperty]
}
type PartialProperty {
id: String
objectId: String
name: String
category: String
subtype: String
type: String
}
input PropertyGroupDescriptionInput {
object: String
amenities: String
location: String
other: String
}
input PropertyGroupFilter {
id: String
externalId: String
companyId: String
fullSearch: String
}
input GraphPaging {
skip: Int
take: Int
}
input GraphSorting {
fieldName: String
direction: String
}Last updated