Circle V2 API Docs
    Preparing search index...
    listComments: QueryProcedure<
        {
            input: { aiFeedbackId: string };
            meta: object;
            output: {
                comments: {
                    ai_feedback_id: string & { __brand: "AiFeedbackId" };
                    author_email: string | null;
                    author_first_name: string | null;
                    author_last_name: string | null;
                    body: string;
                    created_at: DbDate;
                    created_by: string & { __brand: "UserId" } | null;
                    edited_at: string & { __brand: "DbDate" } | null;
                    id: AiFeedbackCommentId;
                }[];
            };
        },
    > = ...

    The comment thread on a feedback item, oldest first.