We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 370e0ac commit 16cc3c6Copy full SHA for 16cc3c6
errors/errors.go
@@ -5,12 +5,13 @@ import (
5
)
6
7
type QueryError struct {
8
- Message string `json:"message"`
9
- Locations []Location `json:"locations,omitempty"`
10
- Path []interface{} `json:"path,omitempty"`
11
- Rule string `json:"-"`
12
- ResolverError error `json:"-"`
13
- PanicValue interface{} `json:"-"`
+ Message string `json:"message"`
+ Locations []Location `json:"locations,omitempty"`
+ Path []interface{} `json:"path,omitempty"`
+ Extensions map[string]interface{} `json:"extensions,omitempty"`
+ Rule string `json:"-"`
+ ResolverError error `json:"-"`
14
+ PanicValue interface{} `json:"-"`
15
}
16
17
type Location struct {
0 commit comments