A snippet from the manual
==============
filter(property_operator, value)

    Adds a property condition filter to the query. Only entities with
properties that meet all of the conditions will be returned by the
query.

    Arguments:

    property_operator
        A string containing the property name and a comparison
operator. The name and the operator must be separated by a space, as
in: age > The following comparison operators are supported: < <= = >=
> (The not-equal (!=) and IN operators are not supported.)
==============

You forget the "comparison operator" in your filter statements.


2008/12/13 paptimus <papti...@gmail.com>:

> query = models.Ownership.all().filter('user', user),filter('deleted',
> False).order('-created_on').fetch(offset, amount)
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to