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.

Mar 29, 2025 - 21:03
 0
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.