DSL Query
Run a DSL query and return matching tickets.
Runs a DSL search and returns every matching ticket as a list.
Dynamic ports
A resolver exposes one interpolation arg input for each ${ArgA}, ${ArgB}, … placeholder used in the query, growing the list one empty slot at a time as inputs are connected, so the query can be parameterized by upstream values.
Inputs
- ArgArepeats — String. Provides the first interpolation argument referenced by the query as ${ArgA}. The node exposes ArgA, ArgB, and later slots one at a time as earlier args are wired.
Outputs
- Tickets — List<Ticket>. Represents the full set of tickets returned by the DSL expression. The list contains every ticket that matches the query, in the order produced by the query engine.
Configuration
- Query — DSL query. Controls the DSL expression used to find tickets. The query is evaluated by the Pomavo DSL engine, so it behaves like search syntax and can combine filters, logical operators, sorting, grouping, and other supported clauses to define the result set.
Example use cases
Fetch a working set
Return open tickets in a project to drive a For Each loop.
dsl
status = "Open" and project = "Web" order by created_at desc