postgrest-js icon indicating copy to clipboard operation
postgrest-js copied to clipboard

Isomorphic JavaScript client for PostgREST.

Results 154 postgrest-js issues
Sort by recently updated
recently updated
newest added

# Feature request ## Is your feature request related to a problem? Please describe. The [`upsert`](https://supabase.com/docs/reference/javascript/upsert) method has an optional `onConflict` which is described in the docs as: > Comma-separated...

enhancement

# Bug report ```ts export type Json = | string | number | boolean | null | { [key: string]: Json } | Json[]; export interface Database { cadastro: {...

bug

# Bug report ## Describe the bug When I do a query with a nested query inside a nested query the type for the second nested properties is `unknown`. ##...

bug

# Feature request I considered opening a PR for this, but thought I should open it up for discussion first, because it would in fact be a breaking change. ##...

enhancement

# Feature request : How to handle timeouts This is my first project using Supabase, and I just realised that: - If I do an `upsert` with my wifi shut...

enhancement

Consider following generated types: ```typescript export interface Database { public: { Tables: { users_skills: { Row: { user_id: string; skill_id: number; }; }; users: { Row: { id: string; created_at:...

bug

Here is [Example link](https://supabase.com/docs/reference/javascript/select#:~:text=table%20is%20not-,filtered,-out.) from supabase docs. ``` const { data, error } = await supabase .from('cities') .select('name, countries(*)') .eq('countries.name', 'Estonia') ``` In above example **`countries.name`** shows error in types....

bug

# Feature request My use case is that I'd like to have the "in" operator but with the function of an "AND". So use-case is - get all posts that...

enhancement

## What kind of change does this PR introduce? This adds a possibility to pass any fetch options (e.g. `next` options to [fetch](https://nextjs.org/docs/app/api-reference/functions/fetch#optionsnextrevalidate) while building the query. ## What is...

# Bug report - [x] I confirm this is a bug with Supabase, not with my own application. - [x] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and...

bug