+354
internal/db/postgres/comment_repo.go
···
···+comment.Content, comment.ContentFacets, comment.Embed, comment.ContentLabels, pq.Array(comment.Langs),+func (r *postgresCommentRepo) GetByURI(ctx context.Context, uri string) (*comments.Comment, error) {+func (r *postgresCommentRepo) ListByRoot(ctx context.Context, rootURI string, limit, offset int) ([]*comments.Comment, error) {+func (r *postgresCommentRepo) ListByParent(ctx context.Context, parentURI string, limit, offset int) ([]*comments.Comment, error) {+func (r *postgresCommentRepo) CountByParent(ctx context.Context, parentURI string) (int, error) {+func (r *postgresCommentRepo) ListByCommenter(ctx context.Context, commenterDID string, limit, offset int) ([]*comments.Comment, error) {