expand property

List<String>? expand
final

The $expand parameter is used to include related entities in the query response. It allows for expanding related entities, typically in a parent-child relationship.

Example:

expand: ['Category', 'Item']

Implementation

final List<String>? expand;