We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String qryNgql = "match (v:dev) return v;"; ResultSet devResutSet = sessionPool.execute(qryNgql ); for (int i = 0; i < trDeviceResutSet.rowsSize(); i++) { ResultSet.Record record = devResutSet .rowValues(i); Node node = record .get(0).asNode(); String vId = node.getId().asString();
String qryOtherNgql= "match (v:link{dev_id:'" + vId + "'}) return v;"; ResultSet otherResutSet = sessionPool.execute(qryOtherNgql); // 会在此处随机阻塞住 ......
}
The text was updated successfully, but these errors were encountered:
已解决
Sorry, something went wrong.
No branches or pull requests
String qryNgql = "match (v:dev) return v;";
ResultSet devResutSet = sessionPool.execute(qryNgql );
for (int i = 0; i < trDeviceResutSet.rowsSize(); i++) {
ResultSet.Record record = devResutSet .rowValues(i);
Node node = record .get(0).asNode();
String vId = node.getId().asString();
}
The text was updated successfully, but these errors were encountered: