| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) FollowRelation | FollowRelation | HashtagModule | |
| (2) Hashtag | Hashtag | HashtagModule | |
| (3) Post | Post | UserAccountModule | |
| (4) PostHashtag | PostHashtag | HashtagModule | |
| (5) UserAccount | UserAccount | UserAccountModule | |
| (6) UserHashtagFollow | UserHashtagFollow | HashtagModule |
| FollowRelation | HashtagModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | FollowRelation | ||
| (2) Followed | LONG | FollowRelation | UserAccount | UserAccountModule |
| (3) Follower | LONG | FollowRelation | UserAccount | UserAccountModule |
| (4) IsCloseFriend | BOOL | FollowRelation |
Example:
final FollowRelation followrelation = (FollowRelation) invokeModule(HASHTAG_MODULE + "/followrelation/" + id, FollowRelation.class);| Hashtag | HashtagModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Hashtag | ||
| (2) Description | STRING | Hashtag | ||
| (3) IsBanned | BOOL | Hashtag | ||
| (4) Name | STRING | Hashtag |
Example:
final Hashtag hashtag = (Hashtag) invokeModule(HASHTAG_MODULE + "/hashtag/" + id, Hashtag.class);| PostHashtag | HashtagModule |
| Property | Type | Entity | Reference | Module |
| (1) Hashtag | LONG | PostHashtag | Hashtag | HashtagModule |
| (2) Post | LONG | PostHashtag | Post | UserAccountModule |
Example:
final PostHashtag posthashtag = (PostHashtag) invokeModule(HASHTAG_MODULE + "/posthashtag/" + id, PostHashtag.class);| UserHashtagFollow | HashtagModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | UserHashtagFollow | ||
| (2) Hashtag | LONG | UserHashtagFollow | Hashtag | HashtagModule |
| (3) UserAccount | LONG | UserHashtagFollow | UserAccount | UserAccountModule |
Example:
final UserHashtagFollow userhashtagfollow = (UserHashtagFollow) invokeModule(HASHTAG_MODULE + "/userhashtagfollow/" + id, UserHashtagFollow.class);| Contact | Donate | Imprint |