MCPcopy Create free account
hub / github.com/axios/axios / getIssues

Method getIssues

bin/GithubAPI.js:70–72  ·  view source on GitHub ↗
({state= 'open', labels, sort = 'created', desc = false, per_page = 100, page = 1})

Source from the content-addressed store, hash-verified

68 }
69
70 async getIssues({state= 'open', labels, sort = 'created', desc = false, per_page = 100, page = 1}) {
71 return (await this.axios.get(`/issues`, {params: {state, labels, sort, direction: desc ? 'desc' : 'asc', per_page, page}})).data;
72 }
73
74 async updateIssue(issue, data) {
75 return (await this.axios.patch(`/issues/${issue}`, data)).data;

Callers

nothing calls this directly

Calls 1

getMethod · 0.80

Tested by

no test coverage detected