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 articles
openbridge.articles.list() openbridge.articles.list().blog('news').limit(10)
.limit(count)
.after(cursor)
.before(cursor)
.search(query)
.blog(handle)
.reverse()
.select(fields)
ArticlesResult
{ items: ShopifyArticle[] pageInfo: ShopifyPageInfo }
const { items, pageInfo } = await openbridge.articles.list()
const { items } = await openbridge.articles .list() .blog('news') .limit(10)
const { items, pageInfo } = await openbridge.articles .list() .blog('news') .limit(10) .select(['title', 'handle', 'image', 'excerpt'])
const page1 = await openbridge.articles.list().limit(10) if (page1.pageInfo.hasNextPage && page1.pageInfo.endCursor) { const page2 = await openbridge.articles .list() .limit(10) .after(page1.pageInfo.endCursor) }