Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Reverse the sort order
openbridge.pages.list().reverse(value?)
value
boolean
PageListBuilder
const { items } = await openbridge.pages.list().reverse().limit(10)
const reverseOrder = true let query = openbridge.pages.list().limit(10) if (reverseOrder) { query = query.reverse() } const { items } = await query