diff --git a/cartography/cli.py b/cartography/cli.py index 78ebc6886c..3d1b827ea7 100644 --- a/cartography/cli.py +++ b/cartography/cli.py @@ -100,6 +100,16 @@ def _build_parser(self): '.' ), ) + parser.add_argument( + '--neo4j-database', + type=str, + default=None, + help=( + 'The name of the database in Neo4j to connect to. If not specified, uses the config settings of your ' + 'Neo4j database itself to infer which database is set to default. ' + 'See https://neo4j.com/docs/api/python-driver/4.4/api.html#database.' + ), + ) # TODO add the below parameters to a 'sync' subparser parser.add_argument( '--update-tag', diff --git a/setup.py b/setup.py index ec70f92cd2..fddb09a67c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages from setuptools import setup -__version__ = '0.66.0' +__version__ = '0.66.1' setup(