You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this point it's not possible to use more complex queries to reduce the number of requests and improve the overall performance.
Ex. In Javascript I can do this:
Trello.get("organizations/[my_company]/boards?filter=open&fields=name,url&lists=open&list_fields=idBoard,name",function(boards){$.each(boards,function(ix,board){$.each(board.lists,function(ix,list){// It's possible to navigate from organization's boards to lists in a single get.}}});
At this point it's not possible to use more complex queries to reduce the number of requests and improve the overall performance.
Ex. In Javascript I can do this:
But in ruby-trello I'm limited to:
In this comparison I went down to boards, but this gets more complicated if I'd want also the cards, checklists, and members details.
The text was updated successfully, but these errors were encountered: