We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm receiving the following error while running the query with variables
"Type loader is expected to return a callable or valid type "RootQueryToShopItemConnectionWhereArgsTaxArray", but it returned null"
the query to reproduce the issue:
query GET_SHOP_ITEMS_BY_CATS_TAGS($taxArray: [RootQueryToShopItemConnectionWhereArgsTaxArray]) { shop( where: {status: PUBLISH, taxQuery: {relation: AND, taxArray: $taxArray}, } ) { nodes { title databaseId uri } } }
query variables: { "taxArray": [{ "operator": "IN", "taxonomy": "SHOPCATEGORY", "terms": "grafika", "field": "SLUG"}] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm receiving the following error while running the query with variables
"Type loader is expected to return a callable or valid type "RootQueryToShopItemConnectionWhereArgsTaxArray", but it returned null"
the query to reproduce the issue:
query GET_SHOP_ITEMS_BY_CATS_TAGS($taxArray: [RootQueryToShopItemConnectionWhereArgsTaxArray]) {
shop(
where: {status: PUBLISH, taxQuery: {relation: AND, taxArray: $taxArray}, }
) {
nodes {
title
databaseId
uri
}
}
}
query variables:
{
"taxArray": [{ "operator": "IN", "taxonomy": "SHOPCATEGORY", "terms": "grafika", "field": "SLUG"}]
}
The text was updated successfully, but these errors were encountered: