query-26ab26bd9799dca3852dcea08179030b
title: Instances of either "anime television series" or of "manga series"; items that are instances of both of them are essentially about media franchises. SELECT ?item ?itemLabel ?instanceofLabel WHERE { ?item wdt:P31 wd:Q63952888 . ?item wdt:P31 wd:Q21198342 . ?item wdt:P31 ?instanceof . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?itemLabel
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: Instances of either "anime television series" or of "manga series"; items that are instances of both of them are essentially about media franchises.
SELECT ?item ?itemLabel ?instanceofLabel
WHERE
{
?item wdt:P31 wd:Q63952888 .
?item wdt:P31 wd:Q21198342 .
?item wdt:P31 ?instanceof .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?instanceof")
v2("?item"):::projected
v1("?itemLabel"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q63952888"]):::iri
c3(["wd:Q21198342"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P31"--> c3
v2 --"wdt:P31"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end