コード例 #1
0
 public void UnFollow(string SourceUserId, string targetUserId)
 {
     try
     {
         _graphDB.DeleteRelationship(SourceUserId, targetUserId, "Follow");
     }
     catch (Exception)
     {
         throw new FaildToConnectDbException();
     }
 }
コード例 #2
0
 public void UnLikePost(string userId, string postId)
 {
     _graphDB.DeleteRelationship(userId, postId, "LikePost");
 }