query-bbeb3c41984de6466a1531b7c6fae067

rq turtle/ttl

Consultar los elementos que tienen determinada cadena como valor para una propiedad determinadaEn este ejemplo buscamos «ourism»:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?P1282 WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  OPTIONAL { ?item wdt:P1282 ?P1282. }
  FILTER(CONTAINS(?P1282, "ourism"))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?P1282"):::projected v2("?item"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal f0[["contains(?P1282,'ourism')"]] f0 --> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1282".-> v1 end