query-4dde2a197fc6b23026885524103ec216
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT (GROUP_CONCAT(DISTINCT(?nat)) AS ?list) WHERE {
# SELECT DISTINCT ?nat WHERE {
?subj <http://www.researchspace.org/ontology/PX_nationality> ?nat
}
ORDER BY ?nat
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?list")
v1("?nat"):::projected
v2("?subj")
v2 --http://www.researchspace.org/ontology/PX_nationality--> v1
bind1[/"?nat"/]
v1 --o bind1
bind1 --as--o v3