0
votes
2answers
43 views
What is simplest way join __contains and __in?
I am doing tag search function, user could observe a lot of tags, I get it all in one tuple, and now I would like to find all text which include at least one tag from the list.
Sym …
1
vote
2answers
22 views
Django annotate to show aggregate sums and counts pre-slicing of the QuerySet
I have a fairly complex QuerySet which users a good deal of annotated values to get some counts and sums across the entire record set. The resulting rows are grouped and for each g …
1
vote
1answer
42 views
django: time range based aggregate query
Hi there!
I have the following models, Art and ArtScore:
class Art(models.Model):
title = models.CharField()
class ArtScore(models.Model):
art = models.ForeignKey(Art)
…
4
votes
3answers
110 views
Django ORM: Optimizing queries involving many-to-many relations
I have the following model structure:
class Container(models.Model):
pass
class Generic(models.Model):
name = models.CharacterField(unique=True)
cont = models.ManyToM …
2
votes
1answer
36 views
How can I get previous and next objects from a filtered, ordered queryset?
I have a page based on a model object, and I want to have links to the previous and next pages. I don't like my current solution because it requires evaluating the entire queryset …
0
votes
0answers
12 views
Order queryset on calculated field
I have the following problem. I have these 3 models
class Model1(models.Model):
name = models.CharField()
class Model2(models.Model):
user = models.ForeignKey(User)
…
1
vote
2answers
540 views
Django filter — How do I go about filtering for emply or NULL names in a queryset
Hi,
I have first_name, last_name & alias (optional) which I need to search for.
So, I need a query to give me all the names that have an alias set.
Only if I could do:
Name …
0
votes
2answers
41 views
django queryset: how to order by a (backwards) related field?
Hi folks!
In this situation I have two models, Comment and Score. The relationship is defined in the Score model, like so:
class Comment(models.Model):
content = TextField()
…
0
votes
1answer
38 views
django queryset excluding entries in second model
Hello,
I'm making a little vocabulary-quiz app, and the basic model for a word is this:
class Word(models.Model):
id = models.AutoField(primary_key=True)
word = models.Ch …
1
vote
2answers
77 views
Get records before and after current selection in Django query
It sounds like an odd one but it's a really simple idea. I'm trying to make a simple Flickr for a website I'm building. This specific problem comes when I want to show a single pho …
1
vote
0answers
73 views
Following a foreign-key of a commented item in a Django Queryset
Dear all,
I'm working on a Django application allowing one to comment either a Text, its Paragraphs or the comments themselves. I'm using the Comment app bundled with Django, and …
2
votes
1answer
128 views
Django - How to get only 2 object for a combination of fields with a queryset
If I have
Model.objects.all()
I want to get only one object for any content_object=foo, object_id=N. How can I do that? Say I am ordering by -datetime. If I can get only one …
1
vote
5answers
213 views
Django-queryset get one object per field=foo
I have a basic FK to user, call it owner
class Baz(models.Model):
owner = models.ForeignKeyField(User)
....
....
Now, with a queryset of Baz's, is there something …
2
votes
1answer
73 views
Django: queryset filter for *all* values from a ManyToManyField
Hi (sorry for my bad english :p)
Imagine these models :
class Fruit(models.Model):
# ...
class Basket(models.Model):
fruits = models.ManyToManyField(Fruit)
Now I would …
1
vote
2answers
40 views
Get a queryset of objects through an intermediary model
I want get all of the Geom objects that are related to a certain content_object (see the function I'm trying to build at the bottom, get_geoms_for_obj()
class Geom(models.Model):
…
