You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
511 B
11 lines
511 B
// Package queries contains resolvers for individual GrahpQL queries. They were previously mixed in with one another, but that caused
|
|
// difficulty seeking out specific queries.
|
|
package queries
|
|
|
|
import "errors"
|
|
|
|
// QueryResolver is a resolver for all queries. The stuttery name is due to being embedded in the root resolver.
|
|
type QueryResolver struct{}
|
|
|
|
// ErrCannotResolve is returned when a resolver constructor is at its wit's end
|
|
var ErrCannotResolve = errors.New("Cannot resolve due to invalid arguments")
|