I am currently receiving a 500 internal server error when I run this query
allOmegaProducts {
assetStack {
url
}
}
but the single query request works fine
omegaProduct {
assetStack {
url
}
}
Do I need to modify my โallโ request to make the query work ? like add a limit to the entries returned ?
Just noticed that this query works but anything pass 3 fails
allOmegaProducts(first: "3") {
assetStack {
url
}
}
this fails
allOmegaProducts(first: "4") {
assetStack {
url
}
}