GraphQL Example Using GQL Gen
The purpose of this example is to provide details as to how one would go about creating a Restful API with the Echo Web Framework.
Getting Started
Software requirements
Quick Installation
-
start the server
$ go run src/server.go
-
navigate to the site in the browser
$ open http://localhost:8080
-
test some queries
mutation CreateUser {
createUser(input:{name:"joker", age:20,phone:"01012340000"}) {
id
name
age
phone
}
}
query users {
users{
id
name
phone
age
}
}
GQL Gen References
Support
Bug reports and feature requests can be filed with the rest for the GraphQL Example Using GQL Gen project here:
License
GraphQL Example Using GQL Gen is released under the MIT license.
Copyright
copyright:: (c) Copyright 2018 Conrad Taylor. All Rights Reserved.