Help

Can I "filter" on selectRecordsAsync?

Topic Labels: Automations
Solved
Jump to Solution
2516 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Chris_Parker
6 - Interface Innovator
6 - Interface Innovator

The documentation page for RecordQueryResult says “…filtered to a useful subset of the records in the table.”

I see that it’s possible to sort and specify which fields are returned but I can’t figure out how to actually filter on selectRecordsAsync.

Being able to filter here would be awesome because then I won’t have to manually create views. (Or if it were possible to programmatically create Views I could create the ones I need when a new employee is onboarded.)

Thanks!

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

You can’t currently specify a filter when you call selectRecordsAsync. However, the records might be filtered if you call it from a view instead of from a table.

You have to use JavaScript to filter the records after you retrieve them.

See Solution in Thread

1 Reply 1
kuovonne
18 - Pluto
18 - Pluto

You can’t currently specify a filter when you call selectRecordsAsync. However, the records might be filtered if you call it from a view instead of from a table.

You have to use JavaScript to filter the records after you retrieve them.