Filtering
Operations
- Filter
- Sort
- Offset / Limt
- Include
Filter
moltin.product.filter(operator: .eq, key: "name", value: "ProductName")
Sort
moltin.product.sort("order")
moltin.product.sort("-order")
Offset / Limit
moltin.product.limit(10).offset(20).all {
...
}
Include
moltin.product.include([.mainImage, .files]).all {
...
}