I have been working with the following query:
SELECT DISTINCT ?id ?alt_name
WHERE {
?artist skos:inScheme ulan: ;
rdf:type gvp:PersonConcept ;
dc:identifier ?id .
{ ?artist xl:altLabel [xl:literalForm ?alt_name] . } UNION
{ ?artist xl:prefLabel [xl:literalForm ?alt_name] . }
}
When I run it on the HTML SPARQL endpoint, it says there should be a total of 570493 results. However, I have tried downloading the CSV results from this same query and received a file of anywhere between 500K to only 120K records.
Am I running into some server load cap, or other kind of timeout here?