echo "# test-graphql" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/evertonmelogo/test-graphql.git git push -u origin master
git remote add origin https://github.com/evertonmelogo/test-graphql.git git push -u origin master
mutation { createUser(name: "Everton", repo:"github", age: 23), { id, name } }
query { getUserByName(name: "Everton"), { id, name } }
query { getUserByName(name: "Everton"), { id, name } }
mutation { createUser(id: 1) { id, slug, name } }
query { user { id, name, slug } }