1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-19 07:00:59 +00:00
Nuxt/examples/vue-apollo/queries/car.gql
2017-07-27 16:26:03 +02:00

9 lines
87 B
GraphQL

query Car($id: ID!) {
Car(id: $id) {
make
model
photoURL
price
}
}