Lists vectors in this index with pagination Convenience method that automatically includes bucket and index names
Public alpha: This API is part of a public alpha release and may not be available to your account type.
Listing options (bucket and index names automatically set)
const index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')
const { data } = await index.listVectors({
maxResults: 500,
returnMetadata: true
})