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
Copy file name to clipboardExpand all lines: docs/guide/queries/filters.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,9 @@ public class EntityFilter
143
143
[JsonPropertyName("name")]
144
144
publicstring? Name { get; set; }
145
145
146
+
[JsonPropertyName("key")]
147
+
publicstring? Key { get; set; }
148
+
146
149
[JsonPropertyName("value")]
147
150
publicobject? Value { get; set; }
148
151
@@ -165,6 +168,10 @@ public class EntityFilter
165
168
166
169
The name of the field or property to filter on. This should match the property name of the entity being queried.
167
170
171
+
#### Key
172
+
173
+
An optional key used to select a value from a dictionary-like or keyed field. When specified, the filter targets the value for the key within the field instead of the field itself.
174
+
168
175
#### Operator
169
176
170
177
The operator to use for the filter. Use the `FilterOperators` enum for type safety:
@@ -227,6 +234,18 @@ var filter = new EntityFilter
0 commit comments