query-447f6e5888b444751af2682b1a90fd10
title: anime that is both a series and a movie SELECT ?item ?itemLabel ?sl WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item wdt:P31 wd:Q20650540. ?item wdt:P31 wd:Q63952888. ?item wikibase:sitelinks ?sl. } ORDER BY DESC(?sl)
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#>
#title: anime that is both a series and a movie
SELECT ?item ?itemLabel ?sl WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q20650540.
?item wdt:P31 wd:Q63952888.
?item wikibase:sitelinks ?sl.
} ORDER BY DESC(?sl)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sl"):::projected
c6(["wd:Q20650540"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c7(["wd:Q63952888"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
v2 --"wdt:P31"--> c7
v2 --"wikibase:sitelinks"--> v1