From d369f0f9bbaa405806c740e4100dc02be7d6caa9 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 22 Sep 2022 16:43:17 +0200 Subject: [PATCH] update the query --- build-changelog.js | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/build-changelog.js b/build-changelog.js index a72661fe6c..751d78ae18 100644 --- a/build-changelog.js +++ b/build-changelog.js @@ -27,6 +27,7 @@ fs.writeFileSync('./change-log.txt', data) - save the JSON content as done.json - run this script - get the result in the file done.txt +*/ /* { @@ -55,9 +56,25 @@ fs.writeFileSync('./change-log.txt', data) state content { ... on PullRequest { - participants - author - assignees + participants (last: 100) { + edges { + node { + id + login + } + } + } + author { + login + } + assignees (last: 100) { + edges { + node { + id + login + } + } + } url id number @@ -76,4 +93,5 @@ fs.writeFileSync('./change-log.txt', data) } } } + */