Create a helper function where
Given a team match ID and club ID
Return a list of players that do not qualify to play in the match. The return should be a data frame with all the relevant player stats.
Currently, this is done by calling getMatchDetailsForMatches for a single match and then calling getUserStats by passing the usernames returned by the first call. While this works, it would be easier for the user to only need to call a single function when checking one match where the ID is known.
Per request for WORLD LEAGUE matches -
Create a helper function where Given a team match ID and club ID Return a list of players that do not qualify to play in the match. The return should be a data frame with all the relevant player stats.
Currently, this is done by calling
getMatchDetailsForMatches
for a single match and then callinggetUserStats
by passing the usernames returned by the first call. While this works, it would be easier for the user to only need to call a single function when checking one match where the ID is known.