question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which parent comapny of hypnotize Minds is the label of the Producers , a 2005 film ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hypnotize_Minds> prop:parent ?uri. <http://dbpedia.org/resource/The_Producers_(2005_film)> prop:label ?uri}
julipc-p(huggingface)
Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> prop:college ?uri. <http://dbpedia.org/resource/K._Terry_Dornbush> prop:almaMater ?uri}
julipc-p(huggingface)
Who is the fictional character who portrayed in Terminator 2: Judgment Day?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:portrayer <http://dbpedia.org/resource/Terminator_2:_Judgment_Day> . ?uri rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
Which team of Dan Shamash is also the debutant team of John Estes ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Estes onto:debutTeam ?uri. res:Dan_Shamash onto:team ?uri}
julipc-p(huggingface)
Where do employees of Deroit Red Wings live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Detroit_Red_Wings . ?x onto:residence ?uri . }
julipc-p(huggingface)
What are some countries where companies headquartered in the Klang Valley operate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:headquarters <http://dbpedia.org/resource/Klang_Valley> . ?x prop:country ?uri . ?x rdf:type onto:Company}
julipc-p(huggingface)
Name the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry <http://dbpedia.org/resource/Mozambique> . ?uri prop:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zamb...
julipc-p(huggingface)
Give me a count of bacterias which belongs to Bacilli class?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:class <http://dbpedia.org/resource/Bacilli> . ?uri rdf:type onto:Bacteria}
julipc-p(huggingface)
How many producers have worked for FremantleMedia productions?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:company <http://dbpedia.org/resource/FremantleMedia> . ?x onto:producer ?uri . }
julipc-p(huggingface)
Who is on the board of Kate Spade and company?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:board <http://dbpedia.org/resource/Kate_Spade_&_Company> . }
julipc-p(huggingface)
Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri. <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?uri}
julipc-p(huggingface)
Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri prop:chancellor <http://dbpedia.org/resource/Nic...
julipc-p(huggingface)
How many shows are made by Larry David?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator <http://dbpedia.org/resource/Larry_David> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Martin AN/GSG-5 is a part of the building in which city?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:part <http://dbpedia.org/resource/Martin_AN/GSG-5_Battery_Integration_and_Radar_Display_Equipment> . ?x prop:district ?uri . ?x rdf:type ...
julipc-p(huggingface)
How many architects are there who have made something used by Oakland athletics?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant <http://dbpedia.org/resource/Oakland_Athletics> . ?x prop:architect ?uri . }
julipc-p(huggingface)
In which company's boards does the founder of Bomis sit?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bomis onto:foundedBy ?x . ?x onto:board ?uri . }
julipc-p(huggingface)
What genre isPyChess from, which employes Craig Van Tilbury?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:PyChess prop:genre ?uri}
julipc-p(huggingface)
Where is Ethiopian Parliament Building located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ethiopian_Parliament_Building prop:locationCountry ?uri }
julipc-p(huggingface)
Which are the cities on the river which also flows in Tukwila, Washington ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:city <http://dbpedia.org/resource/Tukwila,_Washington> . ?x onto:city ?uri . ?x rdf:type onto:River}
julipc-p(huggingface)
Which award is presented by Downtown Athletic Club?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:presenter <http://dbpedia.org/resource/Downtown_Athletic_Club> . ?uri rdf:type onto:Award}
julipc-p(huggingface)
Who are the biological parents of Dannielynn Birkhead?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dannielynn_Birkhead onto:parent ?uri }
julipc-p(huggingface)
List the awards won by the spouse of Harriet Andersson?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Harriet_Andersson onto:partner ?x . ?x prop:awards ?uri . }
julipc-p(huggingface)
Which company owns the airlines whose hub is in Dubai?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:hubs <http://dbpedia.org/resource/Detroit> . ?x prop:parent ?uri . ?x rdf:type onto:Airline}
julipc-p(huggingface)
Which appointer of William Clark is the successor of Levi Lincoln Sr ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Levi_Lincoln,_Sr.> prop:successor ?uri. <http://dbpedia.org/resource/William_Clark> prop:appointer ?uri}
julipc-p(huggingface)
Which company's division is Audi India? Correct Question
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:divisions res:Audi_India }
julipc-p(huggingface)
What was the book that lead to Sagan's Cosmos, about?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Cosmos_(Carl_Sagan_book)> . ?x prop:subject ?uri . ?x rdf:type onto:Book}
julipc-p(huggingface)
What is the nationality of the chancellor who was served by Michael Mayr?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Mayr> onto:deputy ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Chancellor}
julipc-p(huggingface)
What is the official residence of the Helen Getachew which is also the palce of death of the Haile Selassie Gugsa ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Helen_Getachew onto:residence ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri}
julipc-p(huggingface)
Who built the Ford Y-block engine ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> onto:manufacturer ?uri }
julipc-p(huggingface)
What is the region of Lumberjack ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lumberjack_100 prop:region ?uri }
julipc-p(huggingface)
Where did the president study, who's the president of Besiktas JK?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Beşiktaş_JK_(wheelchair_basketball)> onto:president ?x . ?x prop:almaMater ?uri . }
julipc-p(huggingface)
How many awards have royal designers for industry awardwinners got?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards <http://dbpedia.org/resource/Royal_Designers_for_Industry> . ?x onto:award ?uri . ?uri rdf:type onto:Award}
julipc-p(huggingface)
Where is the team of Abdel Boucker located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Abdel_Bouckar prop:team ?x . ?x onto:location ?uri . }
julipc-p(huggingface)
For which other teams do members of tanzanian national football team play?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam res:Tanzania_national_football_team . ?x onto:team ?uri . }
julipc-p(huggingface)
What is the governing body of Burro Flats Painted Cave ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Burro_Flats_Painted_Cave onto:governingBody ?uri }
julipc-p(huggingface)
What are some cartoons distributed by a subsidiary of Time Warner?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany <http://dbpedia.org/resource/Time_Warner> . ?uri prop:distributor ?x . ?uri rdf:type onto:Cartoon}
julipc-p(huggingface)
Whose famous works have been illustrated by E W Kemble?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:illustrator res:E._W._Kemble . ?uri onto:notableWork ?x . }
julipc-p(huggingface)
Which Fox show is presented by Ryan Seacrest?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri prop:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri ...
julipc-p(huggingface)
How many TV show has distributor located in Burbank California ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity <http://dbpedia.org/resource/Burbank,_California> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the ceremonial county of East Tilbury ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri }
julipc-p(huggingface)
Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer <http://dbpedia.org/resource/Gary_Portnoy> . ?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rd...
julipc-p(huggingface)
List the common sports between Fr. Agnel Multipurpose School and Jamiatu Muslim Mindanao
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri. res:Jamiatu_Muslim_Mindanao onto:athletics ?uri}
julipc-p(huggingface)
Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> onto:service ?uri. <http://dbpedia.org/resource/James_F._O'Brien> onto:award ?uri}
julipc-p(huggingface)
What is the drafted team of the people expected to join toronto marlies?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:prospectTeam <http://dbpedia.org/resource/Toronto_Marlies> . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:predecessor <http://dbpedia.org/resource/Lucius_Cornelius_Lentulus_Crus> . ?uri onto:associate <http://dbpedia.org/resource/Marcus_Calpurnius_Bibulus> . ?uri rdf:type onto:OfficeHo...
julipc-p(huggingface)
How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerChoreographer <http://dbpedia.org/resource/Catarina_Lindgren> . ?x onto:formerPartner ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
List everything governed by the Democratic Party of US?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:leaderName <http://dbpedia.org/resource/Democratic_Party_(United_States)> . ?uri onto:location ?x . }
julipc-p(huggingface)
Name the current club of Abdelhameed Amarri ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Abdelhameed_Amarri prop:currentclub ?uri }
julipc-p(huggingface)
The pope whose shrine is in St Peter's Basilica was venerated in which sects?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine <http://dbpedia.org/resource/St._Peter's_Basilica> . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Pope}
julipc-p(huggingface)
Who is the father of Barbara Ann Crancer?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:child res:Barbara_Ann_Crancer . }
julipc-p(huggingface)
Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}
julipc-p(huggingface)
Which games publishers are located in California?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:location res:California . ?uri onto:publisher ?x . }
julipc-p(huggingface)
Where is the stadium of Philadelphia Rage ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Philadelphia_Rage onto:stadium ?uri }
julipc-p(huggingface)
Who produced the Pixar Image Computer?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:product res:Pixar_Image_Computer . }
julipc-p(huggingface)
What are the baseball teams who belongs to Guggenheim Partners?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:owner <http://dbpedia.org/resource/Guggenheim_Partners> . ?uri rdf:type onto:BaseballTeam}
julipc-p(huggingface)
Count all the things licensed as Software as a service.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:license <http://dbpedia.org/resource/Software_as_a_service> . }
julipc-p(huggingface)
Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2014–15_Virginia_Tech_Hokies_men's_basketball_team> prop:headcoach ?uri }
julipc-p(huggingface)
What is the resting place of the politician who succeeded Samuel Hayes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Hayes_(settler)> onto:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Politician}
julipc-p(huggingface)
What country had the title of 2001 Speedway Ekstraliga ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2001_Speedway_Ekstraliga prop:title ?x . ?x onto:country ?uri . }
julipc-p(huggingface)
How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:broadcastArea <http://dbpedia.org/resource/Rodrigues> . ?x prop:broadcastArea ?uri }
julipc-p(huggingface)
Count the drinks originated in England.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:origin <http://dbpedia.org/resource/England> . ?uri rdf:type onto:Beverage}
julipc-p(huggingface)
What is the total number of other non-fiction subject of the books whose one of the subject is Racism?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject <http://dbpedia.org/resource/Racism> . ?x onto:nonFictionSubject ?uri }
julipc-p(huggingface)
Name all the junctions of U.S. Route 59?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:U.S._Route_59 prop:junction ?uri }
julipc-p(huggingface)
What are some other services of the company whose service is Onedrive?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:service <http://dbpedia.org/resource/OneDrive> . ?x prop:services ?uri . ?x rdf:type onto:Company}
julipc-p(huggingface)
Give me some softwares which run on mac os
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Mac_OS> . ?uri rdf:type onto:Software}
julipc-p(huggingface)
What is the city of the television station whose affiliations is LATV?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:affiliations <http://dbpedia.org/resource/LATV> . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}
julipc-p(huggingface)
What is the state of the administrative region where Oscoda, Michigan is located?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oscoda,_Michigan> onto:isPartOf ?x . ?x onto:state ?uri . ?x rdf:type onto:AdministrativeRegion}
julipc-p(huggingface)
Who were all the people in office when bob hawke was the PM?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Bob_Hawke }
julipc-p(huggingface)
What is Bob Adams (American football) known for?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> prop:knownFor ?uri }
julipc-p(huggingface)
Who owns Chelsea F.C.?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:occupation <http://dbpedia.org/resource/Chelsea_F.C.> . }
julipc-p(huggingface)
What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> prop:affiliation ?uri. <http://dbpedia.org/resource/Duncan_U._Fletcher> onto:almaMater ?uri}
julipc-p(huggingface)
Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents <http://dbpedia.org/resource/Charles_Drummond_Ellis> . ?uri prop:knownFor <http://dbpedia.org/resource/Manhattan_Projec...
julipc-p(huggingface)
UEM group have made bridges crossing over what?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:designer res:UEM_Group . ?x prop:crosses ?uri . }
julipc-p(huggingface)
How many relatives are there of the people who died in Germany?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath <http://dbpedia.org/resource/Germany> . ?x onto:relation ?uri . }
julipc-p(huggingface)
Where do bachelor of arts live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:almaMater res:Bachelor_of_Arts . ?x onto:residence ?uri . }
julipc-p(huggingface)
How many mountain are there in Sierra Nevada range?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri rdf:type onto:Mountain}
julipc-p(huggingface)
What is the total number of other characters of the plays whose characters is Robin (comics)?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters <http://dbpedia.org/resource/Robin_(comics)> . ?x prop:characters ?uri }
julipc-p(huggingface)
What are the awards won by the spouse of Liv Ullmann ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liv_Ullmann onto:partner ?x . ?x prop:awards ?uri . }
julipc-p(huggingface)
What is the Recorded of the Kaptaan is also the headquarters of the Orient News ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Kaptaan prop:recorded ?uri. res:Orient_News prop:headquarters ?uri}
julipc-p(huggingface)
What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity <http://dbpedia.org/resource/Uganda> . ?x onto:nearestCity ?uri }
julipc-p(huggingface)
How many companies have developed cross platformed softwares?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem <http://dbpedia.org/resource/Cross-platform> . ?x onto:developer ?uri . }
julipc-p(huggingface)
List the shows whose network is run by BBC.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany <http://dbpedia.org/resource/BBC> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
How many titles were given to people who engaged in the Operation Dragoon?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Operation_Dragoon> . ?x onto:award ?uri . }
julipc-p(huggingface)
Which place founded by Penobscot Island Air is also the location fo Ellei Johndro ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Penobscot_Island_Air prop:founded ?uri. res:Ellei_Johndro onto:birthPlace ?uri}
julipc-p(huggingface)
Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme <http://dbpedia.org/resource/Gary_Portnoy> . ?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}
julipc-p(huggingface)
Which appointer of the Joseph Clay (Georgia) is also the President of the William Carmichael (diplomat) ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joseph_Clay_(Georgia)> onto:appointer ?uri. <http://dbpedia.org/resource/William_Carmichael_(diplomat)> prop:president ?uri}
julipc-p(huggingface)
Who is the employer of Michael M. Sears ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears prop:employer ?uri }
julipc-p(huggingface)
List things developed by Autoconf ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Autoconf onto:developer ?uri }
julipc-p(huggingface)
List all the artist of the TV shows which has McClain as one of the artist ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:artist <http://dbpedia.org/resource/McClain_(band)> . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Who is the person whose child performed with Tony Bennett?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs res:Tony_Bennett . ?uri onto:child ?x . }
julipc-p(huggingface)
Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth <http://dbpedia.org/resource/Thames_Estuary> . ?uri prop:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri rdf:typ...
julipc-p(huggingface)
Who all play for the Ivory Coast football team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:Ivory_Coast_national_football_team }
julipc-p(huggingface)
List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:layout <http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout> . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}
julipc-p(huggingface)
To how many places does the airlines fly, whose head office is located at the Gatwick Airport?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter <http://dbpedia.org/resource/Gatwick_Airport> . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
What are the television shows whose distributor is a division of Warner Bros. International TV?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:divisions <http://dbpedia.org/resource/Warner_Bros._International_Television> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionS...
julipc-p(huggingface)
Where is the arena of WPC Dynamo Moscow situated?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri }
julipc-p(huggingface)
Which relative of George Madison is the appointer of John Drayton ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Drayton prop:appointer ?uri. res:George_Madison onto:relation ?uri}
julipc-p(huggingface)
How many scientist have won an award by the society led by Venkatraman Ramakrishnan?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri prop:prizes ?x . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Who all did their high school in Denbigh high School?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:highSchool <http://dbpedia.org/resource/Denbigh_High_School_(Newport_News,_Virginia)> }
julipc-p(huggingface)