query-6cd8ac0def16202bba5d4fcbfb3b22d6
Gadget suggestions! It's an area still not so much covered here on Wikidata, as far as I can see, so the items you are creating are really needed. (Q6295325)Journal of Indian Philosophy Hi! First of all thank you for the very interesting job you are doing around Through the following query
Use at
- https://query.wikidata.org/sparql
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#>
SELECT DISTINCT ?person ?personLabel
WHERE {
?article wdt:P31 wd:Q13442814 .
?article wdt:P1433 wd:Q6295325 .
{ ?article wdt:P50 ?person . } UNION { ?article wdt:P921 ?person . }
?person wdt:P31 wd:Q5 .
?person wikibase:identifiers 0 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?personLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v3("?person"):::projected
v1("?personLabel"):::projected
c4(["wd:Q6295325"]):::iri
c9(["0^^xsd:integer"]):::literal
c2(["wd:Q13442814"]):::iri
c11(["bd:serviceParam"]):::iri
c7(["wd:Q5"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P1433"--> c4
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P921"--> v3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P50"--> v3
end
union0r <== or ==> union0l
end
v3 --"wdt:P31"--> c7
v3 --"wikibase:identifiers"--> c9
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end