<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt" -->

---
title: Full-Text Search with Firebase Data Connect | daily.dev
description: Firebase Data Connect now supports full-text search via the @searchable directive on GraphQL schema fields. Annotating string fields with @searchable indexes...
canonical: https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Full-Text Search with Firebase Data Connect | daily.dev
og:description: Firebase Data Connect now supports full-text search via the @searchable directive on GraphQL schema fields. Annotating string fields with @searchable indexes...
og:url: https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt
og:image: https://api.daily.dev/og/posts/PaEd7loJT.png
og:image:alt: Full-Text Search with Firebase Data Connect
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Full-Text Search with Firebase Data Connect

**[Playful Programming](https://daily.dev/sources/playfulprogramming)** · 3 min read · 0 upvotes · 0 comments

## Summary

Firebase Data Connect now supports full-text search via the @searchable directive on GraphQL schema fields. Annotating string fields with @searchable indexes them for search, enabling queries across multiple columns simultaneously. The feature supports language configuration (defaulting to English) and a relevanceThreshold filter to surface only the most pertinent results. Under the hood it leverages PostgreSQL's full-text search capabilities through a streamlined GraphQL interface.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://playfulprogramming.com/posts/full-text-search-with-firebase-data-connect-40o5>

---

Tags: [#postgresql](https://daily.dev/tags/postgresql), [#graphql](https://daily.dev/tags/graphql), [#firebase](https://daily.dev/tags/firebase), [#full-text-search](https://daily.dev/tags/full-text-search)

[View this post on daily.dev](https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Full-Text Search with Firebase Data Connect","url":"https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt"},"datePublished":"2026-03-16T21:47:08.709Z","dateModified":"2026-03-16T21:54:35.575Z","description":"Firebase Data Connect now supports full-text search via the @searchable directive on GraphQL schema fields. Annotating string fields with @searchable indexes...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/8724626522540bc86622fd50eae93535?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/8724626522540bc86622fd50eae93535?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Playful Programming","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Playful Programming","logo":"https://media.daily.dev/image/upload/s--WoGOmY81--/f_auto,q_auto/v1773697582/logos/playfulprogramming?_a=BAMAMiiu0","url":"https://daily.dev/sources/playfulprogramming"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/full-text-search-with-firebase-data-connect-paed7lojt","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"postgresql,graphql,firebase,full-text-search","timeRequired":"PT3M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Playful Programming","item":"https://daily.dev/sources/playfulprogramming"},{"@type":"ListItem","position":3,"name":"Full-Text Search with Firebase Data Connect"}]}
```

