# Comment
The `comment` object describes an article comment, including its content, author, and metadata.
## Usage Example
```liquid
{%- comment -%} List all comments for an article {%- endcomment -%}
{% for comment in article.comments %}
-
{{ comment.author }}: {{ comment.comment }}
Posted on {{ comment.created_at | date: '%Y-%m-%d' }}
{% if comment.is_author %} (Author){% endif %}
{% endfor %}
```
## Properties
### id
Returns the unique id for this comment.
### customer
Return the [customer](/reference/liquid/objects/customer/) associated with comment if any.
### is_author
Tells if the comment poster was the blog author.
### parent_count
Returns the amount of parent comments
### comments
Retrieve the comments made to this comment
### comment
Retrieve the actual comment.
### created_at
Returns the timestamp when the comment was created.
### updated_at
Returns the timestamp when the comment was updated or modified.