question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Count the number of religions followed by BJP members.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party <http://dbpedia.org/resource/Bharatiya_Janata_Party> . ?x onto:religion ?uri . }
julipc-p(huggingface)
What is the mascot of the rival school of Sullivan Central High?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sullivan_Central_High_School prop:rival ?x . ?x prop:mascot ?uri . }
julipc-p(huggingface)
What award has been awarded to both Dion Beebe and Charles LeMaire?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dion_Beebe onto:award ?uri. res:Charles_LeMaire prop:awards ?uri}
julipc-p(huggingface)
What is the birth name of Putri Raemawasti ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Putri_Raemawasti prop:birthName ?uri }
julipc-p(huggingface)
What is the party of the politicians whose children is Sanjay Gandhi ?
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:children <http://dbpedia.org/resource/Sanjay_Gandhi> . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}
julipc-p(huggingface)
Name the tenants of MAsterCard center wich is also the draft team of Antoine Bibeau?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Antoine_Bibeau prop:draftTeam ?uri}
julipc-p(huggingface)
What is the number of occupation of the people who died in tampa bay, florida?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Tampa,_Florida> . ?x onto:occupation ?uri . }
julipc-p(huggingface)
Who was the United States president who also served as a governor of Indiana Territory?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:branch res:Indiana_Territory }
julipc-p(huggingface)
List the people who were born in Gelnhausen and graduated from Pepperdine University?
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:birthPlace <http://dbpedia.org/resource/Gelnhausen> . ?uri prop:education <http://dbpedia.org/resource/Pepperdine_University> . ?uri rdf...
julipc-p(huggingface)
Musical artists who are associated with Ren & Angela were born where ?
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:associatedActs <http://dbpedia.org/resource/René_&_Angela> . ?x prop:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
Who designed the language integrated query?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri . }
julipc-p(huggingface)
Name the debut team of Dan Otero ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dan_Otero onto:debutTeam ?uri }
julipc-p(huggingface)
Who founded the Not on our Watch NGO?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> onto:foundedBy ?uri }
julipc-p(huggingface)
What is the name of the artist which worked on the subsequent work of Ella Loves Cole ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ella_Loves_Cole onto:subsequentWork ?x . ?x prop:artist ?uri . }
julipc-p(huggingface)
Which company owns Sony bank ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Sony_Bank onto:owningCompany ?uri }
julipc-p(huggingface)
Who is a religious figure titled superior general?
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:title <http://dbpedia.org/resource/Superior_general> . ?uri rdf:type onto:Religious}
julipc-p(huggingface)
List the employments of people who died in Tampa, Florida.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Tampa,_Florida> . ?x onto:occupation ?uri . }
julipc-p(huggingface)
What are some famous veterinary physicians known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:field res:Veterinary_physician . ?x prop:knownFor ?uri . }
julipc-p(huggingface)
List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?
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:music <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri prop:editing <http://dbpedia.org/resource/Julian_Doyle_(filmmaker)> . ?uri rd...
julipc-p(huggingface)
Name the children of the person who is the star of The Weathered Underground ?
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 { <http://dbpedia.org/resource/The_Weathered_Underground> onto:starring ?x . ?x prop:children ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Which owner of Chelsea F.C also owns Evraz ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> onto:owningCompany ?uri. <http://dbpedia.org/resource/Chelsea_F.C.> prop:owner ?uri}
julipc-p(huggingface)
Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:associate <http://dbpedia.org/resource/Marcus_Calpurnius_Bibulus> . ?uri onto:child <http://dbpedia.org/resource/Augustus> . ?uri rdf:type onto:OfficeHolder}
julipc-p(huggingface)
What are the movies whose screenplay is done by Eric Roth?
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:screenplay <http://dbpedia.org/resource/Eric_Roth> . ?uri rdf:type onto:Film}
julipc-p(huggingface)
What is the total number of writers whose singles are recorded in Miami?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/Miami> . ?x prop:writer ?uri . }
julipc-p(huggingface)
What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Sanggar_Agung prop:architecturalStyle ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
Who is the producer of album which has the song Money?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Money_(Pink_Floyd_song)> prop:album ?x . ?x prop:producer ?uri . }
julipc-p(huggingface)
List the Sci-fi TV shows with theme music given by Ron Grainer?
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:genre <http://dbpedia.org/resource/Science_fiction> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri rdf:...
julipc-p(huggingface)
What is the company to which Fusajiro Yamauchi proprietor to ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy <http://dbpedia.org/resource/Fusajiro_Yamauchi> . ?uri rdf:type onto:Company}
julipc-p(huggingface)
Who is the writer of mark twain Tonight ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mark_Twain_Tonight prop:writer ?uri }
julipc-p(huggingface)
How many members are there in the European Go Federation?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/European_Go_Federation> prop:membership ?uri . }
julipc-p(huggingface)
What is the mascot of the handball teams in the Turkish Handball Super League?
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:league <http://dbpedia.org/resource/Turkish_Handball_Super_League> . ?x prop:mascot ?uri . ?x rdf:type onto:HandballTeam}
julipc-p(huggingface)
What city was recorded in Live in detroit which is also the official residence of ken Holland ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_in_Detroit,_MI> onto:recordedIn ?uri. <http://dbpedia.org/resource/Ken_Holland> onto:residence ?uri}
julipc-p(huggingface)
Marika Gombitov makes songs in which languages?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:artist res:Marika_Gombitová . ?x prop:language ?uri . }
julipc-p(huggingface)
What are some musical artists associated with the ones signed up with EMI?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel <http://dbpedia.org/resource/EMI> . ?x onto:associatedMusicalArtist ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
Name the river which flows through the closest city of Mount Raimer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mount_Raimer prop:nearestCity ?x . ?x onto:river ?uri . }
julipc-p(huggingface)
Name the scientist whose supervisor also supervised Mary Ainsworth?
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:doctoralStudents <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
What are some relatives of armymen who died in Germany?
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:placeOfDeath <http://dbpedia.org/resource/Germany> . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson}
julipc-p(huggingface)
Which garrison of East Indies Station is also the route end of Mumbai Vadodara Express ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:East_Indies_Station onto:garrison ?uri}
julipc-p(huggingface)
To which political party does Virendra Kataria belongs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Virendra_Kataria prop:party ?uri }
julipc-p(huggingface)
Copley Medal has been awarded to which scientists?
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:awards <http://dbpedia.org/resource/Copley_Medal> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
What is the total number of awards whose presenter's headquarters is Beverly Hills, 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 prop:headquarters <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}
julipc-p(huggingface)
Who is the narrator of The Price of Beauty ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Price_of_Beauty onto:narrator ?uri }
julipc-p(huggingface)
Who is the producer of the device which is the operating system of Now TV ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Now_TV_(UK)> onto:operatingSystem ?x . ?x onto:manufacturer ?uri . }
julipc-p(huggingface)
How many artists have collaborated with famous guitar players?
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:notableInstruments <http://dbpedia.org/resource/Guitar> . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Artist}
julipc-p(huggingface)
How many politicians live in India?
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:residence <http://dbpedia.org/resource/India> . ?uri rdf:type onto:OfficeHolder}
julipc-p(huggingface)
What is the base currency of the country which operates the Marion Dufresne?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marion_Dufresne_(1995)> onto:operator ?x . ?x onto:currency ?uri . }
julipc-p(huggingface)
What is the region served by the governor of Stephen L.R. McNichols ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Stephen_L.R._McNichols prop:governor ?x . ?x onto:region ?uri . }
julipc-p(huggingface)
Who operates Liverpool Playhouse ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liverpool_Playhouse onto:operatedBy ?uri }
julipc-p(huggingface)
Who has composed songs produced by Terry Melcher?
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:producer <http://dbpedia.org/resource/Terry_Melcher> . ?x onto:composer ?uri . ?x rdf:type onto:Song}
julipc-p(huggingface)
To which series does Lost special belong to ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Lost_Special prop:series ?uri }
julipc-p(huggingface)
How many albums did the maker of The Band produce?
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:artist <http://dbpedia.org/resource/The_Band> . ?x onto:subsequentWork ?uri . ?uri rdf:type onto:Album}
julipc-p(huggingface)
List few musical artist whose notable instruments are Ludwig Drums and Remo?
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:notableInstruments <http://dbpedia.org/resource/Ludwig_Drums> . ?uri onto:instrument <http://dbpedia.org/resource/Remo> . ?uri rdf:type ...
julipc-p(huggingface)
How many rivers start in an English speaking country?
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:officialLanguage <http://dbpedia.org/resource/English_language> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}
julipc-p(huggingface)
Where Everybody knows you is the theme album of which show ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Where_Everybody_Knows_Your_Name onto:album ?uri }
julipc-p(huggingface)
Food in which countries has shallot in it?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Shallot> . ?x onto:country ?uri . ?x rdf:type onto:Food}
julipc-p(huggingface)
Which rivers have source origins asnorth western, 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:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> . ?uri rdf:type onto:River}
julipc-p(huggingface)
Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?
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:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Southend-on-Sea> . ?uri rdf:ty...
julipc-p(huggingface)
Alexander Magleby, a rugby player is alma mater to which university?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Alexander_Magleby prop:university ?uri }
julipc-p(huggingface)
What sport played at Islamic azad uni employes Craig Van Tilbury?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri}
julipc-p(huggingface)
List the products of the company which published Tweenies: Game Time.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tweenies:_Game_Time prop:publisher ?x . ?x prop:products ?uri . }
julipc-p(huggingface)
List the agencies located someplace lead by Alex Chalk.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:leaderName <http://dbpedia.org/resource/Alex_Chalk> . ?uri onto:location ?x . ?uri rdf:type onto:GovernmentAgency}
julipc-p(huggingface)
What religion are the characters of Absolutely Fabulous from?
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:series <http://dbpedia.org/resource/Absolutely_Fabulous> . ?x onto:religion ?uri . ?x rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
What are the movies whose music composer uses a Hammond organ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:instrument <http://dbpedia.org/resource/Hammond_organ> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Whihc birthpalce of Svetlana Gounkina is also the largest city of Union State ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}
julipc-p(huggingface)
Name the TV show with artist Christopher Franke and cast member Jason Carter ?
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:artist <http://dbpedia.org/resource/Christopher_Franke> . ?uri onto:starring <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri r...
julipc-p(huggingface)
Which artist married to Lee Krasner?
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:spouse <http://dbpedia.org/resource/Lee_Krasner> . ?uri rdf:type onto:Artist}
julipc-p(huggingface)
What teams did the ex teamplayers of lighthouse boy club start their career with?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:youthclubs res:Lighthouse_Boys_Club . ?x prop:debutteam ?uri . }
julipc-p(huggingface)
Where was the deadbody discovered of one of the alumni of General Educational Development?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:education res:General_Educational_Development . ?x prop:bodyDiscovered ?uri . }
julipc-p(huggingface)
Who designed the bridge in Oddamavadi?
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:locatedInArea <http://dbpedia.org/resource/Oddamavadi> . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}
julipc-p(huggingface)
What is the leader name of the settlements whose governing body is Municipal council?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:governingBody <http://dbpedia.org/resource/Municipal_council> . ?x onto:leaderName ?uri . ?x rdf:type onto:Settlement}
julipc-p(huggingface)
Name the co-founder of the record labels which have one of the founder as Chris DuBois ?
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:founder <http://dbpedia.org/resource/Chris_DuBois> . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}
julipc-p(huggingface)
List the companies operating in Australia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:regionServed res:Australia }
julipc-p(huggingface)
In which countries is coconut used as a food ingredient?
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:ingredient <http://dbpedia.org/resource/Coconut> . ?x prop:country ?uri . ?x rdf:type onto:Food}
julipc-p(huggingface)
How many people have worked for teams chaired by Patricia Amorim?
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:chairman <http://dbpedia.org/resource/Patrícia_Amorim> . ?x prop:name ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
How many kinds of games can be played on the Amiga?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Amiga> . ?x prop:genre ?uri . }
julipc-p(huggingface)
How many relatives are there of people fought in the Battle of the Bulge?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x onto:relation ?uri . }
julipc-p(huggingface)
How many genres of games can I find on the commodore CDTV?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Commodore_CDTV> . ?x onto:genre ?uri . }
julipc-p(huggingface)
Directors of which movies are buried in Ronda?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace res:Ronda . ?uri prop:director ?x . }
julipc-p(huggingface)
List the debut team of the baseball player who born in Houston.
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:birthPlace <http://dbpedia.org/resource/Houston> . ?x onto:debutTeam ?uri . ?x rdf:type onto:BaseballPlayer}
julipc-p(huggingface)
Who edited British Gazette ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri }
julipc-p(huggingface)
List the things for which the relatives of Mrunalini Kunte are known?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mrunalini_Kunte onto:relative ?x . ?x prop:knownFor ?uri . }
julipc-p(huggingface)
What acts and artists are associated with people who have worked with Divertis?
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:Divertis . ?x onto:associatedMusicalArtist ?uri . }
julipc-p(huggingface)
What are the notableworks of Russell T Davies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies prop:notableworks ?uri }
julipc-p(huggingface)
Which company has developed games whose music is done by Gerard Marino?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:composer <http://dbpedia.org/resource/Gerard_Marino> . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}
julipc-p(huggingface)
Who all have developed softwares for Unix Like OSes?
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:operatingSystem <http://dbpedia.org/resource/Unix-like> . ?x onto:developer ?uri . ?x rdf:type onto:Software}
julipc-p(huggingface)
What are some party leaders of the parties which have had a seat in Berlin?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:headquarter <http://dbpedia.org/resource/Berlin> . ?x onto:leader ?uri . ?x rdf:type onto:PoliticalParty}
julipc-p(huggingface)
Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/New_Sanno_Hotel> onto:tenant ?uri. <http://dbpedia.org/resource/Gary_Holder-Winfield> onto:militaryBranch ?uri}
julipc-p(huggingface)
List the director of The Adventures of mimi ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Adventures_of_Mimi_(video)> prop:director ?uri }
julipc-p(huggingface)
List sports managers who managed Middlesbrough F.C. and England national under-21 football 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 {?uri onto:managerClub <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?uri prop:managerclubs <http://dbpedia.org/resource/England_national_unde...
julipc-p(huggingface)
Name all the soccer players who played in a under 18 club for La Liga?
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:league <http://dbpedia.org/resource/La_Liga> . ?uri prop:youthclubs ?x . ?uri rdf:type onto:SoccerPlayer}
julipc-p(huggingface)
Which key perosn of the Elders is also the president of united World College ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Elders_(organization)> prop:keyPeople ?uri. <http://dbpedia.org/resource/United_World_Colleges> onto:president ?uri}
julipc-p(huggingface)
Who are the players whose current clubs have Ferran Soriano as chairman?
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:chairman <http://dbpedia.org/resource/Ferran_Soriano> . ?uri prop:currentclub ?x . ?uri rdf:type onto:Person}
julipc-p(huggingface)
What are some parties which have people from Mangalore as a member?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Mangalore . ?x prop:party ?uri . }
julipc-p(huggingface)
Which employer of Michael M. Sears is also the producer of Delta III ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Delta_III onto:manufacturer ?uri}
julipc-p(huggingface)
Name the largest city in the county where there is a Cy-Fair High School.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cy-Fair_High_School> onto:county ?x . ?x onto:largestCity ?uri . }
julipc-p(huggingface)
How many bacterias are there whose division is Firmicutes?
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:division <http://dbpedia.org/resource/Firmicutes> . ?uri rdf:type onto:Bacteria}
julipc-p(huggingface)
To which country does Peter Blay owe his allegiance?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Peter_Blay prop:allegiance ?uri }
julipc-p(huggingface)
Name the television show whose subsequent work is Crusade and Composer is Stewart Copeland?
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:subsequentWork <http://dbpedia.org/resource/Crusade_(TV_series)> . ?uri prop:composer <http://dbpedia.org/resource/Stewart_Copeland> . ?...
julipc-p(huggingface)
What are the current music bands of Chester Bennington?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers res:Chester_Bennington }
julipc-p(huggingface)
Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:successor <http://dbpedia.org/resource/Derick_Heathcoat-Amory,_1st_Viscount_Amory> . ?x prop:primeminister ?uri . }
julipc-p(huggingface)