handler

package module
v0.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 19, 2018 License: MIT Imports: 8 Imported by: 5

README

CircleCI codecov GoDoc

graphql-go-handler

Golang HTTP.Handler for graphl-go.

The original implementation by graphql-go/handler uses the default HTTP implementation. This fork adapts the library for using the valyala/fasthttp.

Usage
package main

import (
	"github.com/valyala/fasthttp"
	handler "github.com/lab259/graphql-fashttp-handler"
	"github.com/graphql-go/graphql/testutil"
)

func main() {
	h := handler.New(&handler.Config{
		Schema:   &testutil.StarWarsSchema,
		Pretty:   true,
		GraphiQL: true,
	})

	// Serving given endpoint for the sake of example
	fasthttp.ListenAndServe(":8080", func(ctx *fasthttp.RequestCtx) {
		h.ServeHTTP(ctx)
	})
}

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 -u github.com/onsi/ginkgo/ginkgo
$ make deps
$ make test
Credits

This project is originally forked from graphql-go/handler.

License

MIT

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ContentTypeHTML           = "text/html"
	ContentTypeJSON           = "application/json"
	ContentTypeGraphQL        = "application/graphql"
	ContentTypeFormURLEncoded = "application/x-www-form-urlencoded"
)

Functions

This section is empty.

Types

type Config

type Config struct {
	Schema       *graphql.Schema
	Pretty       bool
	GraphiQL     bool
	Playground   bool
	RootObjectFn RootObjectFn
}

func NewConfig

func NewConfig() *Config

type Handler

type Handler struct {
	Schema *graphql.Schema
	// contains filtered or unexported fields
}

func New

func New(p *Config) *Handler

func (*Handler) ContextHandler

func (h *Handler) ContextHandler(ctx context.Context, ctxreq *fasthttp.RequestCtx)

ContextHandler provides an entrypoint into executing graphQL queries with a user-provided context.

func (*Handler) ServeHTTP

func (h *Handler) ServeHTTP(ctx *fasthttp.RequestCtx)

ServeHTTP provides an entrypoint into executing graphQL queries.

type RequestOptions

type RequestOptions struct {
	Query         string                 `json:"query" url:"query" schema:"query"`
	Variables     map[string]interface{} `json:"variables" url:"variables" schema:"variables"`
	OperationName string                 `json:"operationName" url:"operationName" schema:"operationName"`
}

func NewRequestOptions

func NewRequestOptions(ctx *fasthttp.RequestCtx) *RequestOptions

RequestOptions Parses a http.Request into GraphQL request options struct

type RootObjectFn added in v0.3.0

type RootObjectFn func(ctx context.Context, r *fasthttp.Request) map[string]interface{}

RootObjectFn allows a user to generate a RootObject per request

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL