docs: better first query example

This commit is contained in:
Guillaume Chau
2018-08-30 14:32:52 +02:00
parent d25793d1cc
commit f60cf4d4a5
+1 -1
View File
@@ -22,7 +22,7 @@ import gql from 'graphql-tag'
export default {
apollo: {
// Simple query that will update the 'hello' vue property
hello: gql`{hello}`,
hello: gql`query { hello }`,
},
}
```