Categorygithub.com/microsvs/handler
modulepackage
0.0.0-20181228015244-a98900d93b60
Repository: https://github.com/microsvs/handler.git
Documentation: pkg.go.dev

# README

graphql-go-handler Build Status GoDoc Coverage Status Join the chat at https://gitter.im/graphql-go/graphql

Golang HTTP.Handler for graphl-go

Usage

package main

import (
	"net/http"
	"github.com/microsvs/handler"
)

func main() {
	schema, _ := graphql.NewSchema(...)

	h := handler.New(&handler.Config{
		Schema: &schema,
		Pretty: true,
		GraphiQL: true,
	})

	http.Handle("/graphql", h)
	http.ListenAndServe(":8080", nil)
}

Using Playground

h := handler.New(&handler.Config{
	Schema: &schema,
	Pretty: true,
	GraphiQL: false,
	Playground: true,
})

在config中新增错误返回处理的自定义
type HandlerErrorRespFn func([]gqlerrors.FormattedError) interface{}
并在 type Config类型中新增了HandlerErrorRespFn元素, 这样就可以在错误返回过程中,对原生错误进行自定义处理

Details

The handler will accept requests with the parameters:

  • query: A string GraphQL document to be executed.

  • variables: The runtime values to use for any GraphQL query variables as a JSON object.

  • operationName: If the provided query contains multiple named operations, this specifies which operation should be executed. If not provided, an 400 error will be returned if the query contains multiple named operations.

GraphQL will first look for each parameter in the URL's query-string:

/graphql?query=query+getUser($id:ID){user(id:$id){name}}&variables={"id":"4"}

If not found in the query-string, it will look in the POST request body. The handler will interpret it depending on the provided Content-Type header.

  • application/json: the POST body will be parsed as a JSON object of parameters.

  • application/x-www-form-urlencoded: this POST body will be parsed as a url-encoded string of key-value pairs.

  • application/graphql: The POST body will be parsed as GraphQL query string, which provides the query parameter.

Examples

Test

$ go get github.com/microsvs/handler
$ go build && go test ./...

# Functions

No description provided by the author
No description provided by the author
RequestOptions Parses a http.Request into GraphQL request options struct.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

HandlerErrorResp allow a user to custom error format, such as { "code": 40011, "message": "invalid user" } */.
RootObjectFn allows a user to generate a RootObject per request.