When my query looks like this:
issuekey in updatedBy(will)
I will get results that include users will, willy, william, etc.
If I try:
issuekey in updatedBy("will smith")
I will again get results that include users will, willy, william, etc.
If I try:
issuekey in updatedBy(547851:f5eec6f3-6b71-18d9-96bg-f1415b89d30)
which is will smith's identifier, I get a message "this user doesn't exist"
What do I need to do to get results only for "will smith"?
You need to insert user's email
issuekey in updatedBy("email@gmail.com")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.