mirror of
https://github.com/datarhei/core.git
synced 2025-10-05 16:07:07 +08:00
31 lines
973 B
Go
31 lines
973 B
Go
package resolver
|
|
|
|
// This file will be automatically regenerated based on the schema, any resolver implementations
|
|
// will be copied through when generating and any unknown code will be moved to the end.
|
|
// Code generated by github.com/99designs/gqlgen version v0.17.33
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/datarhei/core/v16/http/graph/graph"
|
|
)
|
|
|
|
// Ping is the resolver for the ping field.
|
|
func (r *mutationResolver) Ping(ctx context.Context) (string, error) {
|
|
return "pong", nil
|
|
}
|
|
|
|
// Ping is the resolver for the ping field.
|
|
func (r *queryResolver) Ping(ctx context.Context) (string, error) {
|
|
return "pong", nil
|
|
}
|
|
|
|
// Mutation returns graph.MutationResolver implementation.
|
|
func (r *Resolver) Mutation() graph.MutationResolver { return &mutationResolver{r} }
|
|
|
|
// Query returns graph.QueryResolver implementation.
|
|
func (r *Resolver) Query() graph.QueryResolver { return &queryResolver{r} }
|
|
|
|
type mutationResolver struct{ *Resolver }
|
|
type queryResolver struct{ *Resolver }
|