Multi-value query syntax discussion #4792
OxygenCobalt
started this conversation in
Ideas
Replies: 1 comment 15 replies
-
A few out-loud thoughts:
|
Beta Was this translation helpful? Give feedback.
15 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Continuation from #4743.
Current proposed query syntax:
foo | [...foo...]
= Match any instance of foo[foo...]
= Match foo at the beginning[...foo]
= Match foo at the end[foo,bar,baz]
= Match exactly foo,bar,baz[...foo,bar,baz...]
= Match foo,bar,baz in that order, but in any position[...foo,bar,baz]
= Match foo,bar,baz in that order, but at the end[foo,bar,baz...]
= Match foo,bar,baz in that order, but at the beginningIn-flux query syntax:
foo,bar,baz
= Match any instance of foo, bar, or baz, regardless of order@jmbannon
Beta Was this translation helpful? Give feedback.
All reactions