question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
For how many things are people famous, who were born in Nebraska?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Nebraska> . ?x onto:knownFor ?uri . }
julipc-p(huggingface)
List the maintainers of Pandaruan Bridge?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri }
julipc-p(huggingface)
List the starring of the movies whose label is T-Series ?
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:label <http://dbpedia.org/resource/T-Series> . ?x prop:starring ?uri . ?x rdf:type onto:Film}
julipc-p(huggingface)
What is the home town of the musical artist who is the current members of Slapstick?
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/Slapstick_(band)> prop:currentMembers ?x . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
What are some rivers in Zambia which have a dam on them?
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:country <http://dbpedia.org/resource/Zambia> . ?x onto:river ?uri . ?x rdf:type onto:Dam}
julipc-p(huggingface)
What is the religion of the successor of Chatumongol Sonakul?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chatumongol_Sonakul onto:successor ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
What is the label of the singles whose group is Outlawz ?
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:musicalArtist <http://dbpedia.org/resource/Outlawz> . ?x prop:label ?uri . ?x rdf:type onto:Single}
julipc-p(huggingface)
What are the television shows whose network's successor is BBC Two?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:successor <http://dbpedia.org/resource/BBC_Two> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
what does the cahora bassa flow into?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri }
julipc-p(huggingface)
where did Alfred Tarnowski die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Alfred_Tarnowski prop:placeOfDeath ?uri }
julipc-p(huggingface)
In which city is Arsenal Cider House ? located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Arsenal_Cider_House prop:locationCity ?uri }
julipc-p(huggingface)
Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?
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:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri prop:voices <http://dbpedia.org/resource/Eliza_Schneider> . ?uri ...
julipc-p(huggingface)
Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri}
julipc-p(huggingface)
List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Laszlo_Bellak onto:deathPlace ?uri}
julipc-p(huggingface)
Name the common record label of I pray on Christmas and Next Thing ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:Next_Thing onto:recordLabel ?uri}
julipc-p(huggingface)
List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?
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:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri prop:writer <http://dbpedia.org/resource/John_Orloff> . ?uri rdf:type o...
julipc-p(huggingface)
What is the alma mater of Fikret Orman?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fikret_Orman prop:almaMater ?uri }
julipc-p(huggingface)
Where are the National Academy Museum and School awardwinners buried?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }
julipc-p(huggingface)
Where is the person from whose military rank is Airman first class?
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:militaryRank <http://dbpedia.org/resource/Airman_first_class> . ?x prop:state ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Who wrote the US steel hour?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_United_States_Steel_Hour onto:writer ?uri }
julipc-p(huggingface)
Where is Snake Island located ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Snake_Island_(Black_Sea)> prop:locationCountry ?uri }
julipc-p(huggingface)
List all the co-founders of the non for profit which have founding member as David pressman ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy <http://dbpedia.org/resource/David_Pressman> . ?x onto:foundedBy ?uri . ?x rdf:type onto:Non-ProfitOrganisation}
julipc-p(huggingface)
What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri. res:Clyde_McNeal prop:deathDate ?uri}
julipc-p(huggingface)
Which soccer players are currently playing for NYC FC?
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:currentclub <http://dbpedia.org/resource/New_York_City_FC> . ?uri rdf:type onto:SoccerPlayer}
julipc-p(huggingface)
Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:education <http://dbpedia.org/resource/Saint_Petersburg> . ?uri onto:child <http://dbpedia.org/resource/Lyubov_Dostoyevskaya> . ?uri rdf:type onto:Writer}
julipc-p(huggingface)
What shows used to air on the channel which was earlier known as "The Comedy Central"?
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:predecessor <http://dbpedia.org/resource/The_Comedy_Channel_(United_States)> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionSh...
julipc-p(huggingface)
Which company owns Evraz ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri }
julipc-p(huggingface)
How many party leaders are there whose parties are headquartered in Berlin?
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:headquarter <http://dbpedia.org/resource/Berlin> . ?x onto:leader ?uri . ?uri rdf:type onto:Politician}
julipc-p(huggingface)
Where was the trainer of Java Gold born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Java_Gold prop:trainer ?x . ?x prop:birthPlace ?uri . }
julipc-p(huggingface)
Where can I find some buildings of modern architecture?
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:architecturalStyle <http://dbpedia.org/resource/Modern_architecture> . ?x prop:address ?uri . ?x rdf:type onto:Building}
julipc-p(huggingface)
Who are the people who played for San Francisco 49ers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:team res:San_Francisco_49ers . }
julipc-p(huggingface)
Name a famous relative of barry voight
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:relative res:Barry_Voight . }
julipc-p(huggingface)
With which artist did the musical artist of Groove Thang collaborated ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Groove_Thang onto:musicalArtist ?x . ?x prop:associatedActs ?uri . }
julipc-p(huggingface)
Where is the office of P Elmo Futrell Jr?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/P._Elmo_Futrell,_Jr.> prop:office ?uri . }
julipc-p(huggingface)
Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?
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/Royal_Society> . ?uri onto:academicAdvisor <http://dbpedia.org/resource/Franz_Brentano> . ?uri rdf:t...
julipc-p(huggingface)
What are the last two studio albums of Moondog Matinee ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri }
julipc-p(huggingface)
Where can i find salad based food?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Salad . ?x prop:country ?uri . }
julipc-p(huggingface)
List places that are associated to cities in the state of Mecklenburg-Vorpommern.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:federalState <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?uri prop:cities ?x . }
julipc-p(huggingface)
Which awards did the writer, who is the creator of Creature Comforts, won ?
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/Creature_Comforts> prop:creator ?x . ?x prop:awards ?uri . ?x rdf:type onto:Writer}
julipc-p(huggingface)
Who all have written songs that were then recorded in the Criteria Studios?
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:recordedIn <http://dbpedia.org/resource/Criteria_Studios> . ?x prop:writer ?uri . ?x rdf:type onto:MusicalWork}
julipc-p(huggingface)
Count the number of sports played by the universities whihc also plays Volleyball ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/Volleyball> . ?x prop:athletics ?uri }
julipc-p(huggingface)
In which areas are the radio stations of Monticello, Maine available too?
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/Monticello,_Maine> . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}
julipc-p(huggingface)
Through how many labels has Katy B released her singles?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer <http://dbpedia.org/resource/Katy_B> . ?x onto:recordLabel ?uri . }
julipc-p(huggingface)
Who appointed William L. Dayton ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:William_L._Dayton onto:appointer ?uri }
julipc-p(huggingface)
Trevor Peacock has narrated in which movie?
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:narrator <http://dbpedia.org/resource/Trevor_Peacock> . ?uri rdf:type onto:Film}
julipc-p(huggingface)
To which educational institutions did Lesli Sanchez go for her studies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Leslie_Sanchez onto:education ?uri }
julipc-p(huggingface)
What are some famous artists who rocked a Les Paul?
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/Gibson_Les_Paul> . ?uri rdf:type onto:MusicalArtist}
julipc-p(huggingface)
Name the sstadium of 2015 Pro Duta FC season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri }
julipc-p(huggingface)
Name some people who are buried in a place governed by the US Department of the Interior?
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:governingBody <http://dbpedia.org/resource/United_States_Department_of_the_Interior> . ?uri prop:restingplace ?x . ?uri rdf:type onto:Per...
julipc-p(huggingface)
Pointe d'Aveneyre belongs to which mountain range?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> onto:mountainRange ?uri }
julipc-p(huggingface)
Jerry Bock's musicals has been adapted from how many things?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/Jerry_Bock> . ?x onto:basedOn ?uri . }
julipc-p(huggingface)
Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri onto:director <http://dbpedia.org/resource/Joel_Schumacher> }
julipc-p(huggingface)
In which city was the company founded , which owns Grasim Bhiwani Textiles?
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/Grasim_Bhiwani_Textiles> prop:parent ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}
julipc-p(huggingface)
What television shows's distributor is Eurovision?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Eurovision_(network)> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the judge of the TV show whose one of the judge is Ludacris ?
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:judges <http://dbpedia.org/resource/Ludacris> . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Whose youth clubs used to participate in Argentine Primera Division?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:league res:Argentine_Primera_División . ?uri prop:youthclubs ?x . }
julipc-p(huggingface)
List some people who were opponents of someone who was died by hanging?
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:deathCause <http://dbpedia.org/resource/Hanging> . ?x onto:opponent ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Who owns the railway line which goes through the Newark Station?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newark_station_(Delaware)> prop:line ?x . ?x prop:owner ?uri . }
julipc-p(huggingface)
Which magazine's editor is married to Crystal Harris?
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:spouse <http://dbpedia.org/resource/Crystal_Harris> . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}
julipc-p(huggingface)
What is the currency of the country of Kerguelen Islands?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:governmentType ?x . ?x onto:currency ?uri . }
julipc-p(huggingface)
Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?
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:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri prop:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?ur...
julipc-p(huggingface)
Which sports are played in the alma mater of Amitava Datta?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Amitava_Datta prop:almaMater ?x . ?x onto:sport ?uri . }
julipc-p(huggingface)
What is the parent company of Edsel?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri }
julipc-p(huggingface)
What are some TV shows whose voice actors are from Truckee, California, US?
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/Truckee,_California> . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, 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 ?uri WHERE {?uri prop:restingPlace <http://dbpedia.org/resource/Palo_Alto,_California> . ?uri onto:award <http://dbpedia.org/resource/Screen_Actors_Guild_Life...
julipc-p(huggingface)
How many shows are made by Playtone?
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 {?uri prop:company <http://dbpedia.org/resource/Playtone> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the mascot of the universities which are a part of National Collegiate Athletic Association.
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:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?x prop:mascot ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
What is the route junction of Rhode Island Route 15 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri }
julipc-p(huggingface)
What is the famous relative of Mrunalini Kunte known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Mrunalini_Kunte . ?x prop:knownFor ?uri . }
julipc-p(huggingface)
From which country is Lawrence Okoye's nationality ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri }
julipc-p(huggingface)
From which party is the politician who was selected in Barasat constituency?
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:constituency <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}
julipc-p(huggingface)
Name the associate acts of Martin Pugh?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri }
julipc-p(huggingface)
Who authored the work illustrated by Hiroyuki Takei?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:illustrator res:Hiroyuki_Takei . ?x prop:author ?uri . }
julipc-p(huggingface)
List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:president <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x onto:president ?uri . ?x rdf:type onto:School}
julipc-p(huggingface)
Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?
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:openingTheme <http://dbpedia.org/resource/The_Best_of_Both_Worlds_(song)> . ?uri prop:executiveProducer <http://dbpedia.org/resource/Ste...
julipc-p(huggingface)
What are the tenants of Mercedes-Benz Superdome?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> onto:tenant ?uri }
julipc-p(huggingface)
What is the birth city of trainer of Leallah?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Leallah prop:trainer ?x . ?x prop:birthPlace ?uri . }
julipc-p(huggingface)
What are some TV shows similar to the one produced by Susie Liggat?
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/Susie_Liggat> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Which television show is based in Massachusetts and has opening theme as "Where Everybody Knows Your Name" ?
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/Where_Everybody_Knows_Your_Name> . ?uri onto:location <http://dbpedia.org/resource/Massachusetts> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Name the software which has been developed by John Fanning ?
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:developer <http://dbpedia.org/resource/John_Fanning_(businessman)> . ?uri rdf:type onto:Software}
julipc-p(huggingface)
What is the mouth mountain of Current River (Missouri) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Current_River_(Missouri)> onto:mouthMountain ?uri }
julipc-p(huggingface)
Who has canonized someone who's a doctor of the church?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:titles res:Doctor_of_the_Church . ?x onto:canonizedBy ?uri . }
julipc-p(huggingface)
Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident <http://dbpedia.org/resource/James_Roberts_(trade_unionist)> . ?x onto:restingPlace ?uri . ?x rdf:type onto:MemberOfParliament}
julipc-p(huggingface)
What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?
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/Smerinthus_saliceti> onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist}
julipc-p(huggingface)
Where is the ground of the soccer club, which has Alan Kusov as a team member ?
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/Alan_Kusov__11> onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub}
julipc-p(huggingface)
From where did the son of Gustavo Rojas Pinilla graduate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gustavo_Rojas_Pinilla onto:child ?x . ?x prop:almaMater ?uri . }
julipc-p(huggingface)
What currencies are prevalent in the countries governed by the President of France?
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:leaderTitle <http://dbpedia.org/resource/President_of_France> . ?x onto:currency ?uri . ?x rdf:type onto:Country}
julipc-p(huggingface)
Which company manufactured Delta III?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri }
julipc-p(huggingface)
In which fields are pupils of Edouard Chavannes working?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Édouard_Chavannes . ?x prop:fields ?uri . }
julipc-p(huggingface)
Who is the artist of Time Radio hour ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Theme_Time_Radio_Hour prop:creator ?uri }
julipc-p(huggingface)
List the prospect team of Robin Kovacs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Robin_Kovacs prop:prospectTeam ?uri }
julipc-p(huggingface)
Where did the genres originate, which were in the Harry and the Potters album?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> onto:genre ?x . ?x onto:stylisticOrigin ?uri . }
julipc-p(huggingface)
How many sitcoms are there whose theme music is composed by a New Yorker?
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:hometown <http://dbpedia.org/resource/New_York> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Which band made the song Take me There, and has collaborated with Blayse in the past?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Take_Me_There_(Blackstreet_&_Mýa_song)> onto:musicalBand ?uri. <http://dbpedia.org/resource/Blayse> onto:associatedBand ?uri}
julipc-p(huggingface)
Who was succeeded by Arthur Gegei as the office ho0lder ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:successor res:Artúr_Görgei . }
julipc-p(huggingface)
Give me a count of movies whose editor is Mark Stevens?
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 {?uri prop:editing <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri rdf:type onto:Film}
julipc-p(huggingface)
How many other awards have been given to people who have won the Golden Globe?
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:award <http://dbpedia.org/resource/Golden_Globe_Award> . ?x prop:awards ?uri . ?uri rdf:type onto:Award}
julipc-p(huggingface)
Name the mountain located in California and has parent peak as Nevado de Toluca ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?uri onto:parentMountainPeak <http://dbpedia.org/resource/Nevado_de_Toluca> . ?uri rdf:type onto:Mountain}
julipc-p(huggingface)
Which person works at the American Magazine?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:employer <http://dbpedia.org/resource/The_American_Magazine> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
What was developed by someone working in Cockroach Labs?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Cockroach_Labs . ?uri prop:author ?x . }
julipc-p(huggingface)