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
Node.js
I'd like to write this query, but the Node.js client does not support it.
MATCH (n)-[r*1..3]-(m) WHERE n.`label` IN $primaryKeyValues AND m.`label` IN $primaryKeyValues RETURN n, r, m;
Example JS code:
const params = {myValues: ["1", "2", "3"]} const preparedStatement = await conn.prepare(query); const queryResult = await conn.execute(preparedStatement, params);
I get this error:
Error: The value of each parameter must be a boolean, number, string, Date or BigInt
Without parameters, the query works:
match (n)-[r*1..3]-(m) where n.label IN ["a", "b", "c"] and m.label IN ["a", "b", "c"] return n, r, m;
The text was updated successfully, but these errors were encountered:
mewim
No branches or pull requests
API
Node.js
Description
I'd like to write this query, but the Node.js client does not support it.
Example JS code:
I get this error:
Without parameters, the query works:
The text was updated successfully, but these errors were encountered: