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.
Fetch multiple pages
openbridge.pages.list() openbridge.pages.list().limit(10).select(['title', 'handle'])
.limit(count)
.after(cursor)
.before(cursor)
.search(query)
.reverse()
.select(fields)
PagesResult
{ items: ShopifyPage[] pageInfo: ShopifyPageInfo }
const { items, pageInfo } = await openbridge.pages.list()
const { items } = await openbridge.pages .list() .limit(10)
const { items, pageInfo } = await openbridge.pages .list() .limit(10) .select(['title', 'handle', 'bodySummary'])
const page1 = await openbridge.pages.list().limit(10) if (page1.pageInfo.hasNextPage && page1.pageInfo.endCursor) { const page2 = await openbridge.pages .list() .limit(10) .after(page1.pageInfo.endCursor) }