@squidcloud/backend
    Preparing search index...

    Interface ApplyExtendString

    A property mutation that appends a value to the existing string.

    interface ApplyExtendString {
        fn: "extendString";
        type: "applyStringFn";
        value: string;
    }
    Index

    Properties

    Properties

    fn: "extendString"

    String function to extend the existing string.

    type: "applyStringFn"

    Specifies that the mutation applies a string function.

    value: string

    String value to append.