Google App Engineは、「BadRequestError:トランザクション内で許可されるのは祖先クエリのみ」を返します。これは、コードのコンテキストではどういう意味ですか?
class Counter(db.Model):
totalRegistrations = db.IntegerProperty(default=0)
@db.transactional
def countUsers():
counter = Counter.all().get()
counter.totalRegistrations = counter.totalRegistrations + 1
counter.put()
i = counter.totalRegistrations
return i
print countUsers()