Assume you have an issue with following summary
XYZ-123 The quick brown fox jumps over a lazy dog
if the search is as follows
summary ~ "The quick brown fox jumps over a lazy dog"
you get all the issues which have 'the', 'quick' ... terms in but not exactly the one and only issue XYZ-123
When you do a search as follows
summary ~ "The+ quick+ brown+ fox+ jumps+ over+ a+ lazy+ dog+"
but also some permutations.
How should we construct the query ?
Francis
You can add quotes by adding \" - for example:
summary ~ "\"The quick brown fox jumps over a lazy dog\""
How about summary ~ "The" AND summary ~ "brown" AND summary ~ "fox"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes that works, but I was hoping that there would exist something like
summary equals "the quick brown fox jumps over a lazy dog"
Thanks anyway,
Francis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.