question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
How high is the Doe Hill Mountain?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:Doe_Hill_Mountain onto:elevation ?num }
julipc-p(huggingface)
How high is the Volcano Mountain?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:Volcano_Mountain onto:elevation ?num }
julipc-p(huggingface)
How high is the Landegode Lighthouse?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Landegode_Lighthouse onto:height ?num }
julipc-p(huggingface)
How many employees does Staedtler have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?number WHERE { res:Staedtler onto:numberOfEmployees ?number }
julipc-p(huggingface)
How many ethnic groups live in Spain?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Spain onto:ethnicGroup ?uri }
julipc-p(huggingface)
How many inhabitants does Nagamangala have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:Nagamangala onto:populationTotal ?num }
julipc-p(huggingface)
How many museums does Sofia have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type onto:Museum ; onto:location res:Sofia }
julipc-p(huggingface)
How many pages does The Man with the Red Tattoo have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Man_with_the_Red_Tattoo onto:numberOfPages ?n }
julipc-p(huggingface)
How many people live in the capital of Togo?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:Togo onto:capital ?x . ?x onto:populationTotal ?num }
julipc-p(huggingface)
How many politicians graduated from Stanford University?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri onto:profession res:Politician ; onto:almaMater res:Stanford_University }
julipc-p(huggingface)
How many scientists graduated from Washburn University?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type onto:Scientist ; onto:almaMater res:Washburn_University }
julipc-p(huggingface)
How many students does the Texas Tech University have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:Texas_Tech_University onto:numberOfStudents ?num }
julipc-p(huggingface)
How much did Vanilla Sky cost?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Vanilla_Sky onto:budget ?n }
julipc-p(huggingface)
How often did Teresa Mo marry?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Teresa_Mo onto:spouse ?uri }
julipc-p(huggingface)
How tall is John Windsor?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?num WHERE { res:John_Windsor onto:height ?num }
julipc-p(huggingface)
How tall is Kate Upton?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Kate_Upton onto:height ?height }
julipc-p(huggingface)
In which country is Solaize located?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Solaize onto:country ?uri }
julipc-p(huggingface)
In which country is the Tasman Lake?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Tasman_Lake onto:country ?uri }
julipc-p(huggingface)
In which country is the Tiefer See?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Tiefer_See onto:country ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
In which programming language is QuickTime written?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:QuickTime onto:programmingLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Is Campari a beverage?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Campari rdf:type onto:Beverage }
julipc-p(huggingface)
Is Lisa Guerrero a model?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Lisa_Guerrero rdf:type onto:Model }
julipc-p(huggingface)
Is Sol Tax a scientist?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Sol_Tax rdf:type onto:Scientist }
julipc-p(huggingface)
Is Joe Biden a democrat?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Joe_Biden onto:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> }
julipc-p(huggingface)
Is David Macaulay still alive?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { OPTIONAL { res:David_Macaulay onto:deathDate ?date } FILTER ( ! bound(?date) ) }
julipc-p(huggingface)
Is Wilma Flintstone married?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Wilma_Flintstone onto:spouse ?uri }
julipc-p(huggingface)
Is there a video game called Flappy Bird?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?uri rdf:type onto:VideoGame ; rdfs:label "Flappy Bird"@en }
julipc-p(huggingface)
Show me everyone who was born on Boxing Day.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person { ?uri onto:birthDate ?date } UNION { ?uri prop:birthDate ?date } res:Boxing...
julipc-p(huggingface)
Was Peter Isola a chemist?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Peter_Isola onto:profession res:Chemist }
julipc-p(huggingface)
Was Denis Dutton born in Sioux City?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Denis_Dutton onto:birthPlace res:Sioux_City }
julipc-p(huggingface)
Was Vannes Wu born in Aachen-Mitte?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Vanness_Wu onto:birthPlace res:Aachen-Mitte }
julipc-p(huggingface)
What are the official languages of Tunisia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Tunisia onto:officialLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
What is the area code of Aegina?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?string WHERE { res:Aegina onto:areaCode ?string }
julipc-p(huggingface)
What is the capital of Venezuela?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Venezuela onto:capital ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
What is the currency of Rhodesia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Rhodesia onto:currency ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
What is the eye color of Liza Kennedy?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?color WHERE { res:Liza_Kennedy onto:eyeColor ?color }
julipc-p(huggingface)
What is the hair color of Marlon Teixeira?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?color WHERE { res:Marlon_Teixeira onto:hairColor ?color }
julipc-p(huggingface)
What is the official color of the Carleton University?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Carleton_University onto:officialSchoolColour ?string }
julipc-p(huggingface)
What is the ruling party in Lo Espejo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri ?string WHERE { res:Lo_Espejo prop:leaderParty ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
When did Jules Bergman die?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Jules_Bergman onto:deathDate ?date }
julipc-p(huggingface)
When did Red Sonja's creator die?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Red_Sonja onto:creator ?x . ?x onto:deathDate ?date }
julipc-p(huggingface)
When is Gibraltar Diamond Jubilee Flotilla?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?date WHERE { res:Gibraltar_Diamond_Jubilee_Flotilla prop:date ?date }
julipc-p(huggingface)
When was Sevcon founded?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Sevcon onto:foundingDate ?date }
julipc-p(huggingface)
When was Albert Schweitzer born?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Albert_Schweitzer onto:birthDate ?date }
julipc-p(huggingface)
When was the Cobble Hill Tunnel built?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?num WHERE { res:Cobble_Hill_Tunnel prop:built ?num }
julipc-p(huggingface)
When was the Riverdale Monument built?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?num WHERE { res:Riverdale_Monument prop:built ?num }
julipc-p(huggingface)
When was the Operation Purple Haze?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Operation_Purple_Haze onto:date ?date }
julipc-p(huggingface)
Where did Queen Emma of Hawaii die?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Emma_of_Hawaii onto:deathPlace ?uri }
julipc-p(huggingface)
Where is the Sandhammaren located?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sandhammaren onto:location ?uri }
julipc-p(huggingface)
Which airports are located in Chios?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airport { ?uri onto:location res:Chios } UNION { ?uri prop:location res:Chios } UNI...
julipc-p(huggingface)
Which artist made the album Old School Prankstas?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Old_School_Prankstas> onto:artist ?uri }
julipc-p(huggingface)
Which books were published by DAW Books?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book ; onto:publisher res:DAW_Books OPTIONAL { ?uri rdfs:label ?st...
julipc-p(huggingface)
Which bridges cross the Prut?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge ; onto:crosses res:Prut }
julipc-p(huggingface)
Which instruments does Courtney Love play?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Courtney_Love onto:instrument ?uri }
julipc-p(huggingface)
Which languages are spoken in Romania?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { { res:Romania onto:language ?uri } UNION { ?uri onto:spokenIn res:Romania } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) ...
julipc-p(huggingface)
Which museum exhibits The Skater?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Skater onto:museum ?uri }
julipc-p(huggingface)
Which music albums contain the song Into Your Arms?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { ?single onto:album ?uri ; rdfs:label "Into Your Arms"@en }
julipc-p(huggingface)
Which organizations were founded in 1918?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation { ?uri prop:foundation ?date } UNION { ?uri onto:for...
julipc-p(huggingface)
Which presidents were born in 1891?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:President ; onto:birthDate ?date FILTER regex(?date, "^1891") }
julipc-p(huggingface)
Who created Retrocrush?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Retrocrush onto:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who created Miss Marple?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Miss_Marple onto:creator ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who created the comic Old Man Logan?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?string WHERE { res:Old_Man_Logan onto:writer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who designed the Langebro?
PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri ?string WHERE { res:Langebro prop:designer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who developed Quake engine?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Quake_engine onto:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who developed the video game Duke Nukem 3D?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Duke_Nukem_3D onto:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who founded Sony?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Sony onto:foundedBy ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who is the editor of Semana?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Semana onto:editor ?uri }
julipc-p(huggingface)
Who is the founder of DC Comics?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:DC_Comics onto:founder ?uri }
julipc-p(huggingface)
Who is the heaviest player of the ASK Riga?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:weight ?num { ?uri prop:team res:ASK_Riga } UNION { ?uri prop:draftTe...
julipc-p(huggingface)
Who is the manager of Gazelle FC?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gazelle_FC> onto:manager ?uri }
julipc-p(huggingface)
Who is the mayor of Virar?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?string WHERE { res:Virar onto:leaderName ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who is the mayor of the capital of New Caledonia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_Caledonia onto:capital ?x . ?x onto:mayor ?uri }
julipc-p(huggingface)
Who is the owner of Mazda?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Mazda onto:owner ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who is the tallest player of Udinese Calcio?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Udinese_Calcio ; onto:height ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Who is the youngest Snooker player?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SnookerPlayer ; onto:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Who painted Unfinished portrait of General Bonaparte?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Unfinished_portrait_of_General_Bonaparte onto:author ?uri }
julipc-p(huggingface)
Who produces Red Bull?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { ?uri onto:product res:Red_Bull OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Who were the parents of Maria of Antioch?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Maria_of_Antioch onto:parent ?uri }
julipc-p(huggingface)
Who wrote the book Leave It to Psmith?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Leave_It_to_Psmith onto:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }
julipc-p(huggingface)
Which software has been published by Electronic Arts?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?uri ?string WHERE { ?uri rdf:type onto:Software . ?uri prop:publisher "Electronic Arts"@en . OPTIONAL {?uri rdfs:...
julipc-p(huggingface)
List all episodes of the first season of the HBO television series "The Sopranos"!
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = "en") }
julipc-p(huggingface)
Is Christian Bale starring in "Batman Begins"?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors rdfs:label "Christian Bale"@en . ?film foaf:name "Batman Begins"@en }
julipc-p(huggingface)
Which companies were founded in California, USA?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri ?string WHERE { ?uri a onto:Organisation . ?uri onto:foundationPlace res:California . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = "en") }
julipc-p(huggingface)
Give me all films with Tom Cruise!
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film. ?uri prop:starring res:To...
julipc-p(huggingface)
Which people have as their given name Jimmy?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri ?string WHERE { ?uri a foaf:Person. ?uri rdf:type onto:Person. ?uri foaf:givenName "Jimmy"@en . OPTION...
julipc-p(huggingface)
Which software has been developed by organizations in California?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri ?string WHERE { ?company a onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri a onto:Software . OPTIONAL {?uri rdfs:...
julipc-p(huggingface)
Who has been the 5th president of the United states of America?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?string WHERE { ?uri rdf:type onto:President . ?uri onto:orderInOffice "5th President of the United States"@en . OPTIONAL {?uri rdfs:label ?string .} FIL...
julipc-p(huggingface)
Which are the presidents of the United States of America?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri ?string WHE...
julipc-p(huggingface)
When was Lucas Arts founded?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?date WHERE { res:LucasArts prop:foundation ?date . }
julipc-p(huggingface)
Who is the governor of Texas?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri ?string WHERE { res:Texas prop:governor ?string . ?uri foaf:name ?string. }
julipc-p(huggingface)
Do Harry and William, Princes of Wales, have the same mother?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> prop:mother ?x . <http://dbpedia.org/resource/Prince_Harry_of_Wales> prop:mother ?y . FILTER (?x = ?y) }
julipc-p(huggingface)
Who developed Skype?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Skype onto:developer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }
julipc-p(huggingface)
List all boardgames by GMT.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?string WHERE { ?uri onto:publisher res:GMT_Games . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }
julipc-p(huggingface)
In which U.S. state is Area 51 located?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { res:Area_51 onto:location ?uri . ?uri onto:country res:United_States . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }
julipc-p(huggingface)
Which U.S. State has the abbreviation MN?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?ur...
julipc-p(huggingface)
Which movies did Sam Raimi direct after Army of Darkness?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:direc...
julipc-p(huggingface)
¿Qué libros de Kerouac han sido publicados por Viking Press?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher res:Viking_Press . ?uri onto:author res:Jack_Kerouac . }
julipc-p(huggingface)
¿Qué estados americanos se encuentran en la misma zona que Utah?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FIL...
julipc-p(huggingface)
¿Qué hijas de condes ingleses murieron en sus lugares de nacimiento?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x != ?y) . }
julipc-p(huggingface)
¿Qué instrumentos tocaba John Lennon?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_Lennon onto:instrument ?uri . }
julipc-p(huggingface)