Skip to content

Instantly share code, notes, and snippets.

@shrirambalakrishnan
Created June 21, 2020 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrirambalakrishnan/f6dc341e7263169f251257a7f207be7a to your computer and use it in GitHub Desktop.
Save shrirambalakrishnan/f6dc341e7263169f251257a7f207be7a to your computer and use it in GitHub Desktop.
const typeDefs = gql`
type PostType {
title: String
description: String
}
type UserType {
id: Int
name: String
email: String
posts: [PostType]
}
type Query {
users: [UserType]
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment