Created
December 10, 2021 04:56
-
-
Save manakuro/8daa0ce7eeb1980cf6f4acdb14ffef06 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 UserConnection { | |
totalCount: Int! | |
pageInfo: PageInfo! | |
edges: [UserEdge] | |
} | |
type UserEdge { | |
node: User | |
cursor: Cursor! | |
} | |
extend type Query { | |
user(id: ID): User | |
users(after: Cursor, first: Int, before: Cursor, last: Int): UserConnection | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment