UpdateUser is the resolver for the _update_user field.
(ctx context.Context, params model.UpdateUserRequest)
| 94 | |
| 95 | // UpdateUser is the resolver for the _update_user field. |
| 96 | func (r *mutationResolver) UpdateUser(ctx context.Context, params model.UpdateUserRequest) (*model.User, error) { |
| 97 | return r.GraphQLProvider.UpdateUser(ctx, ¶ms) |
| 98 | } |
| 99 | |
| 100 | // AdminSignup is the resolver for the _admin_signup field. |
| 101 | func (r *mutationResolver) AdminSignup(ctx context.Context, params model.AdminSignupRequest) (*model.Response, error) { |
nothing calls this directly
no test coverage detected