package resolver import ( "git.aiterp.net/rpdata/api/graphql/resolver/mutations" "git.aiterp.net/rpdata/api/graphql/resolver/queries" ) // The Resolver combines the query and mutation resolvers from the subpackages. // This is the one to pass along with the schema. type Resolver struct { queries.QueryResolver mutations.MutationResolver }