AdminLogin is the resolver for the _admin_login field.
(ctx context.Context, params model.AdminLoginRequest)
| 104 | |
| 105 | // AdminLogin is the resolver for the _admin_login field. |
| 106 | func (r *mutationResolver) AdminLogin(ctx context.Context, params model.AdminLoginRequest) (*model.Response, error) { |
| 107 | return r.GraphQLProvider.AdminLogin(ctx, ¶ms) |
| 108 | } |
| 109 | |
| 110 | // AdminLogout is the resolver for the _admin_logout field. |
| 111 | func (r *mutationResolver) AdminLogout(ctx context.Context) (*model.Response, error) { |
nothing calls this directly
no test coverage detected