cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Has anyone successfully implemented Django with NeoModel?

vignes_k
Node Link

I am trying to create an application that will accept input to create nodes and relationships using Django and Neo Model. My challenge is that integrating form submission in CBV to create this. Tried hardcoding the values when executing a model.py and that seems to work but it isnt dynamic.
If anyone has successfully done this it would be great if you could share some pointers.

1 REPLY 1

Yes, I have been using Django and Neo model together since 2016 in various production builds and start-ups. The first thing I would say is to avoid using form based CBVs as they do not work out of the box. I wrote my own wrapper to make a GraphListView but still need to look into making the others work but you will have issues due the lack of Meta and the way relationships work. You'll need to handle a lot more yourself