Skip to content

Instantly share code, notes, and snippets.

@netsensei
Last active February 1, 2016 16:47
Show Gist options
  • Save netsensei/e72b1ea5696af2f9ab1f to your computer and use it in GitHub Desktop.
Save netsensei/e72b1ea5696af2f9ab1f to your computer and use it in GitHub Desktop.
French cheeses (wikidata)
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
PREFIX q: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?s ?sLabel ?lLabel ?geo {
?s wdt:P31 wd:Q1565828 .
?s wdt:P131 ?l .
?l wdt:P625 ?geo .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
PREFIX q: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?s ?sLabel ?image ?materialLabel ?website ?l ?lLabel ?geoLabel {
?s wdt:P279 wd:Q2223649 .
?s wdt:P18 ?image .
?s wdt:P186 ?material .
OPTIONAL { ?s wdt:P856 ?website } .
?s wdt:P1071 ?l .
?l wdt:P625 ?geo .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment