Hello Sebastian,
I just noticed that on my blog - https://lucacattide.dev with Apollo as GraphQL client - something is not being queried correctly from API.
After many tries and inspecting, I successfully isolated the issue and I’ve found that queries which use the search
param, currently doesn’t return any data - 0 records.
For instance, in a typical query like this one:
query indexSearch($terms: String!, $lastLoaded: Int, $limit: Int!) {
queryArticleContents(search: $terms, orderby: "created desc", skip: $lastLoaded, top: $limit) {
...ArticlesFragmentsArticleId
data {
...ArticlesFragmentsArticle
}
}
}
${Articles.fragments.articleId}
${Articles.fragments.article}
In which basically I’m trying to filter articles by a specified term previously passed as input, with ordering, skipping and so on, the issue shows on. Here, If I remove the search
param, it works correctly - but of course returning all the entries.
I didn’t put hand since the launch, so nothing in my sources has changed.
I’m not aware if you did some upgrade on API which could had affected something on my implementation - I tried to change client permission as try, but nothing.
Do you have any suggestion for it?
Thanks in advance.