forked from graph-gophers/graphql-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
41 lines (34 loc) · 1.6 KB
/
middleware.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package graphql
import (
"context"
"github.com/graph-gophers/graphql-go/errors"
"github.com/graph-gophers/graphql-go/internal/exec/resolvable"
)
// Exec executes the given query with the schema's resolver.
type Exec func(ctx context.Context, queryString string, operationName string, variables map[string]interface{}, res *resolvable.Schema) *Response
// Middleware can wrap Exec to add additional behaviour
type Middleware func(next Exec) Exec
func ParseErrorsMiddleware(parseErrors func([]*errors.QueryError) []*errors.QueryError) Middleware {
return func(next Exec) Exec {
return func(ctx context.Context, queryString string, operationName string, variables map[string]interface{}, res *resolvable.Schema) *Response {
// perform the original query
response := next(ctx, queryString, operationName, variables, res)
// mutate the errors
response.Errors = parseErrors(response.Errors)
// return the response
return response
}
}
}
// InspectInputMiddleware can be used to inspect the provided input and return a custom response.
// If no response is returned, we simply continue by calling next().
func InspectInputMiddleware(inspectInput func(queryString string, operationName string, variables map[string]interface{}) *Response) Middleware {
return func(next Exec) Exec {
return func(ctx context.Context, queryString string, operationName string, variables map[string]interface{}, res *resolvable.Schema) *Response {
if response := inspectInput(queryString, operationName, variables); response != nil {
return response
}
return next(ctx, queryString, operationName, variables, res)
}
}
}