You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to be able to sort players by vocation on highscores.
SkillX = selected skill.
To me it seems like it loads it like this: (can't use filter here properly)
Sort players by skillX
Fetch 100 players on the list (not more, not "normal" mysql limit)
It will load 100 players, with skillX.
But if I want to show 100 players with skillX and vocationX, it will only show the players from the top 100 with the skillX, then it will filter those remaining 100 players with vocationX.
I am trying to load players like this:
Sort players by skillX
Fetch 100 players with skillX AND vocationX.
"SQL / ZnoteAAC": SELECT * FROM players WHERE skillX = '$scope.selectedSkill' AND vocation = '$scope. vocationX' LIMIT 100;"
I haven't yet 100% understood how the SQL / API things work.
Lastly, I've gotta say that this AAC is absolutely stunning.
I've had never used angular / swagger before I tried this AAC, so I am having quite hard time understanding how everything works.
But, yeah - I've also gotta say that I've learned a lot during the past week, but there are some basic things I haven't understood yet.
The text was updated successfully, but these errors were encountered:
Currently the API does not let you query (filter) by fields other than name. It's only possible to search for players by name. You would have to expand the API.
If you make such a change, we'll be happy to merge it with master.
Would be nice to be able to sort players by vocation on highscores.
SkillX = selected skill.
To me it seems like it loads it like this: (can't use filter here properly)
It will load 100 players, with skillX.
But if I want to show 100 players with skillX and vocationX, it will only show the players from the top 100 with the skillX, then it will filter those remaining 100 players with vocationX.
I am trying to load players like this:
I haven't yet 100% understood how the SQL / API things work.
Lastly, I've gotta say that this AAC is absolutely stunning.
I've had never used angular / swagger before I tried this AAC, so I am having quite hard time understanding how everything works.
But, yeah - I've also gotta say that I've learned a lot during the past week, but there are some basic things I haven't understood yet.
The text was updated successfully, but these errors were encountered: