Your query is invalid: I get error Encountered " "\'Person\' "" at line 3, column 35.
This corrected query returns 100 ULAN IDs as expected:
select * {?c foaf:focus [a schema:Person]} limit 100
Finally, this query returns the two names you mentioned, relating to two ULAN IDs:
select * {
values ?id {"500278870" "500278869"}
?c foaf:focus [a schema:Person]; dc:identifier ?id; gvp:prefLabelGVP/xl:literalForm ?name
} limit 100
Can you tell us what you're trying to do, and the exact query that is problematic?