On Sat, Feb 1, 2014 at 7:30 AM, Atakan Sergio <[email protected]> wrote:
> The app shown for tutorial always retrieves the same "Offers" and > "Recommendations" for every "CheckIn". > > I would like to show different list for different CheckIns. > > is there a way to pass filter to App Engine backend to query places > differently, instead of everytime running the "result = > endpoint.listPlace().execute();" > is there a way to put a WHERE clause to > "endpoint.listPlace().execute();" Thank you > The call listPlace().execute() doesn't set the parameters of the call, it simply sends the request off to the server. If you'd like to modify the parameters being sent you'll need to modify the code much earlier than that line. In addition, you'll have to modify the App Engine backend code (server side) so the backend is expecting the new parameter and can automatically generate client libraries with it in mind. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
