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.articles.list().reverse(value?)
value
boolean
ArticleListBuilder
const { items } = await openbridge.articles.list().reverse().limit(10)
const { items } = await openbridge.articles .list() .blog('news') .reverse() .limit(5)
const sortOldestFirst = true let query = openbridge.articles.list().limit(10) if (sortOldestFirst) { query = query.reverse() } const { items } = await query