File tree Expand file tree Collapse file tree 2 files changed +5
-16
lines changed Expand file tree Collapse file tree 2 files changed +5
-16
lines changed Original file line number Diff line number Diff line change 1- 0.34.8
1+ 0.34.9
Original file line number Diff line number Diff line change @@ -3,28 +3,17 @@ package codefresh
33import (
44 "fmt"
55 "strings"
6-
76)
87
98type graphqlError struct {
10- Message string
11- Locations [] struct {
12- Line int
13- Column int
14- }
15- Extensions struct {
16- Code string
17- Exception struct {
18- Stacktrace []string
19- }
20- }
9+ Message string
10+ Extensions string
2111}
2212
2313type graphqlErrorResponse struct {
24- errors []graphqlError
14+ errors []graphqlError
2515 concatenatedErrors string
2616}
27-
2817
2918func (e graphqlErrorResponse ) Error () string {
3019
@@ -37,4 +26,4 @@ func (e graphqlErrorResponse) Error() string {
3726 }
3827 e .concatenatedErrors = sb .String ()
3928 return e .concatenatedErrors
40- }
29+ }
You can’t perform that action at this time.
0 commit comments