query-7be728c57209df76eabcd930c97b8692
Include information of humans that have used Emacs article lists some famous people that used Emacs (with references) at some point in their life. We could include that information by doing the following This in the corresponding human(P2283)uses add the property in the corresponding Emacs(P1535)used by add the property I'm creating this discussion so that others can help include that information and encourage them to do the same (add this type of information) with the software of their interests. The information can then be retrieved by using the following queries. If you don't see any result, it's because nobody has included the information yet.
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
?human
?humanLabel
{
?emacs wdt:P31/wdt:P279* wd:Q189722.
?human wdt:P31 wd:Q5;
wdt:P2283 ?emacs.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?emacs")
v2("?human"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;"]):::literal
c4(["wd:Q5"]):::iri
c3(["wd:Q189722"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P31"--> c4
v2 --"wdt:P2283"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end