What are the options for the methods builder.get() and builder.getAll()?

The builder.get and builder.getAll methods can be passed options as the second argument. For example:

builder.getAll('model-name', { limit: 10 })

What are the possible options that can be passed? The best place to find that is in the source code type definition for GetContentOptions, which can be found on our Github:

@steve pointed out a really important option here:

builder.getAll('page', { options: { noTargeting: true }})

It would be very helpful to have this information in a proper API documentation somewhere :pray:

Hello @neri,

You can explore all the available options for our Content API in the documentation provided below:

Thanks @manish-sharma for the link.

I don’t see the example (builder.getAll('page', { options: { noTargeting: true }})) in the Content API page.

Is there another docs page with that info?