Hi,
We encountered since yesterday an unexpected behavior: we create some orders with tags and when we ant to retrieve them in order to check the order number and the id, the order is not retrieved.
We have this functionality in production since last year so, I am wondering if graphQl was updated an has this issues?
If I use the api and the id of created order, this is retrieved and seems with the correct tag but unfortunately the graph ql query does not return it:
Query:
{orders(first: 1, query: “tag:6111111”)
{ edges {node { legacyResourceId
tags }}}}
Response
{
“data”: {
“orders”: {
“edges”:
}
},
“extensions”: {
“cost”: {
“requestedQueryCost”: 3,
“actualQueryCost”: 2,
“throttleStatus”: {
“maximumAvailable”: 2000.0,
“currentlyAvailable”: 1998,
“restoreRate”: 100.0
}
}
}
}