When I try to run a query on the datastore ordered by date I get the following error:
NeedIndexError: no matching index found.
The suggested index for this query is:
- kind: Message
properties:
- name: author
- name: ref
- name: date
The query runs without error if I don't try to order by date. The appengine console under datastore indexes says:
author ▲ , ref ▲ , date ▼
Serving
What am I doing wrong? How can I run my query ordered by date? Thanks!
Here is my entity definition:
from google.appengine.ext import ndb
class Message(ndb.Model):
subject = ndb.StringProperty()
body = ndb.TextProperty()
date = ndb.DateTimeProperty(auto_now_add=True)
ref = ndb.StringProperty( required=True )
author = ndb.KeyProperty(required=True)
and this is the query that fails:
def readMessages( ref, user = None ):
query = Message.query()
query = query.filter(Message.ref == ref )
if user:
query = query.filter(Message.author == user.key )
query = query.order(Message.date)
# convert to a list so we can index like an array
return [ message for message in query ]
My index.yaml contains:
indexes:
- kind: Message
properties:
- name: author
- name: ref
- name: date
direction: desc