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

Parameters

ParamTypeRequiredDefaultDescription
countnumberYes250Maximum pages to return

Returns

PageListBuilder (chainable)

Examples

Set limit

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

With other options

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