You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -266,7 +276,7 @@ async function getNodesProperties() {
266
276
267
277
asyncfunctioncheckEdgeDirectionCardinality(d){
268
278
letqueryFrom=`MATCH (from:${d.from})-[r:${d.edge.label}]->(to:${d.to}) WITH to, count(from) as rels WHERE rels > 1 RETURN rels LIMIT 1`;
269
-
loggerLog(`Checking edge direction cardinality: ${queryFrom}`);
279
+
loggerLog(`Checking edge direction cardinality: ${queryFrom}`);
270
280
letresponseFrom=awaitqueryNeptune(queryFrom);
271
281
letresultFrom=responseFrom.results[0];
272
282
letqueryTo=`MATCH (from:${d.from})-[r:${d.edge.label}]->(to:${d.to}) WITH from, count(to) as rels WHERE rels > 1 RETURN rels LIMIT 1`;
@@ -344,7 +354,7 @@ async function getNeptuneSchema(quiet) {
344
354
try{
345
355
awaitgetAWSCredentials();
346
356
}catch(error){
347
-
msg="There are no AWS credentials configured. \nGetting the schema from an Amazon Neptune database with IAM authentication works only with AWS credentials.";
357
+
msg="There are no AWS credentials configured. \nGetting the schema from an Amazon Neptune database with IAM authentication works only with AWS credentials.";
0 commit comments