Help

Filter RecordQueryResult by field

428 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

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