Thanks for the response, here I have my example of the query that does work and returns information, but I don't know what the next query should be like to bring the following results.
I think they complicated something that should be simpler. 🤔
query getAssetResources {
site(id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx") {
assetResources(
fields: [
"assetBasicInfo.name"
"assetBasicInfo.userDomain"
"assetBasicInfo.description"
"assetBasicInfo.type"
]
filters: {
conjunction: AND
conditions: [
{ operator: EQUAL, path: "assetBasicInfo.type", value: "Windows" }
]
}
) {
total
pagination {
limit
current
next
page
}
items
}
}
}
The answer is...
{
"data": {
"site": {
"assetResources": {
"total": 690,
"pagination": {
"limit": 500,
"current": "MzU0MC1Bc3NldC03NTA2Zjc3NS0xMWIyLTQ3NGItOTVhOC00MzZjZTU0MmRhOGI=",
"next": "MzzzMS1Bc3NldC03NTA2Zjc3NS0xMWIyLTQ3NGItOTVhOC00MzZjZTU0MmRhOGI=",
"page": "FIRST"
},
"items": [
{
"assetBasicInfo": {
"userDomain": "xxxxxxx",
"name": "Ssssssssssssssssssss",
"type": "Windows",
"description": "Ssssssssssssssss"
},
"key": "MTU0MC1Bc3NldC03NTA2Zjc3NS0xMWIyLTQ3NGItOTVhOC00dddjZTU0MmRhOGI="
},
...................
...................
Could you explain to me what the next query should be like to bring the following data?
Thank you