Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6638737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:28:17+00:00 2026-05-25T23:28:17+00:00

I’m having trouble using db.ReferenceProperty with PolyModel in GAE. If I have two models

  • 0

I’m having trouble using db.ReferenceProperty with PolyModel in GAE. If I have two models derived from a base PolyModel, and each one has a reference to another “container” model, the collections on the container contain both PolyModels, not just the one as you would expect. Here is a test case that shows the problem:

from google.appengine.ext import  db
from google.appengine.ext.db import polymodel

class MyContainer(db.Model):
    name = db.StringProperty(default='mycontainer', multiline=False)

class MyBaseModel(polymodel.PolyModel):    
    name = db.StringProperty(default='mybasemodel', multiline=False)

class MyModelOne(MyBaseModel):
    container = db.ReferenceProperty(MyContainer, collection_name='model_ones')

class MyModelTwo(MyBaseModel):     
    container = db.ReferenceProperty(MyContainer, collection_name='model_twos')

print "Beginning test.\n"
c = MyContainer(name="Container")
c.put()
one = MyModelOne(name="One", container=c)
two = MyModelTwo(name="Two", container=c)
one.put()
two.put()

print "Ones:"
for o in c.model_ones:
    print o.name
print "\nTwos:"
for o in c.model_twos:
    print o.name

And the output:

Beginning test.

Ones:
One
Two

Twos:
One
Two

Am I missing something in setting up my ReferenceProperties, or is this expected behavior?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T23:28:17+00:00Added an answer on May 25, 2026 at 11:28 pm

    So looking at the SDK source, it appears that _ReverseReferenceProperty (which translates collections into Query objects) doesn’t make any attempt to handle PolyModels. There are a few related complaints on the issue tracker, here and here.

    IMO, if this is a known limitation it ought to be mentioned somewhere in the PolyModel docs.

    Edit: The collection-less workaround would be something like this:

    for o in MyModelOne.all().filter('container =', c):

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
We're building an app, our first using Rails 3, and we're having to build
I have a text area in my form which accepts all possible characters from
I'm having trouble keeping the paragraph square between the quote marks. In firefox the
I have thousands of HTML files to process using Groovy/Java and I need to
I have a bunch of posts stored in text files formatted in yaml/textile (from
I'm making a simple page using Google Maps API 3. My first. One marker
That's pretty much it. I'm using Nokogiri to scrape a web page what has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.