DanilKlochkov / golang-graphql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

golang-graphql-simple

If you want to run this project, open terminal and navigate to the project folder. Then run docker-compose up

You can send your requests on localhost:8080

Create request example:

mutation {
    create(title: "something", content: "something") {
        id,
        title,
        content
    }
}

Get request example:

query {
    node(id: 1) {
        id,
        title,
        content
    }
}

GraphQl docs

About


Languages

Language:Go 95.4%Language:Dockerfile 2.4%Language:Shell 2.2%