update the query

pull/2935/head
yann300 2 years ago
parent 33d3e7a56b
commit d369f0f9bb
  1. 24
      build-changelog.js

@ -27,6 +27,7 @@ fs.writeFileSync('./change-log.txt', data)
- save the JSON content as done.json - save the JSON content as done.json
- run this script - run this script
- get the result in the file done.txt - get the result in the file done.txt
*/
/* /*
{ {
@ -55,9 +56,25 @@ fs.writeFileSync('./change-log.txt', data)
state state
content { content {
... on PullRequest { ... on PullRequest {
participants participants (last: 100) {
author edges {
assignees node {
id
login
}
}
}
author {
login
}
assignees (last: 100) {
edges {
node {
id
login
}
}
}
url url
id id
number number
@ -76,4 +93,5 @@ fs.writeFileSync('./change-log.txt', data)
} }
} }
} }
*/ */

Loading…
Cancel
Save