-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargument.go
53 lines (45 loc) · 1.51 KB
/
argument.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
42
43
44
45
46
47
48
49
50
51
52
53
package directive
import (
"github.com/vektah/gqlparser/v2/ast"
"slices"
)
type ArgumentDefinitions ast.ArgumentDefinitionList
func (as ArgumentDefinitions) FilterByArgumentType(argumentTypePatterns []string) ArgumentDefinitions {
var arguments ArgumentDefinitions
for _, argument := range as {
if slices.ContainsFunc(argumentTypePatterns, func(pattern string) bool { return isType(pattern, argument.Type) }) {
arguments = append(arguments, argument)
}
}
return arguments
}
func (as ArgumentDefinitions) ExcludeByArgumentName(excludeArgumentPatterns []string) ArgumentDefinitions {
var arguments ArgumentDefinitions
for _, argument := range as {
if !slices.ContainsFunc(excludeArgumentPatterns, func(pattern string) bool { return isMatch(pattern, argument.Name) }) {
arguments = append(arguments, argument)
}
}
return arguments
}
func (as ArgumentDefinitions) FilterByNotHasDirective(directive string) ArgumentDefinitions {
var arguments ArgumentDefinitions
for _, argument := range as {
if !findDirectiveOnArgument(argument, directive) {
arguments = append(arguments, argument)
}
}
return arguments
}
func (as ArgumentDefinitions) FilterByPositionNotNil() ArgumentDefinitions {
var arguments ArgumentDefinitions
for _, argument := range as {
if argument.Position != nil {
arguments = append(arguments, argument)
}
}
return arguments
}
func findDirectiveOnArgument(argument *ast.ArgumentDefinition, directiveName string) bool {
return argument.Directives.ForName(directiveName) != nil
}