-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Hi,
Unfortunately the neo4j database in https://github.com/wagenrace/python_dep_local_graph has some quirks with case sensitivity. It seems that the Package column has a capitalized first letter on Windows, whereas it has a non-capitalized first letter on Linux. This leads to neo4j having a lower case package identifier on Linux (production) and the query breaking.
Proposed fix:
- Force lowercase on the identifiers on import somehow
- Change
MATCH (n:Package)-[:DEPENDS_ON*0..]->(m:Package)toMATCH (n:package)-[:DEPENDS_ON*0..]->(m:package)
in lineas this is currently the case in production.Line 31 in 8741ebc
MATCH (n:Package)-[:DEPENDS_ON*0..]->(m:Package)
Metadata
Metadata
Assignees
Labels
No labels