Created
July 24, 2019 17:05
-
-
Save ralfting/4d9368b44c677ae9fcd80fab03875127 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
| const generateDataReturn = ( | |
| { hasNextPage, endCursor } = { hasNextPage: false, endCursor: null } | |
| ) => ({ | |
| data: { | |
| repoMembers: { | |
| pageInfo: { | |
| hasNextPage, | |
| endCursor, | |
| }, | |
| edges: [...assignedUsers, ...unassignedUsers], | |
| }, | |
| }, | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment