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!