fraci
    Preparing search index...

    Interface PrismaFraciFieldOptionsBinary<Group>

    The options for the binary fractional index fields.

    { type: "binary", group: ["userId"] }
    
    interface PrismaFraciFieldOptionsBinary<Group extends string = string> {
        group: readonly Group[];
        type: "binary";
    }

    Type Parameters

    • Group extends string = string

      The type of the name of the group fields

    Index

    Properties

    Properties

    group: readonly Group[]

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

    type: "binary"

    The type of the fractional index. Must be "binary" for binary fractional indices.