@@ -1524,9 +1524,9 @@ class Invoice
1524
1524
}
1525
1525
` ` `
1526
1526
1527
- And that's it! ✅
1527
+ And that's it! ✅
1528
1528
1529
- Your filter is operational.
1529
+ Your filter is operational.
1530
1530
1531
1531
A request like `GET /invoices?createdAtMonth=7` will now correctly return the invoices from July!
1532
1532
@@ -1587,6 +1587,9 @@ This approach offers two key benefits:
1587
1587
This means you **don't have to add custom validation to your filter class, entity, or model**. The validation is handled
1588
1588
for you, making your code cleaner and more efficient.
1589
1589
1590
+ > [!TIP]
1591
+ > For a complete list of constraints, see the [complete OpenApi format in the documentation](../core/filters.md#from-openapi-definition).
1592
+
1590
1593
# ## Documenting the ORM Filter (OpenAPI)
1591
1594
1592
1595
# ### The Simple Method (for scalar types) On A Custom ORM Filter
@@ -1994,12 +1997,11 @@ class Invoice
1994
1997
}
1995
1998
` ` `
1996
1999
1997
- And that's it! ✅
2000
+ And that's it! ✅
1998
2001
1999
- Your filter is operational.
2002
+ Your filter is operational.
2000
2003
2001
- A request like `GET /invoices?createdAtMonth=7` will now correctly return
2002
- the invoices from July!
2004
+ A request like `GET /invoices?createdAtMonth=7` will now correctly return the invoices from July!
2003
2005
2004
2006
# ### Adding Custom Filter ODM Validation And A Better Typing
2005
2007
@@ -2058,6 +2060,9 @@ This approach offers two key benefits:
2058
2060
This means you **don't have to add custom validation to your filter class, entity, or model**. The validation is handled
2059
2061
for you, making your code cleaner and more efficient.
2060
2062
2063
+ > [!TIP]
2064
+ > For a complete list of constraints, see the [full OpenApi format in the documentation](../core/filters.md#from-openapi-definition).
2065
+
2061
2066
# ## Documenting the ODM Filter (OpenAPI)
2062
2067
2063
2068
# ### The Simple Method (for scalar types) On A Custom ODM Filter
0 commit comments