Created
June 7, 2019 18:37
-
-
Save JonathanReeve/2ae13ebdae0992bc12be171865c79fab to your computer and use it in GitHub Desktop.
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
#Musicians or singers that have a genre containing 'rock' | |
SELECT DISTINCT ?human ?humanLabel | |
WHERE | |
{ | |
VALUES ?professions {wd:Q177220 wd:Q639669} | |
?human wdt:P31 wd:Q5 . | |
?human wdt:P106 ?professions . | |
?human wikibase:statements ?statementcount . | |
?human wdt:P1303 wd:Q128309 . | |
FILTER (?statementcount > 10 ) . | |
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } | |
} | |
ORDER BY ?humanLabel | |
LIMIT 500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment