query-cca52308e3b31bc25d7fd2e14a465b93
Battles within a sitelink to the French Wikipedia without place and/or date SELECT ?item ?itemLabel (SAMPLE(?place) AS ?place) (SAMPLE(?placeLabel) AS ?placeLabel) (SAMPLE(?date) AS ?date) (SAMPLE(?coord) AS ?coord) (SAMPLE(?article) AS ?article) WHERE { ?item wdt:P31/wdt:P279* wd:Q178561 .
?article schema:about ?item ; schema:isPartOf https://fr.wikipedia.org/ .
OPTIONAL { ?item wdt:P276 ?place . OPTIONAL { ?place rdfs:label ?placeLabel . FILTER(LANG(?placeLabel) IN ("fr","en")) . } } OPTIONAL { ?item (wdt:P585|wdt:P580|wdt:P582) ?date . }
OPTIONAL { ?item wdt:P625 ?coord . } FILTER(!BOUND(?place) || !BOUND(?date) ) . SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } } GROUP BY ?item ?itemLabel
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Battles within a sitelink to the French Wikipedia without place and/or date
SELECT ?item ?itemLabel
(SAMPLE(?place) AS ?place)
(SAMPLE(?placeLabel) AS ?placeLabel)
(SAMPLE(?date) AS ?date)
(SAMPLE(?coord) AS ?coord)
(SAMPLE(?article) AS ?article) WHERE {
?item wdt:P31/wdt:P279* wd:Q178561 .
?article schema:about ?item ;
schema:isPartOf <https://fr.wikipedia.org/> .
OPTIONAL {
?item wdt:P276 ?place .
OPTIONAL {
?place rdfs:label ?placeLabel .
FILTER(LANG(?placeLabel) IN ("fr","en")) .
}
}
OPTIONAL { ?item (wdt:P585|wdt:P580|wdt:P582) ?date . }
OPTIONAL { ?item wdt:P625 ?coord . }
FILTER(!BOUND(?place) || !BOUND(?date) ) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
} GROUP BY ?item ?itemLabel