I am using jupyter notebook and ipython-cypher but since neo4J version 3.0 has a mandatory password change I seem not to be able to use the %cypher magic... (single % ... %%cypher works as I can pass the connection url on the first line)
results = %cypher MATCH (person:Person)-[:LIKES]->(drink:Drink) \
RETURN person.name AS name, drink.name AS drink
df = results.get_dataframe()
df
Obviously gives:
StatusException: Code [401]: Unauthorized. No permission -- see authorization schemes.
Authorization Required
So HOW do I pass the connection URL with the user/pwd combi in this case? (%%cypher works ok)