Workflow: Get length of a collection? Permanently deleted user Created March 10, 2014 20:12 I want to do something like the following: var issues = u.getIssues(Everything, "for: me"); var count = issues.length; But "length" doesn't seem to exist for collections. Am I missing something?
it is, issues, tags, Fix versions etc. aren't full-featured collections but rather iterators. To count issues number please try this:
var i = 0; for each myIssue in issues { i = i + 1; }