アプリにParseを使用しています。他のテーブルへのポインタとして設定された列を持つテーブルをクエリしたいと思います。クエリは次のとおりです。
ParseQuery query = new ParseQuery("CategoryAttribute");
query.whereEqualTo("categoryId", categoryId);
query.findInBackground(new FindCallback() {
@Override
public void done(List<ParseObject> categoryAttributes, ParseException e) {
if (e == null) {
for (int i = 0; i < categoryAttributes.size(); i++){
String atributeCategoryId = categoryAttributes.get(i).getString("categoryId");
String attributeKey = categoryAttributes.get(i).getString("attributeKey");
String attributeValue = categoryAttributes.get(i).getString("attributeValue");
setCategoryAtributeRow(atributeCategoryId, attributeKey, attributeValue);
}
} else {
Log.d("score", "Error: " + e.getMessage());
}
}
});
したがって、categoryId
列は他のテーブルへのポインタです。他の列は正常に機能します。APIとガイドをスキャンしようとしましたが、必要な解決策が見つかりませんでした。助けていただければ幸いです!