User:Reosarevok/Wikidata Example Queries: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
(Created page with "These are example queries for the [https://query.wikidata.org/ Wikidata SPARQL endpoint] [https://query.wikidata.org/#%23Select%20composers%20who%20don%27t%20have%20a%20Musi...")
(No difference)

Revision as of 13:25, 9 March 2017

These are example queries for the Wikidata SPARQL endpoint


All composers who don't have a MusicBrainz ID stored

For "musicians" instead of "composers", change Q36834 to Q639669.

SELECT ?entityLabel ?entity {
	?entity wdt:P106 wd:Q36834 .
  	MINUS { ?entity wdt:P434 [] } .
	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}


Composers born somewhere in Germany who don't have a MusicBrainz ID stored

SELECT ?entityLabel ?entity {
	?entity wdt:P106 wd:Q36834 .
  	?entity wdt:P19 ?place .
    ?place wdt:P17 wd:Q183 .
  	MINUS { ?entity wdt:P434 [] } .
	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}