71 lines
2.9 KiB
Go
71 lines
2.9 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.40
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.1in9.net/raider/wroofauth/graph/model"
|
|
)
|
|
|
|
// AuthFeSessionCreate is the resolver for the authFeSessionCreate field.
|
|
func (r *mutationResolver) AuthFeSessionCreate(ctx context.Context) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionCreate - authFeSessionCreate"))
|
|
}
|
|
|
|
// AuthFeSessionIdentify is the resolver for the authFeSessionIdentify field.
|
|
func (r *mutationResolver) AuthFeSessionIdentify(ctx context.Context, identification string) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionIdentify - authFeSessionIdentify"))
|
|
}
|
|
|
|
// AuthFeSessionPassword is the resolver for the authFeSessionPassword field.
|
|
func (r *mutationResolver) AuthFeSessionPassword(ctx context.Context, password string) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionPassword - authFeSessionPassword"))
|
|
}
|
|
|
|
// AuthFeSessionTotp is the resolver for the authFeSessionTOTP field.
|
|
func (r *mutationResolver) AuthFeSessionTotp(ctx context.Context, totp string) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionTotp - authFeSessionTOTP"))
|
|
}
|
|
|
|
// AuthFeSessionLock is the resolver for the authFeSessionLock field.
|
|
func (r *mutationResolver) AuthFeSessionLock(ctx context.Context) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionLock - authFeSessionLock"))
|
|
}
|
|
|
|
// AuthFeSessionLogout is the resolver for the authFeSessionLogout field.
|
|
func (r *mutationResolver) AuthFeSessionLogout(ctx context.Context) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSessionLogout - authFeSessionLogout"))
|
|
}
|
|
|
|
// Self is the resolver for the self field.
|
|
func (r *queryResolver) Self(ctx context.Context) (model.Actor, error) {
|
|
panic(fmt.Errorf("not implemented: Self - self"))
|
|
}
|
|
|
|
// User is the resolver for the user field.
|
|
func (r *queryResolver) User(ctx context.Context, id string) (*model.User, error) {
|
|
panic(fmt.Errorf("not implemented: User - user"))
|
|
}
|
|
|
|
// AuthFeSession is the resolver for the authFeSession field.
|
|
func (r *queryResolver) AuthFeSession(ctx context.Context, id string) (*model.FeSession, error) {
|
|
panic(fmt.Errorf("not implemented: AuthFeSession - authFeSession"))
|
|
}
|
|
|
|
// Node is the resolver for the node field.
|
|
func (r *queryResolver) Node(ctx context.Context, id string) (model.Node, error) {
|
|
panic(fmt.Errorf("not implemented: Node - node"))
|
|
}
|
|
|
|
// Mutation returns MutationResolver implementation.
|
|
func (r *Resolver) Mutation() MutationResolver { return &mutationResolver{r} }
|
|
|
|
// Query returns QueryResolver implementation.
|
|
func (r *Resolver) Query() QueryResolver { return &queryResolver{r} }
|
|
|
|
type mutationResolver struct{ *Resolver }
|
|
type queryResolver struct{ *Resolver }
|