Retrieve individual comments and multiple comments efficiently with live object synchronization for iOS apps
Property | Type | Description |
---|---|---|
commentId | String | Unique identifier for the comment |
userId | String | ID of the user who created the comment |
postId | String | ID of the post this comment belongs to |
parentId | String? | ID of parent comment (for replies) |
text | String? | Text content of the comment |
createdAt | Date | When the comment was created |
editedAt | Date? | When the comment was edited (if applicable) |
reactionsCount | [String: Int] | Count of reactions by type |
childrenCount | Int | Number of reply comments |
Parameter | Type | Required | Description |
---|---|---|---|
commentId | String | Yes | Unique identifier of the comment to retrieve |