query-bce5ccde37cdd27a51de20a448d682d4
movie with P973 start with "https://www.artfilm.ch" SELECT ?item ?itemLabel ?value ?title WHERE { ?item wdt:P31 wd:Q2431196; wdt:P973 ?value . FILTER( REGEX(str(?value),"^https://www\.artfilm\.ch" ) ) OPTIONAL { ?item wdt:P1476 ?title } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,it,de,rm,en". } }
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 bd: <http://www.bigdata.com/rdf#>
#movie with P973 start with "https://www.artfilm.ch"
SELECT ?item ?itemLabel ?value ?title
WHERE
{
?item wdt:P31 wd:Q2431196;
wdt:P973 ?value .
FILTER( REGEX(str(?value),"^https://www\\.artfilm\\.ch" ) )
OPTIONAL { ?item wdt:P1476 ?title }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,it,de,rm,en". }
}
Query found at
- https://www.wikidata.org/wiki/User:2le2im-bdc/SPARQL
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2020/03
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?title"):::projected
v1("?value"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q2431196"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,fr,it,de,rm,en"]):::literal
f0[["regex(str(?value),'^https://www\.artfilm\.ch')"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P973"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1476".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end