Hi again,
I am trying to query based on id’s and this is my results;
"filter": {
"path": "id",
"op": "eq",
"value": "B327B6E6-531F-48CD-98E5-D9F798831F49"
}
This return 0 results even though a published item exists with given ID
"filter": {
"path": "id",
"op": "eq",
"value": [
"B327B6E6-531F-48CD-98E5-D9F798831F49",
"E811102A-8E60-4C44-89AF-496985149458"
}
}
Results in Failed to parse json query - Array value is not allowed for ‘Equals’ operator and path ‘id’
I also get no results when trying to use inside an ‘or’ clause
"filter": {
"or": [{
"path": "id",
"op": "eq",
"value": "B327B6E6-531F-48CD-98E5-D9F798831F49"
}
]
}
Is this an issue with the API?
Thanks in advance