Created
June 19, 2018 20:17
-
-
Save kdichev/b17b05433533451b51f6057210f02f1d to your computer and use it in GitHub Desktop.
Car endpoints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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