Hi
I’ve got an Index to get all documents. Now there should be 66 documents, but I only receive 64 when make a query with this index. The last two documents added are missing. When I login to faunadb, click on indexes and see what the index should return I can see all 66 documents. But query them by API I only get 64. I’ve got no error or something while query this index. Also, If I add another document I still get only 64.
This is my query:
client.query(q.Map(q.Paginate(q.Match(q.Index("all_orders"))), q.Lambda("X", q.Get(q.Var("X")))))
Any Idea?