Property Group Mutation
Create or update property groups in EverReal
Mutation Types
type Mutation {
upsertPropertyGroup(propertyGroup: PropertyGroupInput!): PropertyGroup!
}Schema Definition
input PropertyGroupInput {
name: String
externalPropertyGroupId: String!
descriptions: PropertyGroupDescriptionInput
}
input PropertyGroupDescriptionInput {
object: String
amenities: String
location: String
other: String
}
Last updated