Querying Views
Supported by:
The _view parameter allows you to query records from a specific view in your Airtable base. When specified, only records from that view will be returned, maintaining the view’s sorting unless overridden by _order_by.
{people(_view: "Custom Sort") {name}}
Example with Multiple Parameters
{people(_view: "Custom Sort",_page_size: 2,_filter: {vegan: true}) {namevegan}}
View Details
Here’s the view being queried in the examples above: