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
We want more filter expressions on entity lists to be faster and not require the full list in memory. We've currently made these optimizations for = ("eq") expressions that compare values to the entity ID (name) or an entity property. We want to expand this so that the following predicates on entity items have the same performance characteristics:
label = <value>
<id/property/label> = <value 1> and <id/property/label> = <value 2>
<id/property/label> = <value 1> or <id/property/label> = <value 2>
id != <value>
The text was updated successfully, but these errors were encountered:
We want more filter expressions on entity lists to be faster and not require the full list in memory. We've currently made these optimizations for
=
("eq") expressions that compare values to the entity ID (name
) or an entity property. We want to expand this so that the following predicates on entity items have the same performance characteristics:label = <value>
<id/property/label> = <value 1> and <id/property/label> = <value 2>
<id/property/label> = <value 1> or <id/property/label> = <value 2>
id != <value>
The text was updated successfully, but these errors were encountered: