This page provides information on the syntax for searching text fields, which can be done in the quick search, basic search, and advanced search. Text searches can be done in the advanced search when theCONTAINS (~) operatoris used, e.g.summary~"windows*". It can also be done in quick...
} private static void parseArgs(String[] argsArray) throws URISyntaxException { final List<String> args = Lists.newArrayList(argsArray); if (args.contains("-q")) { quiet = true; args.remove(args.indexOf("-q")); } if (!args.isEmpty()) { jiraServerUri = new URI(args.get(0)); ...
Use computed member access to dynamically create the name of the field to access or where the field name contains special characters and cannot be accessed using static member access because of the expression syntax.Using computed member access is useful when obtaining entity properties, which ...
This will let you run the query that contains a reserved character, but the character itself will be ignored in your query. For more information, see Special characters in Search syntax for text fields. For example: version = "[example]" summary ~ "\\[example\\]" Reserved words JQL also...
private static void parseArgs(String[] argsArray) throws URISyntaxException { final List<String> args = Lists.newArrayList(argsArray); if (args.contains("-q")) { quiet = true; args.remove(args.indexOf("-q")); } if (!args.isEmpty()) { ...
Returns groups with substrings matching a given query. This is mainly for use with the group picker, so the returned groups contain html to be used as picker suggestions. The groups are also wrapped in a single response object that also contains a header for use in the picker, specifically...
}privatestaticvoidparseArgs(String[] argsArray) throws URISyntaxException { final List<String> args =Lists.newArrayList(argsArray);if(args.contains("-q")) { quiet=true; args.remove(args.indexOf("-q")); }if(!args.isEmpty()) {
Returns groups with substrings matching a given query. This is mainly for use with the group picker, so the returned groups contain html to be used as picker suggestions. The groups are also wrapped in a single response object that also contains a header for use in the picker, specifically...
}privatestaticvoidparseArgs(String[] argsArray) throws URISyntaxException { final List<String> args =Lists.newArrayList(argsArray);if(args.contains("-q")) { quiet=true; args.remove(args.indexOf("-q")); }if(!args.isEmpty()) {
JQL is not a database query language, even though it uses SQL-like syntax. In advanced search, you can use queries to find your work items. Queries are a series of elements or parts, like fields, operators, and values, that are strung together to form a structure.More about constructing...