@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias PrimitiveFieldDetails

    If the path points to a primitive field, this is returned.

    type PrimitiveFieldDetails = {
        fieldName: string;
        immutable: boolean;
        primitive:
            | NexusLocationPrimitive
            | NumberPrimitive
            | StringPrimitive
            | BooleanPrimitive
            | BytesPrimitive;
        targetTypes: TargetTypeValue[];
        type: "primitive";
    }
    Index

    Properties

    fieldName: string

    the field name

    immutable: boolean

    whether the primitive is immutable.

    primitive:
        | NexusLocationPrimitive
        | NumberPrimitive
        | StringPrimitive
        | BooleanPrimitive
        | BytesPrimitive

    more infos on the exact primitive located there.

    targetTypes: TargetTypeValue[]

    target types of this primitive.

    type: "primitive"