@squidcloud/backend
    Preparing search index...

    Interface ValueUpdatePropertyMutation<Value>

    A value update property mutation.

    interface ValueUpdatePropertyMutation<Value = any> {
        type: "update";
        value: Value;
    }

    Type Parameters

    • Value = any
    Index

    Properties

    Properties

    type: "update"

    Specifies that the mutation updates a value.

    value: Value

    New value to be set.