DeleteUser is the resolver for the _delete_user field.
(ctx context.Context, params model.DeleteUserRequest)
| 89 | |
| 90 | // DeleteUser is the resolver for the _delete_user field. |
| 91 | func (r *mutationResolver) DeleteUser(ctx context.Context, params model.DeleteUserRequest) (*model.Response, error) { |
| 92 | return r.GraphQLProvider.DeleteUser(ctx, ¶ms) |
| 93 | } |
| 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) { |
nothing calls this directly
no test coverage detected