Skip to main content

@rtorcato/supabase-common / PostgrestListLike

Interface: PostgrestListLike<T>

Defined in: pagination.ts:7

A list result that may also carry PostgREST's count (populated when the query was built with .select('*', { count: 'exact' }) or similar).

Extends

Type Parameters

T

T

Properties

count?

optional count?: number | null

Defined in: pagination.ts:8


data

data: T[] | null

Defined in: unwrap.ts:20

Inherited from

PostgrestLike.data


error

error: PostgrestErrorLike | null

Defined in: unwrap.ts:21

Inherited from

PostgrestLike.error