fraci
    Preparing search index...

    Interface PrismaFraciFieldOptionsString<Group>

    The options for the string fractional index fields.

    { group: ["userId"], lengthBase: "0123456789", digitBase: "0123456789" }
    
    interface PrismaFraciFieldOptionsString<Group extends string = string> {
        digitBase: string;
        group: readonly Group[];
        lengthBase: string;
        type?: "string";
    }

    Type Parameters

    • Group extends string = string

      The type of the name of the group fields

    Index

    Properties

    digitBase: string

    The character set used for representing digits in the fractional index.

    group: readonly Group[]

    The fields that define the grouping context for the fractional index. This is an array of field names.

    lengthBase: string

    The character set used for encoding the length of the integer part.

    type?: "string"

    The type of the fractional index. Must be "string" or undefined for string fractional indices.