Hi,
We use to query for eg properties.Other.Family
which does not seem to work anymore?
How can we query for properties.Property Sets.Other.Family
when it includes whitespace?
We are using below query to get properties.Attributes
but we get an error when trying to get properties.Property Sets
.
query Query {
project(id: "projectid") {
object(id: "objectid") {
children(select:["properties.Property Sets"]) {
totalCount
objects {
id
data
}
}
}
}
}