Home
last modified time | relevance | path

Searched defs:InlineFragment (Results 1 – 9 of 9) sorted by relevance

/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/language/ast/
H A Dselections.go80 type InlineFragment struct { struct
81 Kind string
82 Loc *Location
83 TypeCondition *Named
84 Directives []*Directive
85 SelectionSet *SelectionSet
88 func NewInlineFragment(f *InlineFragment) *InlineFragment {
101 func (f *InlineFragment) GetKind() string {
105 func (f *InlineFragment) GetLoc() *Location {
109 func (f *InlineFragment) GetSelectionSet() *SelectionSet {
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/language/ast/
H A Dselections.go80 type InlineFragment struct { struct
81 Kind string
82 Loc *Location
83 TypeCondition *Named
84 Directives []*Directive
85 SelectionSet *SelectionSet
88 func NewInlineFragment(f *InlineFragment) *InlineFragment {
101 func (f *InlineFragment) GetKind() string {
105 func (f *InlineFragment) GetLoc() *Location {
109 func (f *InlineFragment) GetSelectionSet() *SelectionSet {
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/graphql-go/graphql/language/ast/
H A Dselections.go87 type InlineFragment struct { struct
88 Kind string
89 Loc *Location
90 TypeCondition *Named
91 Directives []*Directive
92 SelectionSet *SelectionSet
95 func NewInlineFragment(f *InlineFragment) *InlineFragment {
108 func (f *InlineFragment) GetKind() string {
112 func (f *InlineFragment) GetLoc() *Location {
116 func (f *InlineFragment) GetSelectionSet() *SelectionSet {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/graph-gophers/graphql-go/internal/query/
H A Dquery.go80 type InlineFragment struct { struct
81 Fragment
82 Directives common.DirectiveList
83 Loc errors.Location
93 func (InlineFragment) isSelection() {}
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/language/kinds/
H A Dkinds.go18 InlineFragment = "InlineFragment" const
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/language/kinds/
H A Dkinds.go18 InlineFragment = "InlineFragment" const
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/graphql-go/graphql/language/kinds/
H A Dkinds.go18 InlineFragment = "InlineFragment" const
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/language/
H A Dvisitor.mjs34 InlineFragment: ['typeCondition', 'directives', 'selectionSet'], property in QueryDocumentKeys
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/language/
H A Dast.py343 class InlineFragment(Selection): class