Created
September 23, 2019 02:37
-
-
Save ridhoperdana/e9d4b351cdee92248465f0e920af209a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Edge { | |
| cursor: String | |
| node: Article | |
| } | |
| type PageInfo { | |
| endCursor: String | |
| hasNextPage: Boolean | |
| } | |
| type ArticlesResult { | |
| edges: [Edge] | |
| pageInfo: PageInfo | |
| totalCount: Int | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment