-
is it somehow possible that I get with the "get Request" only a certain number of entries, e.g. I have in my database 150 entries and I want from it only 15 entries, I know that I can get all entries and then take 15 of them, but it is important to me here that the request would be short. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Deta base post |
Beta Was this translation helpful? Give feedback.
-
By the way i found the solution using |
Beta Was this translation helpful? Give feedback.
By the way i found the solution using
fetch
. Somehow I overlooked fetch. There you can enter in optionallimit
parameter.Reference : https://docs.deta.sh/docs/base/sdk#fetch)