floralvikings / jira-connector

NodeJS Wrapper for the Jira REST API
http://floralvikings.github.io/jira-connector/
MIT License
373 stars 180 forks source link

Cannot access filter createFilter method #246

Open codeana opened 4 years ago

codeana commented 4 years ago

Hello,

I am writing a node js application and trying to create a jira filter using jira-connector api. However, I am not able to access createFilter method. Could somebody please elaborate me on how can I access the createFilter method to create a filter on jira.

Sample code: const JiraClient = require("jira-connector"); const jira = new JiraClient({ host: "jira.abcd.com", basic_auth: { username: "xxxxx", password: "xxxxxxxxx" } }); jira.filter.createFilter() // Unable to access the function here.

Please let me know. Thank you!