Is it possible to retreive a list of ALL Skills that are set up in the CIC using IceLib?
I don't see any way to retreive the Skills in the documentation other than using a SkillConfigurationList and calling StartCaching or StartCachingAsync, however those methods will only return the first 49 SkillConfiguration objects that match your query. Also, even though the SkillConfigurationList let's you know there are "MoreResultsAvailable" there doesn't seem to be a way to get to those additional results.
I have considered using a loop and running multiple queries with different filters, but that wouldn't be a very efficient method. Our problem is that we have more than 50 skills that begin with the same prefix, and so the only way to filter down to less than 50 skills requires knowing the names of each skill, but if I knew that I wouldn't need to do a query for them.
I'd appreciate any help!