Hi, app42 support team:
I want to get the additional data fo the user through mScoreBoardService.getTopNRankers,
because of the safe reason, I must write the code in the custom code,
But it not support App42API in the custom code,
also mScoreBoardService doesn't have "setQuery" way in the custom code.
my code:
String key1 = "name";
String value1 = "John";
Query query = QueryBuilder.build(key1, value1, Operator.EQUALS);
App42API.setDbName("<Enter_the_dbName>");
mScoreBoardService.setQuery("<Your_Collection_Name>", query);
Game game = mScoreBoardService.getTopNRankers(gameName, 10);
What I should do to solve my problem?
Thank you!