Dynamic Query Component - Looping through Pagination - SPA SDK

A general question:

When looking at new components, specifically dynamic query components. The base query allows for basic filtering on a date field, document types, and sub-types. There is a use case where we add custom filters. Right now I am trying to do this by adding say a dynamic parameter. I then want to check each document in the pagination object for that specific value. Is there a way to do this within the front-end SPA SDK?

Dynamic components have limits and afaik you cannot add this kind of complex logic to the query. You will have to create a regular java component for this.

Thank you! I ended up extending the DynamicQuery class and overriding some things!