Functions for managing individual comments.
Comments belong to threads, which are attached to records or list entries.
Use Attio.Threads to create a new thread with an initial comment.
Requires the comment:read scope for read operations and
comment:read-write for mutations.
Summary
Functions
@spec delete(Attio.Client.t(), String.t()) :: {:ok, map()} | {:error, term()}
Deletes a comment.
@spec get(Attio.Client.t(), String.t()) :: {:ok, map()} | {:error, term()}
Gets a single comment by its ID.
@spec update(Attio.Client.t(), String.t(), map()) :: {:ok, map()} | {:error, term()}
Updates a comment's content.