I am currently using the Tasks API Java client in my Android app in this way:
List<Task> tasks = client.tasks()
.list("@default")
.setFields("items(title,notes,status,due)")
.execute()
.getItems();
But this only returns the tasks from the "Default" task list. Is there a way to get the tasks from all task lists, without having to get the lists from client.tasklists()
and iterate through them?