iris/_examples/graphql/schema-first/graph/resolver.go
Gerasimos (Makis) Maropoulos e9eb85af90
add graphql example
#2029
2023-02-07 03:01:24 +02:00

12 lines
290 B
Go

package graph
import "github.com/iris-contrib/outerbanks-api/graph/model"
// This file will not be regenerated automatically.
//
// It serves as dependency injection for your app, add any dependencies you require here.
type Resolver struct {
CharacterStore map[string]model.Character
}