Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Does it support fuzzy search on multiple and related fields? #1

@Tragio

Description

@Tragio

Hi @mbi 👋

First, thank you for your incredible work.

While exploring search solutions that don't rely on Meilisearch, Typesense, or similar external dependencies, I came across your integration and found it very promising. I have a couple of questions 🤔

  1. Does the fuzzy search work with related fields? For example, would it be able to search within user__addresses.street?
from django.contrib.auth.models import User
from django.db import models

class Address(models.Model):
    user = models.ForeignKey(User, on_delete=models.CASCADE, related_name='addresses')
    street = models.CharField(max_length=255)
    city = models.CharField(max_length=100)
    state = models.CharField(max_length=100)
    country = models.CharField(max_length=100)
    zip_code = models.CharField(max_length=20)
  1. Can multiple fields be configured for fuzzy search simultaneously?

Thank you again for your time and effort on this project. 🚀

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions