We're in the process of building a large multi-lingual site (30+ individual cultures) and one of the requirements from the clients is to implement hreflang tags to show alternate URLs for all cultures across the whole site.
When working with K12 and the legacy DocumentQuery API you could either use .AllCultures() or .Cultures("x", "y", "z") to retrieve all the data as part of a single query.
However from what I can tell with the XbyK this doesn't seem possible as the .InLanguage("x") function only takes a single parameter, and omitting it entirely only returns the current preferred culture. Is is possible to return all the items in a single query rather than having to loop over a collection of cultures, effectively causing 30+ SQL queries on page load.
Thanks,
Steven