Sanity App SDK
    Preparing search index...

    Interface ReplyToCommentOptionsBeta

    interface ReplyToCommentOptions {
        commentId?: string;
        dataset?: string;
        documentId: string;
        documentType: string;
        fieldPath?: string | Path;
        liveEdit?: boolean;
        message: CommentMessage;
        parentCommentId: string;
        perspective?: ReleasePerspective | ClientPerspective;
        projectId?: string;
        resource?: DocumentResource;
        source?: DocumentResource;
        status?: CommentStatus;
        threadId?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    commentId?: string
    dataset?: string
    documentId: string
    documentType: string
    fieldPath?: string | Path

    Only needed when the parent is not loaded.

    liveEdit?: boolean

    Indicates whether this document uses liveEdit mode. When true, the document does not use the draft/published model and edits are applied directly to the document.

    parentCommentId: string

    The comment being replied to. Replies to a reply join the same thread.

    perspective?: ReleasePerspective | ClientPerspective
    projectId?: string
    resource?: DocumentResource

    Explicit resource object to use for this operation.

    Use resource instead.

    status?: CommentStatus

    Required when the parent is not loaded.

    threadId?: string

    Only needed when the parent is not loaded, such as following a deep link.