Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created July 24, 2019 17:05
Show Gist options
  • Select an option

  • Save ralfting/4d9368b44c677ae9fcd80fab03875127 to your computer and use it in GitHub Desktop.

Select an option

Save ralfting/4d9368b44c677ae9fcd80fab03875127 to your computer and use it in GitHub Desktop.
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