Rank 1: Thread
Is there a limit of documents in a collection that can be showed?
I just added 6 documents more in my collection, and my web app is just showing the first one
Votes
0
Replies
12
Participants
Unknown
Messages
13
Rank 1: Thread
Is there a limit of documents in a collection that can be showed?
I just added 6 documents more in my collection, and my web app is just showing the first one
Moderator
By default the listDocuments function should return at most 25 documents, but that can be raised using Query.limit(number).
Moderator
Do you have document level permission enabled?
Rank 1: Thread
I think this is it. I have 30 documents, Had 24 before add the new 6. I think thats why just show the first one. I will use Query instead
Rank 1: Thread
Yes I do
Moderator
And did you have set read permission for each document?
Rank 1: Thread
I set the permissions in the collection
Moderator
But if you have document level permission enabled and the document doesn't has the permission then you will not be able to access them
Moderator
If you want all documents being available for everyone then you should turn off document level permission
Rank 1: Thread
I fixed using Querys, Thanks for your time guys ❤️
can this be marked as solved now?
Rank 1: Thread
yes
[SOLVED] How many documents in a collection can be showed in a web app?