├── .gitignore ├── README.md ├── graphiql.html ├── lessons ├── 01-hello-go.es.md └── 01-hello-go.md ├── main.go └── schema.graphql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/README.md -------------------------------------------------------------------------------- /graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/graphiql.html -------------------------------------------------------------------------------- /lessons/01-hello-go.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/lessons/01-hello-go.es.md -------------------------------------------------------------------------------- /lessons/01-hello-go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/lessons/01-hello-go.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/main.go -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpalmes/graphql-go-introduction/HEAD/schema.graphql --------------------------------------------------------------------------------