You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
records.query() currently looks for the exact dataFormat string that's passed in. would love to support a case where an app wants to query for multiple data formats of the same main type, for example, images.
@mistermoe suggests for MessageStoreLevel, on ingest we would split on / and index dataType and dataSubType as separate fields and to support querying it'd be something like:
if filter contains dataFormat:
const [type, subType] = dataFormat.split('/');
if subType === '*' , don't include subType in query
The text was updated successfully, but these errors were encountered:
records.query()
currently looks for the exact dataFormat string that's passed in. would love to support a case where an app wants to query for multiple data formats of the same main type, for example, images.@mistermoe suggests for MessageStoreLevel, on ingest we would split on
/
and index dataType and dataSubType as separate fields and to support querying it'd be something like:The text was updated successfully, but these errors were encountered: