This works
project = APT AND FreeForm ~ NIRCAM AND FreeForm ~ "IMS=True" ORDER BY issue DESC
This didn't work
project = APT AND FreeForm ~ (NIRCAM AND "IMS=True") ORDER BY issue DESC
Looks like this does it!
project = APT AND FreeForm ~ "NIRCAM IMS=True"
Hey Christine,
Instead of AND in your brackets have you tried using a "," to separate your values?
Tyler
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I hadn't but none of these work
project = APT AND FreeForm ~ (NIRCAM,"IMS=True") ORDER BY issue DESC
Operator '~' does not support the list value '("NIRCAM", "IMS=True")' for field 'FreeForm'.
project = APT AND FreeForm ~ NIRCAM,"IMS=True" ORDER BY issue DESC
didn't complain but didn't find anything whereas the more klunky search finds issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you try FreeFrom in (NIRCAM, "IMS=True")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Got back
The operator 'in' is not supported by the 'FreeForm' field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is doesn't seem to work either
project = APT AND FreeForm is ("NIRCAM", "IMS=True")
Got back
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.
I can get multiple fields with
project = APT AND FreeForm ~ "NIRCAM IMS True"
but unfortunately this isn't IMS=True and there are other True options in the Freeform Field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.