Add ability to count results from queries in API
C
Craig Andrew
I use this query to return test cases created by an individual between two time periods:
entity = 'case' and createdBy = "user_name" and updated > 1651384800 and updated < 1659333600 ORDER BY id desc
Rather than sending back a list of every test case created, what i'm really interested in how many test cases were created by that person. (or really how many were created by each person on my team.)
This could be done by adding "count" as an api endpoint so that the query could be run for each individual on my team.