所以我试图将movieLens数据集加载到neo4j图形中。有三个节点:USER,MOVIE和GENRE,两个边缘:Has_rated和Is_Genre。我已经成功加载了所有三个节点和Is_genre关系。但是我很难为Has_rated创建关系。当我运行查询以创建Has_rated关系时,没有任何反应。它可以编译,但我没有收到错误,但没有响应。这是我正在运行的查询(我正在使用py2neo):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/comment_bg"
android:orientation="vertical">
<EditText
android:id="@+id/list_item_post_edittext_add_comment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/layout_margin_10"
android:background="@drawable/comment_bg"
android:drawableEnd="@mipmap/ic_send_dark_48"
android:drawablePadding="@dimen/layout_margin_10"
android:drawableRight="@mipmap/ic_send_dark_48"
android:hint="Add a Comment..."
android:inputType="text"
android:padding="@dimen/layout_margin_10"
android:textColor="@color/colorPrimaryDark"
android:textColorHint="@color/colorGray"
android:textSize="12sp" />
</LinearLayout/>
你们知道为什么会这样吗?