Created
November 15, 2018 11:02
-
-
Save kamilkisiela/c7dbff07839c88df67172ac0fc3c28fd 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
import { PostResolvers } from './generated-types'; | |
const Post: PostResolvers.Resolvers = { | |
id: (parent) => parent._id, | |
text: (parent) => parent.content | |
}; |
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
export interface PostParent { | |
_id: string; | |
content: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment