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
3
3
import (
4
4
"fmt"
5
5
"strings"
6
-
7
6
)
8
7
9
8
type 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
21
11
}
22
12
23
13
type graphqlErrorResponse struct {
24
- errors []graphqlError
14
+ errors []graphqlError
25
15
concatenatedErrors string
26
16
}
27
-
28
17
29
18
func (e graphqlErrorResponse ) Error () string {
30
19
@@ -37,4 +26,4 @@ func (e graphqlErrorResponse) Error() string {
37
26
}
38
27
e .concatenatedErrors = sb .String ()
39
28
return e .concatenatedErrors
40
- }
29
+ }
You can’t perform that action at this time.
0 commit comments