processFilter and processTags have similar functionality and could likely benefit from a slight refactor.
The key difference between the two is that the filters will always match the property's column name, but the tags match against a different column (valueNumber or valueString) depending on the filter value's type.
processFilter
andprocessTags
have similar functionality and could likely benefit from a slight refactor.The key difference between the two is that the filters will always match the property's column name, but the tags match against a different column (
valueNumber
orvalueString
) depending on the filter value's type.https://github.com/TBD54566975/dwn-sql-store/blob/main/src/utils/filter.ts#L13-L69