This Admin API GraphQL productVariant query for the first 10 productVariants from a collection id works correctly. The automated collection with id 288510083230 uses product tags as a condition.
{
productVariants(first: 10, query: "collection:288510083230") {
edges {
node {
id
displayName
}
}
}
}
If I enter the id for an automated collection with conditions based on metafields, the same query fails with an error message.
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 282872fe-851d-4222-b8a0-b782f811954a (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "282872fe-851d-4222-b8a0-b782f811954a"
}
}
]
}