Select User stories based on feature using Rally API
问题 I'm trying to fetch all user stories that belong to certain feature, but which have children. Here's how I created query for that using rally-node. async.map(features, function(feature, cb) { self.restApi.query({ type: 'hierarchicalrequirement', limit: Infinity, order: 'Rank', fetch: ['FormattedID', 'Name', 'Children'], parent: feature.ObjectID, query: queryUtils.where('DirectChildrenCount', '>', 0) }, cb); }, function(err, results) { //user stories }); And here's how my feature looks like: {