-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.go
53 lines (45 loc) · 970 Bytes
/
config.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 schema
import (
"log"
"github.com/graphql-go/graphql"
"github.com/vaniila/hyper/gql"
)
type compiled struct {
schema *graphql.Schema
}
type schemaconfig struct {
schema *schema
compiled *compiled
}
func (v *schemaconfig) Query() gql.Object {
return v.schema.query
}
func (v *schemaconfig) Mutation() gql.Object {
return v.schema.mut
}
func (v *schemaconfig) Subscription() gql.Object {
return v.schema.sub
}
func (v *schemaconfig) Schema() graphql.Schema {
if v.compiled == nil {
v.compiled = new(compiled)
}
if v.compiled.schema == nil {
c := graphql.SchemaConfig{}
if v.schema.query != nil {
c.Query = v.schema.query.Config().Output()
}
if v.schema.mut != nil {
c.Mutation = v.schema.mut.Config().Output()
}
if v.schema.sub != nil {
c.Subscription = v.schema.sub.Config().Output()
}
i, err := graphql.NewSchema(c)
if err != nil {
log.Fatal(err)
}
v.compiled.schema = &i
}
return *v.compiled.schema
}