Overview

Summary

ContactDonateImprint


Appendix E-11: COMMENT (UI prompt)


CommentStoryModuleInstagram

Properties (8)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATEComment
(2) IsDeletedBOOLComment
(3) IsPinnedBOOLComment
(4) ParentCommentLONGComment
(5) PostLONGCommentPostUserAccountModule
(6) TextSTRINGComment
(7) UpdatedAtDATEComment
(8) UserAccountLONGCommentUserAccountUserAccountModule


Module Interfaces (10)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /notification/comment/{id}findAllNotificationOfComment(id)ReelModuleGETComment Notification
(2) /comment/post/{id}findAllCommentOfPost(id)StoryModuleGETPost Comment
(3) /comment/{id}findCommentById(id)StoryModuleGETComment
(4) /report/comment/{id}findAllReportOfComment(id)StoryModuleGETComment Report
(5) /commentfindAllComment()StoryModuleGETComment
(6) /comment/{id}updateCommentById(comment)StoryModulePUTComment
(7) /comment/{id}deleteCommentById(id)StoryModuleDELETEComment
(8) /comment/useraccount/{id}findAllCommentOfUserAccount(id)StoryModuleGETUserAccount Comment
(9) /commentinsertComment(comment)StoryModulePOSTComment
(10) /commentlike/comment/{id}findAllCommentLikeOfComment(id)UserAccountModuleGETComment CommentLike





Example:

final Comment comment = (Comment) invokeModule(STORY_MODULE + "/comment/" + id, Comment.class);
if (comment != null) {
    final UserAccount useraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + comment.getUserAccount().getId(), UserAccount.class);
    if (useraccount1 != null) {
    }
    final Post post2 = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + comment.getPost().getId(), Post.class);
    if (post2 != null) {
        final Location location3 = (Location) invokeModule(FEATURE_FLAG_MODULE + "/location/" + post2.getLocation().getId(), Location.class);
        if (location3 != null) {
        }
        final UserAccount useraccount4 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + post2.getUserAccount().getId(), UserAccount.class);
        if (useraccount4 != null) {
        }
    }
}
return comment;


Overview

Summary

ContactDonateImprint