query-81e151628103c0689992209c6a6e8ed5
"Anexo:" y tenis
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#>
SELECT ?item ?es_label ?es_articletitle ?itemLabel ?itemDescription
{
?item wdt:P641 wd:Q847 .
?item rdfs:label ?es_label . FILTER( lang(?es_label) = "es" && contains( ?es_label, "Anexo:" ) )
FILTER NOT EXISTS { ?item wdt:P31 wd:Q13406463 }
OPTIONAL { [] schema:about ?item ; schema:isPartOf <https://es.wikipedia.org/> ; schema:name ?es_articletitle }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?es_articletitle"):::projected
v2("?es_label"):::projected
v1("?item"):::projected
a1((" "))
c15(["en"]):::literal
c2(["wd:Q13406463"]):::iri
c6(["wd:Q847"]):::iri
c13(["bd:serviceParam"]):::iri
c10([https://es.wikipedia.org/]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P31"--> e0c2
e0v1("?item"):::projected
e0c2(["wd:Q13406463"]):::iri
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> c2
v1 --"wdt:P31"--> c2
f1[["?es_label = 'es'contains(?es_label,'Anexo:')"]]
f1 --> v2
v1 --"wdt:P641"--> c6
v1 --"rdfs:label"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
a1 -."schema:about".-> v1
a1 --"schema:isPartOf"--> c10
a1 --"schema:name"--> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c13 --"wikibase:language"--> c15
end