Hi,
Is it possible to search for an issue based on the issue key? I want to add issue key to the where clause, instead of the status in the query below. I can use the issueKey in the orderBy clause but not in the where clause.
builder.where().status("Resolved"); builder.orderBy().issueKey(order);
When used in the where clause as shown below an error is displayed saying ''Constructor call must be the first statement in a constructor".
builder.where().issueKey().("1234");
Am I doing something wrong or is it not possible to add an issue key to the following statement?
Any help would be appreciated.
Thanks
Does this not work?
final JqlQueryBuilder builder = JqlQueryBuilder.newBuilder(); builder.where().issue().eq("ABC-123"); Query query = builder.buildQuery();
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.