We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a779629 commit 50d2ef3Copy full SHA for 50d2ef3
README.md
@@ -141,7 +141,8 @@ for await (const response of octokit.paginate.iterator(
141
parameters
142
)) {
143
// do whatever you want with each response, break out of the loop, etc.
144
- console.log(response.data.title);
+ const issues = response.data;
145
+ console.log("%d issues found", issues.length);
146
}
147
```
148
@@ -159,7 +160,8 @@ for await (const response of octokit.paginate.iterator(
159
160
161
162
163
164
165
166
167
0 commit comments