Skip to content

Instantly share code, notes, and snippets.

@ma-9
Last active June 4, 2020 10:14
Show Gist options
  • Save ma-9/07fe94b870473bf6557bff7767b199c3 to your computer and use it in GitHub Desktop.
Save ma-9/07fe94b870473bf6557bff7767b199c3 to your computer and use it in GitHub Desktop.
My Queries for GraphiQL
query fetchEventQuery {
events {
title
description
creator {
email
}
}
}
mutation CreateEventQuery {
createEvent(eventInput: {title: "PhotoShop Compition 2020", description: "Challenge your Self", price: 1309.99, date: "Thu Jun 04 2020 14:14:20 GMT+0530 (India Standard Time)"}) {
_id
title
}
}
mutation createUserQuery {
createUser(userInput: {email: "manavoza7@gmail.com", password: "admin@123"}) {
email
password
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment