All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m36s
Move Query/Mutation field declarations from the monolithic schema.graphql into each domain's .graphql file using extend type, so gqlgen places resolvers in the matching *.resolvers.go files. Extract helper functions into *_helpers.go files to prevent gqlgen from commenting them out. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
52 lines
1.5 KiB
Go
52 lines
1.5 KiB
Go
package graph
|
|
|
|
// 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.88
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"adam-french.co.uk/backend/graph/model"
|
|
"adam-french.co.uk/backend/models"
|
|
)
|
|
|
|
// ID is the resolver for the id field.
|
|
func (r *favoriteResolver) ID(ctx context.Context, obj *models.Favorite) (int, error) {
|
|
return int(obj.ID), nil
|
|
}
|
|
|
|
// CreateFavorite is the resolver for the createFavorite field.
|
|
func (r *mutationResolver) CreateFavorite(ctx context.Context, input model.CreateFavoriteInput) (*models.Favorite, error) {
|
|
if !IsAdminFromCtx(ctx) {
|
|
return nil, fmt.Errorf("admin access required")
|
|
}
|
|
|
|
favorite := models.Favorite{Type: input.Type, Name: input.Name, Link: input.Link}
|
|
if err := r.Store.DB.Create(&favorite).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &favorite, nil
|
|
}
|
|
|
|
// Favorites is the resolver for the favorites field.
|
|
func (r *queryResolver) Favorites(ctx context.Context) ([]*models.Favorite, error) {
|
|
var favorites []models.Favorite
|
|
if err := r.Store.DB.Order("created_at DESC").Find(&favorites).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
result := make([]*models.Favorite, len(favorites))
|
|
for i := range favorites {
|
|
result[i] = &favorites[i]
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// Favorite returns FavoriteResolver implementation.
|
|
func (r *Resolver) Favorite() FavoriteResolver { return &favoriteResolver{r} }
|
|
|
|
type favoriteResolver struct{ *Resolver }
|