gqlerror

package
v1.3.1 Latest Latest
Warning

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

Go to latest
Published: Feb 8, 2020 License: MIT Imports: 4 Imported by: 185

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Error

type Error struct {
	Message    string                 `json:"message"`
	Path       []interface{}          `json:"path,omitempty"`
	Locations  []Location             `json:"locations,omitempty"`
	Extensions map[string]interface{} `json:"extensions,omitempty"`
	Rule       string                 `json:"-"`
}

Error is the standard graphql error type described in https://facebook.github.io/graphql/draft/#sec-Errors

func ErrorLocf

func ErrorLocf(file string, line int, col int, message string, args ...interface{}) *Error

func ErrorPathf

func ErrorPathf(path []interface{}, message string, args ...interface{}) *Error

func ErrorPosf

func ErrorPosf(pos *ast.Position, message string, args ...interface{}) *Error

func Errorf

func Errorf(message string, args ...interface{}) *Error

func WrapPath

func WrapPath(path []interface{}, err error) *Error

func (*Error) Error

func (err *Error) Error() string

func (*Error) SetFile

func (err *Error) SetFile(file string)

type List

type List []*Error

func (List) Error

func (errs List) Error() string

type Location

type Location struct {
	Line   int `json:"line,omitempty"`
	Column int `json:"column,omitempty"`
}

Jump to

Keyboard shortcuts

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