Skip to content

Search

Entering a plain value with no field prefix searches every text column:

john

Use field:value to target a column:

name:john

The pii and extra columns store JSON. Use dot notation to reach into them:

pii.email:@gmail.com
pii.phone:5551234
extra.lat:40.7

Wrap the value in quotes for an exact match instead of a LIKE wildcard:

name:"John Smith"
pii.email:"john@example.com"

Use * as the value to match any non-null entry:

pii.email:*
extra.lat:*

Separate multiple terms with a comma. All terms are applied as AND conditions:

name:john, pii.email:@gmail.com
name:"Jane Doe", pii.home_address:Texas, extra.lat:*
FieldTypeDescription
uuidtextUnique identifier for the record
nametextFull name
socialsJSONSocial media handles and profile links
pii.emailJSON fieldEmail address
pii.phoneJSON fieldPhone number (10-digit normalised)
pii.home_addressJSON fieldPhysical address
extra.latJSON fieldLatitude (for map support)
extra.lngJSON fieldLongitude (for map support)