Skip to content
This repository was archived by the owner on Jan 3, 2019. It is now read-only.
This repository was archived by the owner on Jan 3, 2019. It is now read-only.

Add Filters to Query #13

@mtclmn

Description

@mtclmn

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions