Home
last modified time | relevance | path

Searched defs:FragmentSpread (Results 1 – 11 of 11) sorted by relevance

/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/language/ast/
H A Dselections.go48 type FragmentSpread struct { struct
49 Kind string
50 Loc *Location
51 Name *Name
52 Directives []*Directive
55 func NewFragmentSpread(fs *FragmentSpread) *FragmentSpread {
67 func (fs *FragmentSpread) GetKind() string {
71 func (fs *FragmentSpread) GetLoc() *Location {
75 func (fs *FragmentSpread) GetSelectionSet() *SelectionSet {
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/language/ast/
H A Dselections.go48 type FragmentSpread struct { struct
49 Kind string
50 Loc *Location
51 Name *Name
52 Directives []*Directive
55 func NewFragmentSpread(fs *FragmentSpread) *FragmentSpread {
67 func (fs *FragmentSpread) GetKind() string {
71 func (fs *FragmentSpread) GetLoc() *Location {
75 func (fs *FragmentSpread) GetSelectionSet() *SelectionSet {
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/graphql-go/graphql/language/ast/
H A Dselections.go55 type FragmentSpread struct { struct
56 Kind string
57 Loc *Location
58 Name *Name
59 Directives []*Directive
62 func NewFragmentSpread(fs *FragmentSpread) *FragmentSpread {
74 func (fs *FragmentSpread) GetKind() string {
78 func (fs *FragmentSpread) GetLoc() *Location {
82 func (fs *FragmentSpread) GetSelectionSet() *SelectionSet {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/graph-gophers/graphql-go/internal/query/
H A Dquery.go86 type FragmentSpread struct { struct
87 Name common.Ident
88 Directives common.DirectiveList
89 Loc errors.Location
94 func (FragmentSpread) isSelection() {}
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/utilities/
H A DseparateOperations.mjs39 FragmentSpread: function FragmentSpread(node) { function
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/language/kinds/
H A Dkinds.go17 FragmentSpread = "FragmentSpread" const
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/language/kinds/
H A Dkinds.go17 FragmentSpread = "FragmentSpread" const
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/graphql-go/graphql/language/kinds/
H A Dkinds.go17 FragmentSpread = "FragmentSpread" const
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/graph-gophers/graphql-go/internal/validation/
H A Dvalidation.go433 …y.Selection, fragVisited map[*query.FragmentDecl]struct{}, spreadPath []*query.FragmentSpread, spr…
439 …y.Selection, fragVisited map[*query.FragmentDecl]struct{}, spreadPath []*query.FragmentSpread, spr…
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/language/
H A Dvisitor.mjs33 FragmentSpread: ['name', 'directives'], property in QueryDocumentKeys
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/language/
H A Dast.py300 class FragmentSpread(Selection): class