React Query and Server Actions Don't Mix: How API Routes Saved the Day
While working on a feature that fetched data using React Query in a Next.js App Router project, I came across an issue where some queries were stuck in the loading state indefinitely. After a bit of digging, I discovered that the root cause was related to how server actions behave in Next.js — and how they can’t be called directly from the client. In this post, I’ll explain the problem, how I investigated it, and how Next.js API Routes helped solve it.

While working on a feature that fetched data using React Query in a Next.js App Router project, I came across an issue where some queries were stuck in the loading
state indefinitely. After a bit of digging, I discovered that the root cause was related to how server actions behave in Next.js — and how they can’t be called directly from the client.
In this post, I’ll explain the problem, how I investigated it, and how Next.js API Routes helped solve it.