Created
February 12, 2022 21:51
-
-
Save cthoyt/e1786af09f8bbd65d2666f4cdf7cbac8 to your computer and use it in GitHub Desktop.
Make a graph of your papers, co-authors, and topics by quering Wikidata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#defaultView:Graph | |
SELECT ?s ?sLabel ?rgb ?edgelabel ?o ?oLabel | |
WHERE { | |
{ | |
SELECT ?s ?sLabel ?rgb ?o ?oLabel | |
WHERE { | |
?o wdt:P50 wd:Q47475003, ?s . | |
FILTER (?s != wd:Q47475003) | |
OPTIONAL { | |
?s wdt:P21 ?gender . | |
BIND( IF(?gender = wd:Q6581097, "3182BD", "E6550D") AS ?rgb) | |
} | |
} | |
} | |
UNION | |
{ | |
SELECT ?s ?sLabel ?rgb ?o ?oLabel | |
WHERE { | |
?o wdt:P50 wd:Q47475003 . | |
?o wdt:P921 ?s . | |
BIND("CC00AA" AS ?rgb) . | |
} | |
} | |
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr,de,ru,es,zh,jp". } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment