You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug When converting NetworkX graph to cypher queries, if the graph is populated with numpy objects the utility method to_cypher_value makes wrong conversions for numpy objects(arrays)
Expected behavior numpy array gets converted as array
GQLAlchemy version 1.3.2
Describe the bug When converting NetworkX graph to cypher queries, if the graph is populated with numpy objects the utility method to_cypher_value makes wrong conversions for numpy objects(arrays)
Expected behavior numpy array gets converted as array
Steps to reproduce
Expected result
CREATE ( {Key: ['Value1', 'Value2'], id: 1});
Actual result
CREATE ( {Key: '['Value1' 'Value2']', id: 1});
The text was updated successfully, but these errors were encountered: