The app shown for tutorial always retrieves the same "Offers" and 
"Recommendations" for every "CheckIn".
for example this is what it runs to retrieve "Places"

    protected CollectionResponsePlace doInBackground(Void... params) {

      Placeendpoint.Builder endpointBuilder = new Placeendpoint.Builder(
          AndroidHttp.newCompatibleTransport(), new JacksonFactory(), null);
     
      endpointBuilder = CloudEndpointUtils.updateBuilder(endpointBuilder);

      CollectionResponsePlace result;

      Placeendpoint endpoint = endpointBuilder.build();

      try {
        result = endpoint.listPlace().execute();
      } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        result = null;
      }
      return result;
    }

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

-- 
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.

Reply via email to