question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Which soccer players were born on Malta? | 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:SoccerPlayer . ?uri onto:birthPlace res:Malta . } | julipc-p(huggingface) |
Did Arnold Schwarzenegger attend a 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#> ASK WHERE { res:Arnold_Schwarzenegger onto:almaMater ?x . ?x rdf:type onto:University . } | julipc-p(huggingface) |
Which programming languages were influenced by Perl? | 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:influencedBy res:Perl . } UNION { res:Perl onto:influenced ?uri . } } | julipc-p(huggingface) |
Is Barack Obama a democrat? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama onto:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> . } | julipc-p(huggingface) |
How many children does Eddie Murphy have? | PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Eddie_Murphy prop:children ?n . } | julipc-p(huggingface) |
Who is the oldest child of Meryl Streep? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep onto:child ?uri . ?uri onto:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Who killed John Lennon? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person. ?uri prop:conviction res:Death_of_John_Lennon. } | julipc-p(huggingface) |
Which frequent flyer program has the most airlines? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT ?uri WHERE { ?airline rdf:type onto:Airline. ?airline prop:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. ... | julipc-p(huggingface) |
In which city is Air China headquartered? | PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri rdf:type yago:City108524735 . } | julipc-p(huggingface) |
Which artists were born on the same date as Rachel Stevens? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Artist. res:Rachel_Stevens prop:dateOfBirth ?date . ?uri prop:dateOfBirth ?date . } | julipc-p(huggingface) |
How many scientists graduated from an Ivy League university? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type onto:Scientist . ?uri onto:almaMater ?university . ?university onto:affiliation res:Ivy_League . } | julipc-p(huggingface) |
Which types of grapes grow in Oregon? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . } | julipc-p(huggingface) |
Who is starring in Spanish movies produced by Benicio del Toro? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country res:Spain . ?film onto:producer res:Benicio_del_Toro . ?... | julipc-p(huggingface) |
Who is the manager of Real Madrid? | PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> onto:manager ?uri . } | julipc-p(huggingface) |
Give me the currency of China. | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:China onto:currency ?uri . } | julipc-p(huggingface) |
Which movies starring Brad Pitt were directed by Guy Ritchie? | 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 rdf:type onto:Film . ?uri onto:starring res:Brad_Pitt . ?uri onto:director res:Guy_Ritchie . } | julipc-p(huggingface) |
How many companies were founded by the founder of Facebook? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT COUNT(?c) WHERE { res:Facebook onto:foundedBy ?uri . ?c onto:foundedBy ?uri . } | julipc-p(huggingface) |
How many companies were founded in the same year as Google? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type onto:Company . ?c onto:foundingYear ?year . res:Google onto:foundingYear ?year . } | julipc-p(huggingface) |
Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lufthansa onto:subsidiary ?uri . ?uri onto:targetAirport res:Dortmund_Airport . ?uri onto:targetAirport res:Berlin_Tegel_Airport . } | julipc-p(huggingface) |
How many airlines are members of the Star Alliance? | PREFIX onto: <http://dbpedia.org/ontology/> 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) WHERE { ?uri rdf:type onto:Airline . ?uri onto:alliance res:Star_Alliance . } | julipc-p(huggingface) |
Give me all spacecrafts that flew to Mars. | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Spacecraft . ?uri prop:planet res:Mars . } | julipc-p(huggingface) |
Which musician 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:Musician . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Show me everyone who was born on Halloween. | PREFIX prop: <http://dbpedia.org/property/> 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 rdf:type onto:Person . { ?uri onto:birthDate ?date . } UNION { ?uri prop:birthDate ?date . } res:... | julipc-p(huggingface) |
Give me all Swiss non-profit organizations. | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Switzerland . } UNION { ?uri onto:location ?x . ?x onto:country res:Switzerland . } } | julipc-p(huggingface) |
In which country is Mecca located? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mecca onto:country ?uri . } | julipc-p(huggingface) |
What is the net income of Apple? | PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> onto:netIncome ?ni . } | julipc-p(huggingface) |
What does the abbreviation FIFA stand for? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?name WHERE { res:FIFA prop:name ?name . } | julipc-p(huggingface) |
When did the Ming dynasty dissolve? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty onto:dissolutionDate ?date . } | julipc-p(huggingface) |
Which museum in New York has the most visitors? | 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 rdf:type onto:Museum . ?uri onto:location res:New_York_City . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Is Lake Baikal bigger than the Great Bear Lake? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Lake_Baikal onto:areaTotal ?a1 . res:Great_Bear_Lake onto:areaTotal ?a2 . FILTER (?a1 > ?a2) } | julipc-p(huggingface) |
Desserts from which country contain fish? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x onto:type res:Dessert . ?x onto:origin ?uri . ?x onto:ingredient res:Fish . } | julipc-p(huggingface) |
What is the highest mountain in Italy? | 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:Mountain . ?uri onto:locatedInArea res:Italy . ?uri onto:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Where did the architect of the Eiffel Tower study? | PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower onto:architect ?x . ?x prop:almaMater ?uri . } | julipc-p(huggingface) |
Which Greek parties are pro-European? | 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:Greece . ?uri onto:ideology res:Pro-Europeanism . } | julipc-p(huggingface) |
What is the height difference between Mount Everest and K2? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest onto:elevation ?h1 . res:K2 onto:elevation ?h2 . } | julipc-p(huggingface) |
Who is the mayor of Rotterdam? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam onto:leaderName ?uri . } | julipc-p(huggingface) |
How high is the Yokohama Marine Tower? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower onto:height ?num . } | julipc-p(huggingface) |
Are Taiko a kind of Japanese musical instruments? | PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . } | julipc-p(huggingface) |
How many ethnic groups live in Slovenia? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia onto:ethnicGroup ?uri . } | julipc-p(huggingface) |
List the seven kings of Rome. | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:title res:King_of_Rome . } | julipc-p(huggingface) |
Who were the parents of Queen Victoria? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria onto:parent ?uri . } | julipc-p(huggingface) |
Who is the heaviest player of the Chicago Bulls? | 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:Person . ?uri onto:weight ?num . { ?uri prop:team res:Chicago_Bulls . } UNION { ?ur... | julipc-p(huggingface) |
Which volcanos in Japan erupted since 2000? | 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:Volcano . ?uri onto:locatedInArea res:Japan . ?uri onto:eruptionYear ?date . FILTER (year(?date) >= 2000) } | julipc-p(huggingface) |
Who is the tallest basketball player? | 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:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1 | julipc-p(huggingface) |
Who are the presidents of the United States? | 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) |
Who was the wife of President Lincoln? | 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 ?uri ?string WHERE { ?person rdf:type onto:President . ?person foaf:surname 'Lincoln'@en . ?person onto:spouse ?uri.... | julipc-p(huggingface) |
Who created English Wikipedia? | PREFIX onto: <http://dbpedia.org/ontology/> 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 { ?website rdf:type onto:Website . ?website onto:author ?uri . ?website rdfs:label 'English Wikipedia'@en . OPTIONAL {?uri rdfs:label ?stri... | julipc-p(huggingface) |
Which country does the Airedale Terrier come from? | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> SELECT ?string WHERE { ?dog rdfs:label 'Airedale Terrier'@en . ?dog prop:country ?string } | julipc-p(huggingface) |
Which birds are there in the United States? | PREFIX yago: <http://dbpedia.org/class/yago/> 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 yago:BirdsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } | julipc-p(huggingface) |
Give me all European Capitals! | PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } | julipc-p(huggingface) |
Which cities have more than 2 million inhabitants? | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City. { ?uri prop... | julipc-p(huggingface) |
Who was Tom Hanks married to? | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri ?string WHERE { ?person rdfs:label 'Tom Hanks'@en . ?person prop:spouse ?string . OPTIONAL { ?uri rdfs:label ?string . } } | julipc-p(huggingface) |
When was DBpedia released? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?date WHERE { ?website rdf:type onto:Software . ?website onto:releaseDate ?date . ?website rdfs:label 'DBpedia'@en } | julipc-p(huggingface) |
Which people were born in Heraklion? | 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 yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . ?uri onto:birthPlace ?city . ?city rdfs:label 'Herakli... | julipc-p(huggingface) |
Which software has been published by Mean Hamster Software? | 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/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Software . { ?uri prop... | julipc-p(huggingface) |
What languages are spoken in Estonia? | 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/> SELECT DISTINCT ?uri ?string WHERE { ?country rdf:type onto:Country. { ?country onto:language ?uri . } UNION { ?uri onto:spokenIn ?country . } FILTER (regex(?country... | julipc-p(huggingface) |
Who is called Dana? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Dana'@en. } UNION { ?uri prop:alias ... | julipc-p(huggingface) |
Which books were written by Danielle Steel? | 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 ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author ?author . ?author foaf:name 'Danielle Steel'@en . OP... | julipc-p(huggingface) |
Which companies are located 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 DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri onto:location res:California . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } | julipc-p(huggingface) |
Which genre does DBpedia belong to? | PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> 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 { ?dbpedia rdf:type onto:Software . ?dbpedia onto:genre ?uri . ?dbpedia rdfs:label 'DBpedia'@en... | julipc-p(huggingface) |
Give me all movies 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 DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. { ?uri prop:star... | julipc-p(huggingface) |
Give me all female German chancellors! | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office ?office . FILTER regex(?office... | julipc-p(huggingface) |
Is Natalie Portman an actress? | 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/> ASK WHERE { ?subject rdf:type onto:Actor. ?subject rdfs:label 'Natalie Portman'@en. } | julipc-p(huggingface) |
Who wrote the book Les Piliers de la terre? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . } | julipc-p(huggingface) |
Give me all anarcho punk bands that were formed in the 80s. | PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX bio: <http://purl.org/vocab/bio/0.1/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:Anarcho-punkGroups . ?uri owl:sameAs ?mb_band . ?mb_band bio:event ?event . ?event rdf:type bio:Birth . ?event bio:date ?date . { ?event bio:date ?date . FILTER (?date <= '1... | julipc-p(huggingface) |
What is the most frequent death cause? | 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) |
Which spaceflights were launched from Baikonur? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:launchPad res:Baikonur_Cosmodrome . } | julipc-p(huggingface) |
What does CPU stand for? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation "CPU" . } | julipc-p(huggingface) |
Who assassinated President McKinley? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assass... | julipc-p(huggingface) |
Who was buried in the Great Pyramid of Giza? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> select ?uri where { ?uri onto:restingPlace res:Great_Pyramid_of_Giza . } | julipc-p(huggingface) |
Which classis do tree frogs belong to? | PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hylidae prop:classis ?uri . } | julipc-p(huggingface) |
Give me the official websites of actors of the television show Charmed. | 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 WHERE { ?film rdf:type onto:TelevisionShow . ?film rdfs:label 'Charmed'@en . ?film onto:starring ?acto... | julipc-p(huggingface) |
Is the wife of President Obama called Michelle? | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) } | julipc-p(huggingface) |
Give me the capitals of all U.S. states. | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:StatesOfTheUnitedStates . ?states onto:capital ?uri . OPTION... | julipc-p(huggingface) |
What is the revenue of IBM? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?number WHERE { res:IBM onto:revenue ?number . } | julipc-p(huggingface) |
Which states border Utah? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri ?string WHERE { {res:Kansas prop:north ?string.} UNION {res:Kansas prop:northeast ?string.} UNION {res:Kansas prop:south ?string.} UNION {res:Kansas prop:southeast ?s... | julipc-p(huggingface) |
Which European countries are a constitutional monarchy? | 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#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ... | julipc-p(huggingface) |
Who is the author of WikiLeaks? | PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { res:WikiLeaks onto:author ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } | julipc-p(huggingface) |
Which state of the United States of America has the highest density? | 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#> PREFIX prop: <http://dbpedia.org/property/> SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?density OPTIONAL {?uri ... | julipc-p(huggingface) |
When did Germany join the EU? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?date WHERE { res:Germany prop:accessioneudate ?date . } | julipc-p(huggingface) |
What is the highest mountain in Germany? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . ?uri onto:locatedInArea ?area . FILTER (regex(?area,'Germany')) . OPTIONAL... | julipc-p(huggingface) |
What is the profession of Frank Herbert? | PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert prop:occupation ?string . } | julipc-p(huggingface) |
Which companies are in the computer software industry? | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:in... | julipc-p(huggingface) |
Did Robin Cook attend a 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#> ASK WHERE { res:Robin_Cook onto:almaMater ?x . ?x rdf:type onto:University } | julipc-p(huggingface) |
Did Tony Fry influence Aristotle? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aristotle onto:influencedBy res:Tony_Fry } | julipc-p(huggingface) |
Does Por tu amor have more episodes than Game of Thrones? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Por_tu_amor onto:numberOfEpisodes ?x . res:Game_of_Thrones onto:numberOfEpisodes ?y FILTER ( ?x > ?y ) } | julipc-p(huggingface) |
Does the Alba River 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:Alba_River ; rdf:type onto:Lake } | julipc-p(huggingface) |
From which region is the Refosco dal Peduncolo Rosso? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Refosco_dal_Peduncolo_Rosso onto:wineRegion ?uri } | julipc-p(huggingface) |
Give me all Avant-garde jazz record labels. | 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:RecordLabel ; onto:genre res:Avant-garde_jazz OPTIONAL { ?uri rdfs... | julipc-p(huggingface) |
Give me all books written by David Foster Wallace. | 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:Book ; prop:author res:David_Foster_Wallace } | julipc-p(huggingface) |
Give me all cars that are produced in Netherlands. | 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:Automobile { ?uri onto:assembly res:Netherlands } UNION { ?uri prop:assembly res:Ne... | julipc-p(huggingface) |
Give me all companies in Jena. | 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:Company { ?uri onto:location res:Jena } UNION { ?uri onto:headquar... | julipc-p(huggingface) |
Give me all inflows of the Lake Houston. | PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Houston> onto:inflow ?uri } | julipc-p(huggingface) |
Give me all members of The Who. | 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:The_Who onto:bandMember ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } } | julipc-p(huggingface) |
Give me all soccer clubs in Qatar. | 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/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:SoccerClub { ?uri onto... | julipc-p(huggingface) |
Give me all video games published by Black Isle Studios. | 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/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:VideoGame { ?uri prop:... | julipc-p(huggingface) |
Give me the children of David Foster. | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?child WHERE { res:David_Foster onto:child ?child } | julipc-p(huggingface) |
Give me the homepage of Metropolitan Home. | PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Metropolitan_Home foaf:homepage ?string } | julipc-p(huggingface) |
How big is the Mammoth Pool Reservoir? | PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?area WHERE { <http://dbpedia.org/resource/Mammoth_Pool_Reservoir> onto:areaTotal ?area } | julipc-p(huggingface) |
How deep is Steinsee? | PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Steinsee> onto:maximumDepth ?n } | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.