I’m using the Node.js setup. When I request stories and supply {opt_fields: [“assignee”]}, it’s as though I didn’t supply anything and I get the normal response (though I’m missing the ‘assignee’ optional field). However, if I remove the array brackets, I only get the assignee field, as though I passed fields: “assignee”.
Where am I going wrong?
myclient.stories.getStory(storyID, {opt_fields: [“assignee”]}) – yields a standard response without the assignee field
myclient.stories.getStory(storyID, {opt_fields: “assignee”}) – yields only the assignee field
myclient.stories.getStory(storyID, {fields: “assignee”}) – yields only the assignee field
Hi there, where would I go to ask that the documentation is updated? I also thought it worked the same way as @Alexander_Fouse. Can I just raise an issue in the repo?
There are a couple of errors I have found throughout the documentation and it makes it more difficult to use than it should be.