Skip to main content
openbridge.articles.list().limit(count)
Sets the maximum number of articles to return per request.

Parameters

ParamTypeRequiredDefaultDescription
countnumberYes250Maximum articles to return

Returns

ArticleListBuilder (chainable)

Examples

Set limit

const { items } = await openbridge.articles.list().limit(20)

With other options

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