pub fn run_view_definition_with_options(
view_definition: SofViewDefinition,
bundle: SofBundle,
content_type: ContentType,
options: RunOptions,
) -> Result<Vec<u8>, SofError>Expand description
Execute a ViewDefinition transformation with additional filtering options.
This function extends the basic run_view_definition with support for:
- Filtering resources by modification time (
since) - Limiting results (
limit) - Pagination (
page)
§Arguments
view_definition- The ViewDefinition to executebundle- The Bundle containing resources to transformcontent_type- Desired output formatoptions- Additional filtering and control options
§Returns
The transformed data in the requested format, with filtering applied.