I want to use an inner join query with Java and Azure mobile apps, but it looks like api does not let it do operations among the tables. Is there any way to do it?
List<ToDoItem> result = table.where()
.field("complete").eq(false)
.execute().get();
As you see, all the operations are over a table.