query-2324244af7f662bd59f928e1326f84a3

rq turtle/ttl

People with ORCID ID, occupation researcher, given name, no family name or sex SELECT DISTINCT ?item ?itemLabel

WHERE {?item wdt:P31 wd:Q5; wdt:P106 wd:Q1650915; wdt:P496 [ ]; wdt:P735 [ ]. MINUS {?item wdt:P21 [ ]}. MINUS {?item wdt:P734 [ ]} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#People with ORCID ID, occupation researcher, given name, no family name or sex 
SELECT DISTINCT ?item ?itemLabel

WHERE {?item wdt:P31 wd:Q5;
             wdt:P106 wd:Q1650915;
             wdt:P496 [ ];
             wdt:P735 [ ].
       MINUS {?item wdt:P21 [ ]}.
       MINUS {?item wdt:P734 [ ]}
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) a2((" ")) a3((" ")) a4((" ")) c10(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q1650915"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P106"--> c4 v1 --"wdt:P496"--> a1 v1 --"wdt:P735"--> a2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P21"--> a3 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P734"--> a4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end