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.
29 lines
918 B
29 lines
918 B
package resolvers
|
|
|
|
// 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.
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.aiterp.net/stufflog/server/graph/graphcore"
|
|
"git.aiterp.net/stufflog/server/models"
|
|
)
|
|
|
|
func (r *issueResolver) Project(ctx context.Context, obj *models.Issue) (*models.Project, error) {
|
|
panic(fmt.Errorf("not implemented"))
|
|
}
|
|
|
|
func (r *issueResolver) Owner(ctx context.Context, obj *models.Issue) (*models.User, error) {
|
|
panic(fmt.Errorf("not implemented"))
|
|
}
|
|
|
|
func (r *issueResolver) Assignee(ctx context.Context, obj *models.Issue) (*models.User, error) {
|
|
panic(fmt.Errorf("not implemented"))
|
|
}
|
|
|
|
// Issue returns graphcore.IssueResolver implementation.
|
|
func (r *Resolver) Issue() graphcore.IssueResolver { return &issueResolver{r} }
|
|
|
|
type issueResolver struct{ *Resolver }
|