limit
Limit the result with the specified count.
- Javascript
- Go
- PHP
- API
const { data, error } = await kontenbase.service('posts').find({
limit: 10,
})
resp, err := client.Service("posts").Find()
.SetLimit(10)
$res = $kontenbase->service('posts')->find([
'limit' => 10
]);
[GET]
https://api.kontenbase.com/query/api/v1/API_KEY/posts?$limit=10