question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
How many programming languages are there?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:ProgrammingLanguage . }
julipc-p(huggingface)
What is the official color of the University of Oxford?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:University_of_Oxford onto:officialSchoolColour ?string . }
julipc-p(huggingface)
To which artistic movement did the painter of The Three Dancers belong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . }
julipc-p(huggingface)
Give me all animals that are extinct.
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:Animal . ?uri onto:conservationStatus 'EX' . }
julipc-p(huggingface)
Does Abraham Lincoln's death place have a website?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Abraham_Lincoln onto:deathPlace ?p . ?p prop:website ?w . }
julipc-p(huggingface)
How deep is Lake Placid?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> onto:depth ?n . }
julipc-p(huggingface)
Give me the grandchildren of Bruce Lee.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee onto:child ?child . ?child onto:child ?uri . }
julipc-p(huggingface)
Who is the youngest Darts 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:DartsPlayer . ?uri onto:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Where was Bach born?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach onto:birthPlace ?uri . }
julipc-p(huggingface)
In which countries can you pay using the West African CFA franc?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:West_African_CFA_franc . }
julipc-p(huggingface)
What are the top-10 action role-playing video games according to IGN?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> . ?uri prop:ign ?score . } ORDER BY DESC(?score) ...
julipc-p(huggingface)
What is the most frequent cause of death?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Does the Isar flow into a lake?
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 { ?x onto:inflow res:Isar . ?x rdf:type onto:Lake . }
julipc-p(huggingface)
Give me all films produced by Steven Spielberg with a budget of at least $80 million.
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:Film . ?uri onto:director res:Steven_Spielberg . ?uri onto:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }
julipc-p(huggingface)
Give me all writers that won the Nobel Prize in literature.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Writer . ?uri onto:award res:Nobel_Prize_in_Literature . }
julipc-p(huggingface)
Give me all taikonauts.
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:Astronaut . ?uri onto:nationality res:China . }
julipc-p(huggingface)
How many pages does War and Peace have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace onto:numberOfPages ?n . }
julipc-p(huggingface)
What is the bridge with the longest span?
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 . ?uri onto:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Give me all actors called Baldwin.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri onto:occupation res:Actor . } UNION { ?uri rdf:type onto:Actor . } }
julipc-p(huggingface)
Who is the tallest player of the Atlanta Falcons?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Atlanta_Falcons . ?uri onto:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Which rivers flow into a German lake?
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:River . ?x onto:inflow ?uri . ?x rdf:type onto:Lake . ?x onto:country res:Germany . }
julipc-p(huggingface)
How many James Bond movies are there?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . }
julipc-p(huggingface)
Which rockets were launched from Baikonur?
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:Rocket . ?uri onto:launchSite res:Baikonur_Cosmodrome . }
julipc-p(huggingface)
Which pope succeeded John Paul II?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II prop:successor ?uri . }
julipc-p(huggingface)
Give me all Dutch parties.
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:PoliticalParty . ?uri onto:country res:Netherlands . }
julipc-p(huggingface)
When is Halloween?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Halloween prop:date ?date . }
julipc-p(huggingface)
Give me all Swedish oceanographers.
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:field res:Oceanography . ?uri onto:birthPlace res:Sweden . }
julipc-p(huggingface)
Give me all actors who were born in Berlin.
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:Actor . ?uri onto:birthPlace res:Berlin . }
julipc-p(huggingface)
What was the last movie with Alec Guinness?
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:Film . ?uri onto:starring res:Alec_Guinness . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1
julipc-p(huggingface)
Which poet wrote the most books?
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 onto:occupation res:Poet . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1
julipc-p(huggingface)
How many languages are spoken in Colombia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Language . res:Colombia onto:language ?uri . }
julipc-p(huggingface)
What does IYCM stand for?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation 'IYCM' . }
julipc-p(huggingface)
What was Brazil's lowest rank in the FIFA World Ranking?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team prop:fifaMin ?n . }
julipc-p(huggingface)
Give me the capitals of all countries that the Himalayas run through.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?country . ?country onto:capital ?uri . }
julipc-p(huggingface)
Which actor played Chewbacca?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chewbacca prop:portrayer ?uri . }
julipc-p(huggingface)
Which ingredients do I need for carrot cake?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . }
julipc-p(huggingface)
Is Cola 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:Cola rdf:type onto:Beverage . }
julipc-p(huggingface)
Who has Tom Cruise been married to?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Tom_Cruise. }
julipc-p(huggingface)
Which of Tim Burton's films had the highest budget?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Tim_Burton . ?uri onto:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1
julipc-p(huggingface)
How heavy is Jupiter's lightest moon?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { ?uri prop:satelliteOf res:Jupiter . ?uri onto:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Which actor was casted in the most movies?
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#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?f rdf:type onto:Film . ?f onto:starring ?uri . } ORDER BY DESC(COUNT(DISTI...
julipc-p(huggingface)
Is James Bond married?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:James_Bond onto:spouse ?uri . }
julipc-p(huggingface)
Give me all Australian metalcore bands.
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:Band . ?uri onto:genre res:Metalcore . { ?uri onto:hometown res:Australia . } UNION { ?uri onto:hometown ?h . ?h onto:country r...
julipc-p(huggingface)
Give me all actors who were born in Paris after 1950.
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:Actor . ?uri onto:birthPlace res:Paris . ?uri onto:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }
julipc-p(huggingface)
When was Carlo Giuliani shot?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani prop:dateOfDeath ?date . }
julipc-p(huggingface)
Who are the four youngest MVP basketball players?
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#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:birthDate ?date. ?uri prop:highlights ?h . FILTER rege...
julipc-p(huggingface)
Which companies have more than 1 million employees?
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#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:numberOfEmployees ?n . } UNION { ?uri prop:numEmployees ?n . ...
julipc-p(huggingface)
Give all swimmers that were born in Moscow.
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:Swimmer . ?uri onto:birthPlace res:Moscow . }
julipc-p(huggingface)
Who was called Rodzilla?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:nickname "Rodzilla"@en . }
julipc-p(huggingface)
Show me the book that Muhammad Ali wrote.
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:author res:Muhammad_Ali . }
julipc-p(huggingface)
How many museums does Paris 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 DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:Paris . }
julipc-p(huggingface)
Which city has the most inhabitants?
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:City . ?uri onto:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Which city has the least inhabitants?
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:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Give me all the TV shows with Neil Patrick Harris.
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:TelevisionShow . ?uri onto:starring res:Neil_Patrick_Harris . }
julipc-p(huggingface)
Who wrote The Hunger Games?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games onto:author ?uri . }
julipc-p(huggingface)
Show a list of soccer clubs that play in the Bundesliga.
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:SoccerClub . ?uri onto:league res:Bundesliga . }
julipc-p(huggingface)
What country is Mount Everest in?
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:Mount_Everest onto:locatedInArea ?uri . ?uri rdf:type onto:Country . }
julipc-p(huggingface)
Who is the founder of Penguin Books?
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:Penguin_Books onto:founder ?uri . }
julipc-p(huggingface)
Which programming languages influenced Javascript?
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:ProgrammingLanguage . ?uri onto:influenced res:JavaScript . }
julipc-p(huggingface)
Did Che Guevara have children?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Che_Guevara onto:child ?uri . }
julipc-p(huggingface)
List all the musicals with music by Elton John.
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:Musical . ?uri onto:musicBy res:Elton_John . }
julipc-p(huggingface)
Show me all the breweries in Australia.
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 ?x WHERE { ?uri rdf:type onto:Brewery . { ?uri onto:location res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } }
julipc-p(huggingface)
When was the Titanic completed?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:RMS_Titanic onto:completionDate ?date . }
julipc-p(huggingface)
How much did Pulp Fiction cost?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . }
julipc-p(huggingface)
How many airlines are there?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . }
julipc-p(huggingface)
Who played Agent Smith in Matrix?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith prop:portrayer ?uri . }
julipc-p(huggingface)
How much carbs does peanut butter have?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?carbs WHERE { res:Peanut_butter prop:carbs ?carbs . }
julipc-p(huggingface)
Which book has the most pages?
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:Book . ?uri onto:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Which bridges cross the Seine?
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 . ?uri onto:crosses res:Seine . }
julipc-p(huggingface)
Who is the mayor of the capital of French Polynesia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:French_Polynesia onto:capital ?x . ?x onto:mayor ?uri . }
julipc-p(huggingface)
When did Dracula's creator die?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . }
julipc-p(huggingface)
What is the location of the Houses of Parliament?
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 ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . }
julipc-p(huggingface)
Show me all English Gothic buildings in Kent.
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 ?uri WHERE { ?uri rdf:type onto:Building . ?uri onto:architecturalStyle res:English_Gothic_architecture . ?uri onto:location res:Kent . }
julipc-p(huggingface)
Who was the pope that founded the Vatican Television?
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 ?uri WHERE { ?uri rdf:type onto:Pope . res:Vatican_Television_Center onto:foundedBy ?uri . }
julipc-p(huggingface)
What airlines are part of the SkyTeam alliance?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> 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:Airline . { ?uri prop:alliance res:SkyTeam . } UNION { ?uri onto:Alliance res:SkyTe...
julipc-p(huggingface)
What is the total population of Melbourne, Florida?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> onto:populationTotal ?uri . }
julipc-p(huggingface)
Which airports does Air China serve?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Air_China onto:targetAirport ?uri . }
julipc-p(huggingface)
In which year was Rachel Stevens born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . }
julipc-p(huggingface)
Where was JFK assassinated?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . }
julipc-p(huggingface)
How many politicians graduated from Columbia University?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:profession res:Politician . ?uri onto:almaMater res:Columbia_University . }
julipc-p(huggingface)
Which scientist is known for the Manhattan Project and the Nobel Peace Prize?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:Manhattan_Project . ?uri rdf:type onto:Scientist . ?uri onto:knownFor res:Nobel_Peace_Prize . }
julipc-p(huggingface)
What is the highest volcano in Africa?
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 yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ...
julipc-p(huggingface)
Which beer originated in Ireland?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:type res:Beer . ?uri prop:origin "Ireland"@en . }
julipc-p(huggingface)
What are the specialities of the UNC Health Care?
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 { res:UNC_Health_Care prop:speciality ?uri . }
julipc-p(huggingface)
Who is the owner of Facebook?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Facebook onto:foundedBy ?uri . }
julipc-p(huggingface)
From which region is the Melon de Bourgogne?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne onto:wineRegion ?uri . }
julipc-p(huggingface)
Who was influenced by Socrates?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:influencedBy res:Socrates . }
julipc-p(huggingface)
Who was president of Pakistan in 1978?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:title res:President_of_Pakistan . ?uri prop:years 1978 . }
julipc-p(huggingface)
Give me English actors starring in Lovesick.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri WHERE { res:Lovesick onto:starring ?uri . { ?uri onto:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } }
julipc-p(huggingface)
Give me all types of eating disorders.
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:EatingDisorders . }
julipc-p(huggingface)
Who was married to president Chirac?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac onto:spouse ?uri . }
julipc-p(huggingface)
What is the largest metropolitan area in Washington state?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> prop:largestmetro ?uri . }
julipc-p(huggingface)
Where in France is sparkling wine produced?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:wineProduced res:Sparkling_wine . ?uri onto:location res:France . }
julipc-p(huggingface)
Where did Hillel Slovak die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak onto:deathPlace ?uri . }
julipc-p(huggingface)
What is the timezone in San Pedro de Atacama?
PREFIX res: <http://dbpedia.org/resource/> PREFIX timezone: <http://dbpedia.org/timezone/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama timezone:timezone ?uri . }
julipc-p(huggingface)
In which city does the Chile Route 68 end?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }
julipc-p(huggingface)
Give me all ESA astronauts.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:type res:European_Space_Agency . }
julipc-p(huggingface)
Give me all Swedish holidays.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Holiday . ?uri onto:country res:Sweden . }
julipc-p(huggingface)
Who is the youngest Pulitzer Prize winner?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:award res:Pulitzer_Prize . ?uri onto:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Which animals are critically endangered?
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:Animal . ?uri onto:conservationStatus 'CR' . }
julipc-p(huggingface)