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
Community user usability report: If Neo4j creds or a driver are not provided, the error currently looks like:
/path/to/conda_env/lib/python3.8/site-packages/graphistry/plotter.py in cypher(self, query, params) 1504 res = copy.copy(self) 1505 driver = self._bolt_driver or PyGraphistry._config['bolt_driver'] -> 1506 with driver.session() as session: 1507 bolt_statement = session.run(query, **params) 1508 graph = bolt_statement.graph() AttributeError: 'NoneType' object has no attribute 'session'
It'd be more friendly to do something like:
if driver is None: raise ValueError('No bolt driver configured. Use register(bolt=...) to specify credentials or a driver.')
The text was updated successfully, but these errors were encountered:
Lands in 0.16.2 -- #209
Sorry, something went wrong.
No branches or pull requests
Community user usability report: If Neo4j creds or a driver are not provided, the error currently looks like:
It'd be more friendly to do something like:
The text was updated successfully, but these errors were encountered: