PropertyConnection
Represents a paginated connection list of properties
type PropertyConnection {
edges: [PropertyEdge!]
pageInfo: PageInfo
totalCount: Int
}
Fields
edges ● [PropertyEdge!]
The edges of the connetion
pageInfo ● PageInfo
The pagination information
totalCount ● Int
The total amount of edges
Example
{
"edges": [
{
"node": {
"group": {
"name": [
{
"language": "EN",
"value": "String"
}
]
},
"predefinedValues": [
{}
]
}
}
],
"pageInfo": {}
}