19 lines
386 B
Go
19 lines
386 B
Go
//go:generate sh ../scripts/genSchema.sh
|
|
//go:generate go run github.com/99designs/gqlgen
|
|
|
|
package graph
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/jordanknott/taskcafe/internal/config"
|
|
"github.com/jordanknott/taskcafe/internal/db"
|
|
)
|
|
|
|
// Resolver handles resolving GraphQL queries & mutations
|
|
type Resolver struct {
|
|
Repository db.Repository
|
|
AppConfig config.AppConfig
|
|
mu sync.Mutex
|
|
}
|