Summary
products queries that include query: "published_status:published" are failing with INTERNAL_SERVER_ERROR.
This affects both:
-
regular queries (even with
first: 1) -
bulk operations
The issue started around 2026-03-18 and is still ongoing. GraphQL API version used is 2026-01.
It does not affect all stores — only some.
At the same time:
-
the same queries without
query: "published_status:published"work fine -
both regular and bulk queries succeed when the filter is removed
-
some other queries like
published_at:<=2026cause the same problems and others likeid:- doesn’t
Regular query
Query
{
products(sortKey: ID, query: "published_status:published", first: 1) {
edges {
node {
id
}
}
}
}
Response
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.",
"locations": [
{
"line": 2,
"column": 5
}
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
},
"path": [
"products"
]
}
],
"data": null,
"extensions": {
"cost": {
"requestedQueryCost": 3,
"actualQueryCost": 2,
"throttleStatus": {
"maximumAvailable": 4000,
"currentlyAvailable": 3998,
"restoreRate": 200
}
}
}
}
Request ID
b2a66be0-8af1-4871-b792-fe30b626a87c-1774277309
Bulk operation
Query
{
products(sortKey: ID, query: "published_status:published", first: 1) {
edges {
node {
id
}
}
}
}
Result
{
"data": {
"currentBulkOperation": {
"id": "gid://shopify/BulkOperation/7009961640123",
"status": "FAILED",
"errorCode": "INTERNAL_SERVER_ERROR",
"createdAt": "2026-03-23T14:50:13Z",
"url": null,
"query": "{ products(sortKey: ID, query: \"published_status:published\") { edges { node { id } } } }"
}
},
"extensions": {
"cost": {
"requestedQueryCost": 1,
"actualQueryCost": 1,
"throttleStatus": {
"maximumAvailable": 4000,
"currentlyAvailable": 3999,
"restoreRate": 200
}
}
}
}
Request IDs
bulkOperationRunQuery: 13a8d17e-8b1d-4891-999b-7b34e13cb9ef-1774277413
currentBulkOperation: f142ead1-402a-4541-9f6e-a11aa5cd5d22-1774277850
What works
- Removing the filter:
products(sortKey: ID, first: 1)
-
Works for:
-
regular queries
-
bulk operations
-
same affected stores
-
Expected behavior
published_status:published filter should work the same as before and return products without internal errors.
Actual behavior
Queries fail with:
INTERNAL_SERVER_ERROR
Internal error. Looks like something went wrong on our end.