Skip to content

Instantly share code, notes, and snippets.

@richardgrantserverless
Created March 8, 2022 20:20
export const resolvers = {
Query: {
getUserInfo: (root, args) => getUserInfo(args),
},
User: {
tweets: (obj, args) => getPaginatedTweets(obj.handle, args),
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment