Skip to main content
openbridge.articles.list().blog(handle)
Filters articles to only return those from the specified blog.

Parameters

ParamTypeRequiredDescription
handlestringYesThe blog handle

Returns

ArticleListBuilder (chainable)

Examples

Filter by blog

const { items } = await openbridge.articles.list().blog('news')

With limit and select

const { items } = await openbridge.articles
    .list()
    .blog('company-updates')
    .limit(5)
    .select(['title', 'handle', 'publishedAt'])