EntityQuery
Top-level query object that combines a resource type, predicates, expand clauses, and ordering into a single data request against the server API.
Predicates
Filter conditions for the
where clause including equality, comparison, null checks, and composite AND/OR logic with support for property paths.Expand Clause
Load related entities inline via expansion paths, supporting one-to-many, many-to-one, and many-to-many relationships through navigation properties.
Query Context
Document Filtering
Scope query results to items within a specific Polarion LiveDoc using
applyCurrentDocumentTo constraints in the domain model.Baseline and Revision Queries
Query historical data at specific project baselines or revisions to view the state of entities at a point in time.
How Queries Flow
sources configuration into EntityQuery objects. Predicates from the where clause are split into Lucene-compatible server queries and in-memory post-filters where needed. Expansion paths resolve navigation properties defined in your domain model to load related entities in a single request.
Related References
| Topic | Where to look |
|---|---|
| Configuring data sources in YAML | Sources |
| Domain model entity types and relationships | Data Model Reference |
| Column binding paths that drive queries | Binding Syntax |
| Server-rendered computed properties | Server Rendering Reference |