query-d984cf962a8bf5fd3e281a4a8c63c48e
retaules ceràmics identificats pel nom SELECT ?monument ?label WHERE { ?monument wdt:P131* wd:Q8818; rdfs:label ?label. FILTER(CONTAINS(?label, "etaule ceràmic ")). }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# retaules ceràmics identificats pel nom
SELECT ?monument ?label
WHERE
{
?monument wdt:P131* wd:Q8818;
rdfs:label ?label.
FILTER(CONTAINS(?label, "etaule ceràmic ")).
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?label"):::projected
v2("?monument"):::projected
c3(["wd:Q8818"]):::iri
f0[["contains(?label,'etaule ceràmic ')"]]
f0 --> v1
v2 --"wdt:P131"--> c3
v2 --"rdfs:label"--> v1