d14a4b69ab
Summary: Query Size Limit in Python, Java, JavaScript Reviewers: mferencevic, mislav.bradac, teon.banek Reviewed By: mferencevic, teon.banek Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D508
22 lines
273 B
Bash
Executable File
22 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
NODE=nodejs
|
|
NPM=npm
|
|
|
|
if ! which $NODE >/dev/null; then
|
|
echo "Please install Node.JS!"
|
|
exit 1
|
|
fi
|
|
|
|
if ! which $NPM >/dev/null; then
|
|
echo "Please install NPM!"
|
|
exit 1
|
|
fi
|
|
|
|
$NPM install neo4j-driver
|
|
|
|
$NODE basic.js
|
|
$NODE max_query_length.js
|