- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
Menu
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
5.5.9. Searchable Data Model Property
In this chapter, you'll learn what a searchable property is and how to define it.
What is a Searchable Property?#
Methods generated by the service factory that accept filters, such as list{ModelName}s
, accept a q
property as part of the filters.
When the q
filter is passed, the data model's searchable properties are queried to find matching records.
Define a Searchable Property#
Use the searchable
method on a text
property to indicate that it's searchable.
For example:
In this example, the name
property is searchable.
Search Example#
If you pass a q
filter to the listMyCustoms
method:
This retrieves records that include John
in their name
property.
Was this chapter helpful?