null
...
Could you please tell me why it won’t allow me to enter multiple request types by spreading them by comma?
For example:
project = myProject and issueType = myIssueType and "Customer Request Type" = "the customer issue1", “the customer issue2”
I can use the above query for one customer issue, but the moment I try and add a second issue, it breaks
try something like the following for "Customer Request Type" = "the customer issue1", “the customer issue2”
... "Customer Request Type" in ( "the customer issue1", “the customer issue2” )
or
... ( "Customer Request Type" = "the customer issue1" or "Customer Request Type" = “the customer issue2” )