aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/graphql-go/graphql/README.md
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
commit8fa0b258ac89781dae269790a4bde09cbcd2f324 (patch)
treeb9bcf0826f5739f128de52123447cede23291c02 /vendor/github.com/graphql-go/graphql/README.md
parent6363518c85cbd8247a5f6507b8a1dd3903cfb71d (diff)
downloadgit-bug-8fa0b258ac89781dae269790a4bde09cbcd2f324.tar.gz
cleaning
Diffstat (limited to 'vendor/github.com/graphql-go/graphql/README.md')
-rw-r--r--vendor/github.com/graphql-go/graphql/README.md75
1 files changed, 0 insertions, 75 deletions
diff --git a/vendor/github.com/graphql-go/graphql/README.md b/vendor/github.com/graphql-go/graphql/README.md
deleted file mode 100644
index 5aff88d6..00000000
--- a/vendor/github.com/graphql-go/graphql/README.md
+++ /dev/null
@@ -1,75 +0,0 @@
-# graphql [![Build Status](https://travis-ci.org/graphql-go/graphql.svg)](https://travis-ci.org/graphql-go/graphql) [![GoDoc](https://godoc.org/graphql.co/graphql?status.svg)](https://godoc.org/github.com/graphql-go/graphql) [![Coverage Status](https://coveralls.io/repos/graphql-go/graphql/badge.svg?branch=master&service=github)](https://coveralls.io/github/graphql-go/graphql?branch=master) [![Join the chat at https://gitter.im/graphql-go/graphql](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/graphql-go/graphql?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-
-An implementation of GraphQL in Go. Follows the official reference implementation [`graphql-js`](https://github.com/graphql/graphql-js).
-
-Supports: queries, mutations & subscriptions.
-
-### Documentation
-
-godoc: https://godoc.org/github.com/graphql-go/graphql
-
-### Getting Started
-
-To install the library, run:
-```bash
-go get github.com/graphql-go/graphql
-```
-
-The following is a simple example which defines a schema with a single `hello` string-type field and a `Resolve` method which returns the string `world`. A GraphQL query is performed against this schema with the resulting output printed in JSON format.
-
-```go
-package main
-
-import (
- "encoding/json"
- "fmt"
- "log"
-
- "github.com/graphql-go/graphql"
-)
-
-func main() {
- // Schema
- fields := graphql.Fields{
- "hello": &graphql.Field{
- Type: graphql.String,
- Resolve: func(p graphql.ResolveParams) (interface{}, error) {
- return "world", nil
- },
- },
- }
- rootQuery := graphql.ObjectConfig{Name: "RootQuery", Fields: fields}
- schemaConfig := graphql.SchemaConfig{Query: graphql.NewObject(rootQuery)}
- schema, err := graphql.NewSchema(schemaConfig)
- if err != nil {
- log.Fatalf("failed to create new schema, error: %v", err)
- }
-
- // Query
- query := `
- {
- hello
- }
- `
- params := graphql.Params{Schema: schema, RequestString: query}
- r := graphql.Do(params)
- if len(r.Errors) > 0 {
- log.Fatalf("failed to execute graphql operation, errors: %+v", r.Errors)
- }
- rJSON, _ := json.Marshal(r)
- fmt.Printf("%s \n", rJSON) // {“data”:{“hello”:”world”}}
-}
-```
-For more complex examples, refer to the [examples/](https://github.com/graphql-go/graphql/tree/master/examples/) directory and [graphql_test.go](https://github.com/graphql-go/graphql/blob/master/graphql_test.go).
-
-### Third Party Libraries
-| Name | Author | Description |
-|:-------------:|:-------------:|:------------:|
-| [graphql-go-handler](https://github.com/graphql-go/graphql-go-handler) | [Hafiz Ismail](https://github.com/sogko) | Middleware to handle GraphQL queries through HTTP requests. |
-| [graphql-relay-go](https://github.com/graphql-go/graphql-relay-go) | [Hafiz Ismail](https://github.com/sogko) | Lib to construct a graphql-go server supporting react-relay. |
-| [golang-relay-starter-kit](https://github.com/sogko/golang-relay-starter-kit) | [Hafiz Ismail](https://github.com/sogko) | Barebones starting point for a Relay application with Golang GraphQL server. |
-| [dataloader](https://github.com/nicksrandall/dataloader) | [Nick Randall](https://github.com/nicksrandall) | [DataLoader](https://github.com/facebook/dataloader) implementation in Go. |
-
-### Blog Posts
-- [Golang + GraphQL + Relay](http://wehavefaces.net/)
-