0

In regular Django models I typically use an ImageField to represent and store image attributes, for example:

    image = models.ImageField(upload_to='folder')

I am using neo4django for a graph DB project and I notice that there is no 'ImageProperty' listed here https://github.com/scholrly/neo4django/blob/master/neo4django/db/models/init.py.

How do people typical handle image fields when using neo4django?

Tikue Anazodo
  • 319
  • 1
  • 2
  • 10

1 Answers1

2

Usually you store them in a blob storage like s3 or a filesystem and store only the references (e.g. URLs) in Neo4j.

Michael Hunger
  • 41,339
  • 3
  • 57
  • 80