This commit is contained in:
Kristof Van Miegem 2019-02-13 13:00:33 +01:00
parent 7ce4e4a7bc
commit b77421c8cd
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
To get up-and-running, install the node dependencies and start the server. To get up-and-running, install the node dependencies and start the server.
🚀 Go to http://localhost:4000/ to play in the GraphQL Playground. 🚀 Go to http://localhost:4000/ to play in the GraphQL Playground.
Slides: https://app.box.com/s/6l6xi3mm26d7ur9g7n05egguc6dkyz3v
``` ```
npm i npm i
npm start npm start

View File

@ -52,7 +52,7 @@ module.exports = gql`
} }
input ReservationProductInput { input ReservationProductInput {
productId: String! productId: ID
quantity: Int quantity: Int
} }