Here is the repo name: foodmeup-landing.prismic.io. When i query allDocuments with GraphQL browser a lot of them are missing. On prismic dashboard everything is ok. Do you have any idea where it come from?
So now it seems that we have only a tiny part of our documents being sent by the graphql api. Could you tell us what's happening please? The rest api is sending me 117 results but the graphql api is sending me only 20 results.
Hello, @sebastien.vassaux first it seems normal to me that you have documents without uid. I can see in your content definition that you're having some custom types (team-member) that do not have any uid set up or restrict your query to only blog-post. You might want to change your code to handle those cases.
Seeing all documents in one query was a regression. We are progressively deploying fixes and your repository had this regression, you're now on a stable version of the API.
Ok so the problem is we needed this in order to find the right document because your graphql api does not have a function to get a document by uid...
So now we need to go through the entire document with cursor to compensate.
Is there a better way to check if a document exist with graphql?