OBJECT

Comment

A type that describes a comment commited by an user in a feed

link GraphQL Schema definition

1type Comment {
2
3# The username that commited the comment
4author: String
5
6# Body text of the comment
7body: String
8
9# Date when comment was published in UNIX milliseconds
10date: String
11
12}