Play
Data & Collections

Querying & filtering data

Ask Play for the records you need in plain language, then narrow the result set with filters. You can query data from chat or build filtered views into apps.

From chat

Use natural language to ask for counts, lists, and filtered records.

Examples:

  • "Show me all deals over $50K"

  • "How many open support tickets do we have?"

In apps

Apps can display filtered, sorted, and paginated data from your collections.

Available filters

Filter type

Example

Equals

Status is "Active"

Contains

Name contains "Acme"

Greater/less than

Deal value > 50000

Between

Created date between Jan 1 and Mar 31

Is null / is not null

Email is not empty

In / not in

Status in ["Open", "In Progress"]

Sorting and pagination

Data can be sorted by any field. For large datasets, results are paginated automatically.

Try it: Open a chat and ask "How many records are in my [collection name]?"

Was this helpful?