Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
4k views

JIRA JQL searching by date - is there a way of getting Today() (Date) instead of Now() (DateTime)

I am trying to create some Issue Filters in JIRA based on CreateDate. The only date/time function I can find is Now() and searches relative to that, i.e. "-1d", "-4d" etc. The only problem with this ...
2
votes
0answers
31 views

Hibernate/JPA: How to force implicit joins to use LEFT OUTER JOINS

There is a class Offer that has optional relationship to class Article. So that some offers article property holds a null value. If i use the following statement, everything works fine. I got all ...
2
votes
1answer
220 views

How to make a JQL query for issues with multiple components

I'd like to query all issues in JIRA that are associated with more than 1 component. Is that feasible in JQL, and how?
2
votes
2answers
445 views

JPA: Differences between JQL and SQL

I need just an answer to a very specific question: For example: Customer c =(Customer) manager.createQuery("SELECT c FROM Customer c").getResultList().get(0); This code works because of the use ...
2
votes
4answers
876 views

JIRA: Searching issues by issue links

Is there a way to query for all issues with a particular link? For example, let there be a dependency link where an issue can "depends on" another issue. Is there a query to find all issues that ...
1
vote
3answers
89 views

How do I query Jira to search for all issues that have been resolved within a length of time from when it was created?

For example, let's say I need to find all issues that were resolved within 1 week's time. I need something like: resolved - created < '1w' Another example: Let's say I have 3 issues: 1) ...
1
vote
2answers
138 views

Jira Gadget: Configuration isn't saved for reconfiguration

I am writing a gadget for Jira with some configuration options. One of these configuration options is a "project or filter picker". My problem lies in the part, when I want to reconfigure the ...
1
vote
1answer
259 views

JQL ORDER BY clause and inheritance

Let's say I have an entity class A, two entity classes B and C which inherits from A, and entity class D which inherits from C. A and C are abstract entities. Entity A has a field name. How one could ...
1
vote
3answers
4k views

JPA: 'SELECT DISTINCT' with BLOB columns

I'm trying to run this JPQL query: SELECT DISTINCT i FROM Table i JOIN i.other o which promptly fails with: "Internal Exception: java.sql.SQLException: Columns of type 'BLOB' may not be used in ...
0
votes
2answers
59 views

Jira JQL equivalent to Group By

I'm trying to pull a report, (a pie chart or just a list) on amount of assigned issues in the last month by assignee. Also is there any way to do an average age report, but per user as well?
0
votes
1answer
346 views

Hibernate - Parameter value [2011] was not matching type [java.lang.Integer]. How to solve?

I am getting the message above even though the value I'm passing through an Integer to the named query. Can anyone explain why? Thanks DAO Java Code Calendar cal = Calendar.getInstance(); ...
0
votes
1answer
345 views

Jira Query Language (“bug”)

My problem with jql is that I want to retrieve the number of issues and the issues resolved in one day, but when I do a query like: proejct="blablabla" created >= -2d and created <-1d. I get the ...
0
votes
1answer
285 views

Jira Key Performance Indicator Chart Gadget

I need to create a chart that shows Key Performance Indicator. (total of issues / issues resolved) I'm using this query to return count of total issues and unresolved issues: ...
0
votes
1answer
1k views

Parsing a JSON feed from YQL using jQuery

I am using YQL's query.multi to grab multiple feeds so I can parse a single JSON feed with jQuery and reduce the number of connections I'm making. In order to parse a single feed, I need to be able to ...
0
votes
4answers
1k views

Webservice Jira gives: Error: No such operation 'getIssuesFromJqlSearch' from Jira 4.01

When I use the Webservice of Jira, I need to use the method getIssuesFromJqlSearch to describe a certain (JQL) Query. But it returns me "No such operation 'getIssuesFromJqlSearch'". Is this method in ...