skip
The skip clause is used to skip a specified number of documents returned from a query:
posts.lunaql
query({
from({
posts: {
skip(20);
};
});
});This will skip the first 20 documents from the posts collection.
skipThe skip clause is used to skip a specified number of documents returned from a query:
query({
from({
posts: {
skip(20);
};
});
});This will skip the first 20 documents from the posts collection.