-
First of all, thank you for this great project! I currently get the following error message:
This is my code: public getTaskById(
id: string,
): Result<QueryObserverResult<Task | undefined, Error>> {
return this.#query({
queryKey: ['tasks', id],
queryFn: () => this.tasksService.getTaskById(id),
});
} As you can see, I am searching an entity tasks for a task with a specific id. If this item does not exist, |
Beta Was this translation helpful? Give feedback.
Answered by
robingenz
Mar 4, 2024
Replies: 1 comment 1 reply
-
The error is coming from the original library so I would try to find the answer there. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Done, in case anyone else is looking for it: TanStack/query#7020 (comment)