select property
The $select
parameter allows selecting specific fields to be returned in the result set.
This reduces the payload size by fetching only the required properties.
Example:
select: ['Name', 'Price']
Implementation
final List<String>? select;