Questions tagged [neo4django]

Neo4django is a Django ORM integration of the Neo4j graph database

neo4django is an Object Graph Mapper that let’s you use familiar Django model definitions and queries against the Neo4j graph database.

Links

55 questions
0
votes
1 answer

ImageProperty in Neo4Django?

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…
Tikue Anazodo
  • 319
  • 1
  • 2
  • 10
0
votes
1 answer

Django template rendered partially (incorrectly)

I am using Django with Neo4j as DB (nep4django). I have a primitive template to display the list of 3 cities, like I do it with Django python shell: In [8]: from mydb.models import Place In [9]: cities = Place.objects.all() In [10]: for city in…
user3241376
  • 407
  • 7
  • 20
0
votes
1 answer

Admin Interface setup impossible following neo4django manual

I am following the Neo4django manual: http://neo4django.readthedocs.org/en/latest/auth.html and trying to setup Admin's interface. I am working under Mac OS X. Before I started setting up this interface, I had my server running and everything…
user3241376
  • 407
  • 7
  • 20
0
votes
0 answers

Dajaxice callback function called twice

I'm using django-dajaxice-ng package (django-dajaxice fork for Django 1.5 and above, since I use Django 1.5.4), and I have this strange issue. Sometimes the callback function is called twice or even more. Simple usage: ... {% load…
tonjo
  • 1,394
  • 1
  • 14
  • 27
0
votes
1 answer

Error while building GremlinPlugin for Neo4j Server

I try to explore how neo4j could be integrated with django project and launch admin page in my django project with dependence on neo4django. But seems it requires GremlinPlugin extension in neo4j server. Using this documentation I try to build jar…
user2570027
  • 334
  • 2
  • 10
0
votes
0 answers

Django 1.5.4 error_messages in ModelForm

I have a very simple ModelForm subclass: class UserPrefsForm(forms.ModelForm): class Meta: model = User fields = ['first_name','last_name','username'] When I try to save the form in my view (only the post function here): def…
tonjo
  • 1,394
  • 1
  • 14
  • 27
0
votes
1 answer

Define node with a unique property in neo4django

I've defined a graph structure in my project that currently contains 2 type of nodes: User and Post. I have installed neo4django on Django framework and define models.py like below: from neo4django.db import models class User(models.NodeModel): …
mojibuntu
  • 307
  • 3
  • 16
0
votes
1 answer

Connection refused error in django when use neo4django (neo4j for django)

I am working on django project that uses neo4j database.this is a section of my models.py file: models.py: from neo4django.db import models class User(models.NodeModel): firstName = models.StringProperty(max_length=20) lastName =…
mojibuntu
  • 307
  • 3
  • 16
0
votes
1 answer

ERROR:'Settings' object has no attribute 'NEO4J_DATABASES' when add neo4j db for django project

I want to have two Databases in my social network Django project one realtional and one graphbased.i choose Mysql and Neo4j.my settings.pyfile in my project is: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME':…
djangoman
  • 3
  • 3
0
votes
1 answer

Labelling Neo4j database using Neo4django

This question is related to the github issue of Neo4django. I want to create multiple graphs using Neo4j graph DB from Django web framework. I'm using Django 1.4.5, neo4j 1.9.2 and neo4django 0.1.8. As of now Neo4django doesn't support labeling but…
1 2 3
4