query-bc206ecff6ba82513d6589cb8665d4ab

rq turtle/ttl

People with a P496 (ORCID ID) statement but no P21 (sex/gender) statement SELECT DISTINCT ?author ?authorLabel #(COUNT(?paper) AS ?count) WHERE { ?author wdt:P496 ?orcid ; wdt:P31 wd:Q5 . ?paper wdt:P50 ?author . MINUS { ?author wdt:P21 ?gender . } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } }

GROUP BY ?author ?authorLabel

ORDER BY DESC(?count)

LIMIT 200

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 a P496 (ORCID ID) statement but no P21 (sex/gender) statement
SELECT DISTINCT ?author ?authorLabel #(COUNT(?paper) AS ?count)
WHERE
{
    ?author wdt:P496 ?orcid ; 
            wdt:P31 wd:Q5 .
    ?paper wdt:P50 ?author .
    MINUS { ?author wdt:P21 ?gender . }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
#GROUP BY ?author ?authorLabel
#ORDER BY DESC(?count)
LIMIT 200

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?author"):::projected v4("?gender") v2("?orcid") v3("?paper") c7(["bd:serviceParam"]):::iri c3(["wd:Q5"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P496"--> v2 v1 --"wdt:P31"--> c3 v3 --"wdt:P50"--> v1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P21"--> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end