django model query code example
Example 1: django objects.create()
SomeModel.objects.create(firstname='ricky', lastname='ticky')
Example 2: django q objects
from django.db.models import Q
obj, created = Person.objects.filter(
Q(first_name='Bob') | Q(first_name='Robert'),
).get_or_create(last_name='Marley', defaults={'first_name': 'Bob'})
Example 3: query set
A QuerySet is a list of a dictionary of objects in your database.
Example 4: and in django query filter
Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)
Example 5: objects.filter django
>>> Entry.objects.filter(blog_id=4)
Example 6: create django object
Author.objects.create(name="Joe")