This project is a Demo project for graphql-clj and GraphiQL. You can start trying Clojure with GraphQL in a few minutes.
This project was bootstrapped with Create React App.
lein ring server-headless
http://localhost:3002/index.html
query {
human (id:"1002") {
id
name
friends {
id
name
friends {
id
}
}
}
}
mutation{
createHuman (name:"testname", friends:[]) {
id
}
}
Note: Not required, unless you want to make changes to Javascript code
npm install
npm run build