Filtering
Explains how to filter GraphQL query results in Umbraco Compose using field conditions, filter methods, and boolean logic.
query {
products (where: { id: 7 }) {
items {
... on Product {
id
name
price
}
}
}
}Filter Methods
Filtering by Type
Nested Filtering
Filter Logic
Last updated
Was this helpful?