Django queries, generic content_types - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:36:20Z http://stackoverflow.com/feeds/question/1079629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1079629/django-queries-generic-contenttypes 0 Django queries, generic content_types interstar 2009-07-03T14:32:59Z 2009-07-03T14:57:05Z <p>I have a question about django content_types</p> <p>In the example of filtering a QuerySet for a generic content type on <a href="http://www.djangoproject.com/documentation/models/generic_relations/" rel="nofollow">http://www.djangoproject.com/documentation/models/generic_relations/</a> there are the following lines.</p> <pre><code>ctype = ContentType.objects.get_for_model(quartz) TaggedItem.objects.filter(content_type__pk=ctype.id, object_id=quartz.id) </code></pre> <p>Can anyone explain what content_type__pk means? </p> <p>Does the __ mean that there's an indirection going on? What does that mean in the context of the left-hand side of a match in the filter? </p> <p>I see that in the model definition </p> <pre><code>content_type = models.ForeignKey(ContentType) </code></pre> <p>but when translated into the database there is no field called content_type, but there is a content_type_id ... so is it that content_type__pk actually translates into content_type_id? And if so, why didn't they use this in the filter example?</p> http://stackoverflow.com/questions/1079629/django-queries-generic-contenttypes/1079667#1079667 1 Answer by drozzy for Django queries, generic content_types drozzy 2009-07-03T14:43:52Z 2009-07-03T14:43:52Z <p>No, it is the <em>TaggedItem</em> model that has a field of type ContentType, which is called <strong>content_type</strong>.</p> <p>Each model has a <a href="http://docs.djangoproject.com/en/dev/ref/models/instances/#django.db.models.Model.pk" rel="nofollow">primary key</a> to which you refer by "pk". Most of the time it IS the "id" field. But <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#primary-key" rel="nofollow">sometimes it is not</a>.</p> <p>In order to be consistent about it you can refer to id field as the pk. So when you are saying <strong>filter(content_type__pk=...</strong> it is similar to <strong>filter(content_type__id...</strong> </p> <p>The double underscore (__) means a reference to field of that model. You can keep stacking these:</p> <pre><code>Car.objects.filter(category__supercategory__name = "Nice Cars") </code></pre> <p>if you had a model Car with a foreign key to Category, which in turn had foreign key to SuperCategory which had a field named <strong>name</strong>. </p> <p>Anyone correct me if I am wrong.</p> http://stackoverflow.com/questions/1079629/django-queries-generic-contenttypes/1079729#1079729 0 Answer by Daniel Roseman for Django queries, generic content_types Daniel Roseman 2009-07-03T14:57:05Z 2009-07-03T14:57:05Z <p>If you don't understand Django's double-underscore lookup notation, you need to read up on queries generally before delving into the generic relations. This is basic, and fundamental to all Django queries. Don't try to run before you can walk.</p> <p>Start with the <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#lookups-that-span-relationships" rel="nofollow">documentation</a> for lookups across relationships.</p>