package gqlerror
import "github.com/vektah/gqlparser/v2/gqlerror"
Index ¶
- type Error
- func ErrorLocf(file string, line int, col int, message string, args ...interface{}) *Error
- func ErrorPathf(path ast.Path, message string, args ...interface{}) *Error
- func ErrorPosf(pos *ast.Position, message string, args ...interface{}) *Error
- func Errorf(message string, args ...interface{}) *Error
- func Wrap(err error) *Error
- func WrapIfUnwrapped(err error) *Error
- func WrapPath(path ast.Path, err error) *Error
- func (err *Error) AsError() error
- func (err *Error) Error() string
- func (err *Error) SetFile(file string)
- func (err *Error) Unwrap() error
- type List
- func (errs List) As(target interface{}) bool
- func (errs List) Error() string
- func (errs List) Is(target error) bool
- func (errs List) Unwrap() []error
- type Location
Types ¶
type Error ¶
type Error struct { Err error `json:"-"` Message string `json:"message"` Path ast.Path `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://spec.graphql.org/draft/#sec-Errors
func ErrorLocf ¶
func ErrorPathf ¶
func ErrorPosf ¶
func Errorf ¶
func Wrap ¶
func WrapIfUnwrapped ¶
func WrapPath ¶
func (*Error) AsError ¶
func (*Error) Error ¶
func (*Error) SetFile ¶
func (*Error) Unwrap ¶
type List ¶
type List []*Error
func (List) As ¶
func (List) Error ¶
func (List) Is ¶
func (List) Unwrap ¶
type Location ¶
Source Files ¶
- Version
- v2.5.23 (latest)
- Published
- Feb 27, 2025
- Platform
- linux/amd64
- Imports
- 5 packages
- Last checked
- 2 weeks ago –
Tools for package owners.