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 3e0ffa2 commit 74210a4Copy full SHA for 74210a4
doc/result_pager.md
@@ -1,4 +1,15 @@
1
-## Resultpager
2
-[Back to the navigation](../index.md)
+## Result Pager
+[Back to the navigation](index.md)
3
4
-To be written...
+### Usage examples
5
+
6
+Get all results of a organization
7
8
+```php
9
+$client = new Github\Client();
10
11
+$organizationApi = $client->api('organization');
12
13
+$paginator = new Github\ResultPager( $client );
14
+$result = $paginator->fetchAll( $organizationApi, 'repositories', 'future500' );
15
+```
0 commit comments