Is it possible to initialize the user class in a live query? I have initialized the user class in my index.js and it shows up in my network inspector. However, when I attempt to query, nothing appears in the websocket.
Below is the code showing how I initialize the live query:
var user = new Parse.Query('_User');
user.equalTo('email', $scope.currentUser.attributes.email);
user.include('money');
userSubscription = user.subscribe();