We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating a related model with a get_or_create() on relationships. Example (by Matt himself):
pete = patrick.friends.get_or_create(name='Pete')
Create a new person "Pete" and connect to patrick.
The text was updated successfully, but these errors were encountered:
I should have specified, create a new Person or find one if exists.
Sorry, something went wrong.
Thanks for raising this @tonjo, I'm going to try to get it in this coming release.
I've started a campaign to fund the completion of this release, including this issue and Django 1.5+ support. Check it out at https://www.bountysource.com/fundraisers/423-neo4django-0-1-9 if you're interested.
No branches or pull requests
Creating a related model with a get_or_create() on relationships.
Example (by Matt himself):
pete = patrick.friends.get_or_create(name='Pete')
Create a new person "Pete" and connect to patrick.
The text was updated successfully, but these errors were encountered: