0 votes
in Neo4j by

Can you store images in Neo4j?

1 Answer

0 votes
by
You have several options: As @Christophe Willemsen suggested you, save the image on disk or on a web site and reference it using a URL. Save it in byte[] array as a property. Save the image in base64 using a Data URI (as String).
...