Hi,
	My scenario is:
	After getting list of live online users(getJoinedUsers() of Lobby), I need to get those users' score which is stored in Leaderboard Service. Additionally, I also use Storage Service to store users additional data.
	---
	My questions:
	1. when I call leaderboardService.addJSONDoc. Does the JSONObject actually stored in Storage Service?
	2. when I call below code, does it actually combine data of both Leaderboard and Storage Srtvice?
	var build = queryBuilder.build("Key", "Value", Operator.EQUALS);         
	
		scoreBoardService.setQuery(collectionName, build);
	
		 
	
		 
	
		 
 
	Regards;