Skip to content

Instantly share code, notes, and snippets.

@darxtrix
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darxtrix/190da71c294aeb876ddd to your computer and use it in GitHub Desktop.
Save darxtrix/190da71c294aeb876ddd to your computer and use it in GitHub Desktop.
Call chaining
// chaining methods
client.lists().auth().listId("list_1.localhost.org").members()
.get(callback);
// chaining filters
client.lists().auth().listId("list_1.localhost.org").members()
.filter("count",25).filter("page",1).get(callback) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment