Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Filter RecordQueryResult by field

978 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Thomas_May1
4 - Data Explorer
4 - Data Explorer

Is there a way to filter RecordQueryResult by a checkbox field; let's say I want all records where the value is False?

 

 

let query = await table.selectRecordsAsync({
    fields: [uniqueIdField, dateDueField, projectField, waiveRushField, comparisonField],
});

 

 

That's the query I've been working with. I'd like to filter the resulting records to only pull items where waiveRushField is not marked.

Thanks!

1 Reply 1
kuovonne
18 - Pluto
18 - Pluto

You cannot filter the queryResult in the initial selectRecordsAsync. Instead you filter the records in JavaScript after you have received the query result.