The noonjs client provides methods for retrieving records from the backend, supporting parameters such as q, limit, skip, project, and sort.
const todos = await client.collection("todos").get();
const todos = await client.collection("todos").get({ skip: 10, limit: 20 });
const todos = await client.collection("todos").get({ q: { done: { $exists: true } } });
const todos = await client.collection("todos").get({ project: "title" });
const todos = await client.collection("todos").get({ sort: { done: -1 } });