AutoBE
    Preparing search index...

    Interface representing a GIN (Generalized Inverted Index) for full-text search.

    GIN indexes enable advanced PostgreSQL text search capabilities including fuzzy matching and partial text search using trigram operations. Essential for user-facing search features on text content.

    interface IGinIndex {
        fieldName: string;
    }
    Index

    Properties

    Properties

    fieldName: string

    Name of the text field to index for full-text search capabilities.

    Must be a string field in the model that contains searchable text. Examples from uploaded schemas: "nickname", "title", "body", "name" Used with PostgreSQL gin_trgm_ops for trigram-based fuzzy text search.