Skip to content

Full-Text Search

const results = await pulsabase.from(Article)
.whereFts(['title', 'body'], 'typescript tutorial')
.find();
const results = await pulsabase.from(Article)
.whereFts(['title', 'body'], 'développement web', { language: 'french' })
.find();

Supported languages: english, french, german, spanish, portuguese, and all PostgreSQL dictionaries.