mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-17 04:48:58 +03:00
68 lines
1.9 KiB
Go
68 lines
1.9 KiB
Go
package ast
|
|
|
|
type QueryDocument struct {
|
|
Operations OperationList
|
|
Fragments FragmentDefinitionList
|
|
Position *Position `dump:"-"`
|
|
}
|
|
|
|
type SchemaDocument struct {
|
|
Schema SchemaDefinitionList
|
|
SchemaExtension SchemaDefinitionList
|
|
Directives DirectiveDefinitionList
|
|
Definitions DefinitionList
|
|
Extensions DefinitionList
|
|
Position *Position `dump:"-"`
|
|
}
|
|
|
|
func (d *SchemaDocument) Merge(other *SchemaDocument) {
|
|
d.Schema = append(d.Schema, other.Schema...)
|
|
d.SchemaExtension = append(d.SchemaExtension, other.SchemaExtension...)
|
|
d.Directives = append(d.Directives, other.Directives...)
|
|
d.Definitions = append(d.Definitions, other.Definitions...)
|
|
d.Extensions = append(d.Extensions, other.Extensions...)
|
|
}
|
|
|
|
type Schema struct {
|
|
Query *Definition
|
|
Mutation *Definition
|
|
Subscription *Definition
|
|
|
|
Types map[string]*Definition
|
|
Directives map[string]*DirectiveDefinition
|
|
|
|
PossibleTypes map[string][]*Definition
|
|
Implements map[string][]*Definition
|
|
}
|
|
|
|
func (s *Schema) AddPossibleType(name string, def *Definition) {
|
|
s.PossibleTypes[name] = append(s.PossibleTypes[name], def)
|
|
}
|
|
|
|
// GetPossibleTypes will enumerate all the definitions for a given interface or union
|
|
func (s *Schema) GetPossibleTypes(def *Definition) []*Definition {
|
|
return s.PossibleTypes[def.Name]
|
|
}
|
|
|
|
func (s *Schema) AddImplements(name string, iface *Definition) {
|
|
s.Implements[name] = append(s.Implements[name], iface)
|
|
}
|
|
|
|
// GetImplements returns all the interface and union definitions that the given definition satisfies
|
|
func (s *Schema) GetImplements(def *Definition) []*Definition {
|
|
return s.Implements[def.Name]
|
|
}
|
|
|
|
type SchemaDefinition struct {
|
|
Description string
|
|
Directives DirectiveList
|
|
OperationTypes OperationTypeDefinitionList
|
|
Position *Position `dump:"-"`
|
|
}
|
|
|
|
type OperationTypeDefinition struct {
|
|
Operation Operation
|
|
Type string
|
|
Position *Position `dump:"-"`
|
|
}
|