Is there a way to add filters to a query? For example, I want to return all Stories within a particular Epic or Label. I was hoping something like this would work, but no good... ``` var filter = { label_id: 14074891 }; client.project(projectID).stories.all(filter, function(error, data) { for (var i = 0; i < data.length; i++) { console.log('- '+ data[i].name +' : '+ data[i].description +' \n'); } }); ``` Thanks!
Is there a way to add filters to a query?
For example, I want to return all Stories within a particular Epic or Label.
I was hoping something like this would work, but no good...
Thanks!