Skip to content

Instantly share code, notes, and snippets.

@kamilkisiela
Created November 15, 2018 11:02
Show Gist options
  • Save kamilkisiela/c7dbff07839c88df67172ac0fc3c28fd to your computer and use it in GitHub Desktop.
Save kamilkisiela/c7dbff07839c88df67172ac0fc3c28fd to your computer and use it in GitHub Desktop.
import { PostResolvers } from './generated-types';
const Post: PostResolvers.Resolvers = {
id: (parent) => parent._id,
text: (parent) => parent.content
};
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