Skip to content

Instantly share code, notes, and snippets.

@JonathanReeve
Created June 7, 2019 18:37
Show Gist options
  • Save JonathanReeve/2ae13ebdae0992bc12be171865c79fab to your computer and use it in GitHub Desktop.
Save JonathanReeve/2ae13ebdae0992bc12be171865c79fab to your computer and use it in GitHub Desktop.
#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