package gqlerror

import "github.com/open-policy-agent/opa/internal/gqlparser/gqlerror"

Index

Types

type Error

type Error struct {
	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:"-"`
	// contains filtered or unexported fields
}

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 ast.Path, 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 ast.Path, err error) *Error

func (*Error) Error

func (err *Error) Error() string

func (*Error) SetFile

func (err *Error) SetFile(file string)

func (Error) Unwrap

func (err Error) Unwrap() error

type List

type List []*Error

func (List) As

func (errs List) As(target interface{}) bool

func (List) Error

func (errs List) Error() string

func (List) Is

func (errs List) Is(target error) bool

type Location

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

Source Files

error.go

Version
v1.4.2 (latest)
Published
May 2, 2025
Platform
linux/amd64
Imports
5 packages
Last checked
7 hours ago

Tools for package owners.