I'm using objectify to interact with the datastore from within a GAE endpoint. To save bandwidth I'm trying to only return relevant fields of some entities. On an endpoint rewuest from the client I tried using the setFields()
method, but it seems that it is only filtering that on the client, not on the server. The response size stays the same.
Is there any way to only retrieve or send specific fields using either objectify of endpoints?