Select Git revision
preperation.txt
-
Marc Feger authoredMarc Feger authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
preperation.txt 12.28 KiB
##############################################################################
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX dbc: <http://dbpedia.org/resource/Category:>
SELECT DISTINCT ?film_title
WHERE {
?film_title rdf:type <http://dbpedia.org/ontology/Film> .
?film_title dct:subject dbc:Comedy.
} LIMIT 1000 OFFSET 0
##############################################################################
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT DISTINCT ?movie ?label
WHERE{
?movie wdt:P31 wd:Q11424.
?movie rdfs:label ?label.
}
921517 Ergebnisse in 9599 ms
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT DISTINCT ?movie ?label
WHERE{
# node who instances of films
?movie wdt:P31 wd:Q11424.
# nodes who are instances of y as a subclass of films.
OPTIONAL {
?movie wdt:P31 [
wdt:P279 wd:Q11424
].
}
?movie rdfs:label ?label.
}
921514 Ergebnisse
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT DISTINCT ?movie ?label
WHERE{
# node who instances of films
?movie wdt:P31 wd:Q11424.
# nodes who are instances of y as a subclass of films.
OPTIONAL {
?movie wdt:P31 [
wdt:P279 wd:Q11424
].
}
# nodes who are instances of y as a instance of a film genre.