Hi,
I am totally new to neo4j. I want to create nodes via python,
containing links to images on the file system/LAN
I was able to create an click-able link to an image via:
b = Node("Person", name="Bob", age=44, image = '<img src="https://domain/the_image.jpg">')
But transfering this syntax to 'file' does not work:
a = Node("Person", name="Alice", age=33, image = '<img src="file:D:\the_image.jpg">')
Altougth - I am using chrome - is able to open the file via file:D:\the_image.jpg
I hope I made myself clear.
with kind regards,
help appreciated