Skip to content

Instantly share code, notes, and snippets.

@kdichev
Created June 19, 2018 20:17
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 kdichev/b17b05433533451b51f6057210f02f1d to your computer and use it in GitHub Desktop.
Save kdichev/b17b05433533451b51f6057210f02f1d to your computer and use it in GitHub Desktop.
Car endpoints
mutation {
createCar(
name: "car"
carBrand: "Mercedes-Benz"
carMode: "C63 AMG"
carYear: "2018-06-19T19:51:13.701Z"
) {
id
carBrand
}
}
query {
allCars{
carMode
carBrand
carYear
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment