Skip to main content

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!

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


Reply