Skip to content

Instantly share code, notes, and snippets.

View usulpro's full-sized avatar
🟢

Oleg Proskurin usulpro

🟢
View GitHub Profile
@usulpro
usulpro / ohai.gif
Created April 4, 2020 21:20 — forked from Qix-/ohai.gif
ohaider
ohai.gif
input CreatePost {
imageUrl: String!
title: String!
}
type Mutation {
createPost(imageUrl: String!, title: String!): Post
updatePost(id: ID!, imageUrl: String, title: String): Post
updateOrCreatePost(update: UpdatePost!, create: CreatePost!): Post
deletePost(id: ID!): Post