I have the following

Public class Invoice {
  @Id Long id
   Key<Party> partyKey;
   Status status
}

enum Status {
  PAID, PARTIAL_PAID, PENDING, DRAFT
}

I want to find all invoices with Status = PAID, PARTIAL_PAID, so I do the
IN query

ofy.query(Invoice.class).filter("status in", [PAID,
PARTIAL_PAID]).limit(100).list()

However, then, if I want the next 100, the cursor will not work because of
IN query

What are the alternate solutions or schemas'.

-- 
Regards,
Rajesh
*www.VeersoftSolutions.com <http://www.VeersoftSolutions.com>*
*www.GainERP.com <https://www.gainerp.com>*
*Accounting/Inventory/Orders/Sales/Purchase on Google Cloud Platform and
Mobile*

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CA%2BS7ijY%2BfSo3_Czf3QD2Bd9GnJ-YD72FChTj1bo2J4OUZEBHPA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to