Skip to content

Instantly share code, notes, and snippets.

View 0916dhkim's full-sized avatar

Danny Kim 0916dhkim

View GitHub Profile
@0916dhkim
0916dhkim / sample-mutation.graphql
Created January 31, 2021 19:56
Sample Mutation
type Mutation {
changePostTitle(postId: ID!, title:String!): Post
}
@0916dhkim
0916dhkim / sample.graphql
Created January 31, 2021 19:55
Example Schema
type User {
id: ID!
email: String!
posts: [Post!]!
}
type Post {
id: ID!
title: String!
content: String
}