Advanced query usage

Attaching a query to all API calls

For example, the following would append ?custom_id=1234 to every call sent from the Usergrid JavaScript SDK to Usergrid:

var options = {
    orgName:'yourOrg',
    appName:'yourApp',
    qs:'custom_id=1234'
}
var dataClient = new Usergrid.Client(options);