© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•4y ago•
8 replies
jeffreyhugh

Supabase.js Error 413 on `select`

I've got a fairly simple schema which is giving me a
413
413
when I try to query it.
...
  // 413
  const { data, error } = await supabaseClient
    .from<Row_Heartbeat>('heartbeats')
    .select('*')
    .eq('application_id', applicationID)
    .order('created_at', { ascending: false })
    .limit(27);

  if (error) {
    throw error;
  } else {
    return data;
  }
...
...
  // 413
  const { data, error } = await supabaseClient
    .from<Row_Heartbeat>('heartbeats')
    .select('*')
    .eq('application_id', applicationID)
    .order('created_at', { ascending: false })
    .limit(27);

  if (error) {
    throw error;
  } else {
    return data;
  }
...


The query works fine in the SQL editor (https://storage.queue.bot/t/930bm9voa.png).

There is no documentation on 413 in any docs, GitHub issues, or help channels on Discord. I have three questions

1) What does this error mean in the context of Supabase? I know HTTP 413 is "request too large"
2) How can I troubleshoot/fix the problem?
3) What caused the problem?
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Supabase Select Hackathon
SupabaseSSupabase / help-and-questions
5mo ago
Supabase Select Invitations
SupabaseSSupabase / help-and-questions
5mo ago
Critical dependency error with supabase-js
SupabaseSSupabase / help-and-questions
3y ago
egress error on supabase
SupabaseSSupabase / help-and-questions
4mo ago