Statement
relationalai.semantics.frontend.base
Statement = Value | Group | Not | Distinct | AggregateUnion of statement types.
Statement covers the objects accepted by most query-building methods (for
example Model.where and Model.define).
Used By
Section titled “Used By”semantics ├── frontend > base │ ├── Aggregate │ │ └── where │ ├── Fragment │ │ ├── define │ │ ├── require │ │ └── where │ ├── Match │ ├── Model │ │ ├── define │ │ ├── not_ │ │ ├── require │ │ └── where │ ├── Not │ └── StatementAndSchema ├── define ├── not_ ├── require └── where