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
Various target object fields displayed in the details view could be clickable, which would append the field as a condition in a built matchExpression. The expression would start as the empty string. Clicking the first field would produce an expression like target.alias == 'foo' or target.labels['mylabel'] == 'something', according to what it was the user clicked. Clicking on more fields would simply add more terms to the expression. Perhaps each field would have an AND and OR button next to it so the user can specify whether the term should be added to the expression as a conjunction or a disjunction. An expression like (A && B) || C could be built by clicking A, AND B, OR C controls.
The text was updated successfully, but these errors were encountered:
Following on from #912
Various target object fields displayed in the details view could be clickable, which would append the field as a condition in a built matchExpression. The expression would start as the empty string. Clicking the first field would produce an expression like
target.alias == 'foo'
ortarget.labels['mylabel'] == 'something'
, according to what it was the user clicked. Clicking on more fields would simply add more terms to the expression. Perhaps each field would have anAND
andOR
button next to it so the user can specify whether the term should be added to the expression as a conjunction or a disjunction. An expression like(A && B) || C
could be built by clickingA
,AND B
,OR C
controls.The text was updated successfully, but these errors were encountered: