| Contact | Donate | Imprint |
| Comment | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Comment | ||
| (2) IsDeleted | BOOL | Comment | ||
| (3) IsPinned | BOOL | Comment | ||
| (4) ParentComment | LONG | Comment | ||
| (5) Post | LONG | Comment | Post | UserAccountModule |
| (6) Text | STRING | Comment | ||
| (7) UpdatedAt | DATE | Comment | ||
| (8) UserAccount | LONG | Comment | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /notification/comment/{id} | findAllNotificationOfComment(id) | ReelModule | GET | Comment Notification |
| (2) /comment/post/{id} | findAllCommentOfPost(id) | StoryModule | GET | Post Comment |
| (3) /comment/{id} | findCommentById(id) | StoryModule | GET | Comment |
| (4) /report/comment/{id} | findAllReportOfComment(id) | StoryModule | GET | Comment Report |
| (5) /comment | findAllComment() | StoryModule | GET | Comment |
| (6) /comment/{id} | updateCommentById(comment) | StoryModule | PUT | Comment |
| (7) /comment/{id} | deleteCommentById(id) | StoryModule | DELETE | Comment |
| (8) /comment/useraccount/{id} | findAllCommentOfUserAccount(id) | StoryModule | GET | UserAccount Comment |
| (9) /comment | insertComment(comment) | StoryModule | POST | Comment |
| (10) /commentlike/comment/{id} | findAllCommentLikeOfComment(id) | UserAccountModule | GET | Comment CommentLike |
Example:
final Comment comment = (Comment) invokeModule(STORY_MODULE + "/comment/" + id, Comment.class);| Contact | Donate | Imprint |