question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What are the musicals based on, whose lyricist was Shelon Harnick?
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:lyrics <http://dbpedia.org/resource/Sheldon_Harnick> . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}
julipc-p(huggingface)
Who has given guest appearances on the TV Episodes whose was music done by Mama Makes 3?
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:music <http://dbpedia.org/resource/Mama_Makes_Three> . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}
julipc-p(huggingface)
What series is Mazes of Time from, and is produced by BBC multimedia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:BBC_Multimedia onto:product ?uri. res:Doctor_Who:_The_Mazes_of_Time onto:series ?uri}
julipc-p(huggingface)
What are the universities where athletics is regulated by National Collegiate Athletic Association?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri rdf:type onto:University}
julipc-p(huggingface)
Which office holder's resting place is Alta Mesa Memorial Park and Henry E. Catto, Jr. as predecessor ?
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/Alta_Mesa_Memorial_Park> . ?uri prop:predecessor <http://dbpedia.org/resource/Henry_E._Catto,_...
julipc-p(huggingface)
Name the TV show whose network is NBC and is the subsequent work of Fraiser ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:network <http://dbpedia.org/resource/NBC> . ?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
How many had their debut team coached by Chip Kelly?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:coach <http://dbpedia.org/resource/Chip_Kelly> . ?uri onto:debutTeam ?x . }
julipc-p(huggingface)
Who is the scientist whose academic advisor was Karl Ewald Hasse?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor <http://dbpedia.org/resource/Karl_Ewald_Hasse> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Malaysian highway authority has designed bridges over what things?
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:designer <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}
julipc-p(huggingface)
Which labels have published songs written by Harry Connick Jr?
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:writer <http://dbpedia.org/resource/Harry_Connick,_Jr.> . ?x prop:label ?uri . ?x rdf:type onto:Song}
julipc-p(huggingface)
List the academic discipline of the journals whose publisher is SAGE Publications.
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:publisher <http://dbpedia.org/resource/SAGE_Publications> . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}
julipc-p(huggingface)
What is the government type of Kumta ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Kumta prop:governmentType ?uri }
julipc-p(huggingface)
what kind of games can I find for PC 9800?
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:computingPlatform <http://dbpedia.org/resource/PC-9800_Series> . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}
julipc-p(huggingface)
After the death of which political figure, did the Coalition Provisional Authority came into power?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:successor res:Coalition_Provisional_Authority . }
julipc-p(huggingface)
Who owns the radio stations in Alabama?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:city <http://dbpedia.org/resource/Alabama> . ?x onto:owner ?uri . ?x rdf:type onto:RadioStation}
julipc-p(huggingface)
Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:editing <http://dbpedia.org/resource/Anthony_Harvey> . ?uri onto:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri rdf:type onto:Film}
julipc-p(huggingface)
what are the nicknames of the people who are in Ekstraliga?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:league <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x prop:nickname ?uri . }
julipc-p(huggingface)
List the alma mater of the person who is wedded to Sissela Bok.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Sissela_Bok . ?x prop:almaMater ?uri . }
julipc-p(huggingface)
List all the members of the organization whose one of the members is Bangladesh ?
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:membership <http://dbpedia.org/resource/Bangladesh> . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}
julipc-p(huggingface)
Which sports are played in schools founded by Fr Almeida?
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/Fr._Almeida> . ?x onto:sport ?uri . ?x rdf:type onto:School}
julipc-p(huggingface)
What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?
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/Foundation_for_Economic_Education> onto:keyPerson ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Economist}
julipc-p(huggingface)
List all discipline of the journals whose one of the discipline is Cerebral blood flow ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline <http://dbpedia.org/resource/Cerebral_blood_flow> . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}
julipc-p(huggingface)
Which high school of jerry Tagge is also the nearest city of Tennie laura ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerry_Tagge> prop:highSchool ?uri. <http://dbpedia.org/resource/Tennie_and_Laura_(schooner)> prop:nearestCity ?uri}
julipc-p(huggingface)
In how many different places do Starwood hotels and resorts worldwide operate?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operator <http://dbpedia.org/resource/Starwood_Hotels_and_Resorts_Worldwide> . ?x prop:address ?uri . }
julipc-p(huggingface)
Which athletics of Jaimatu Muslim Mindano is same as the genre of the Fritz Chess ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Fritz_Chess onto:genre ?uri}
julipc-p(huggingface)
How many utopian and dystopian fiction books are there?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:literaryGenre <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . }
julipc-p(huggingface)
Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Anthrax> . ?uri onto:academicAdvisor <http://dbpedia.org/resource/Karl_Ewald_Hasse> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Who appointed the governor under whom Richard Winn works?
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:lieutenant <http://dbpedia.org/resource/Richard_Winn> . ?x prop:appointer ?uri . ?x rdf:type onto:Governor}
julipc-p(huggingface)
Where is Vietnam Airlines located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Vietnam_Airlines onto:location ?uri }
julipc-p(huggingface)
Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/INKAS> prop:locations ?uri. <http://dbpedia.org/resource/T.I._Ahmadiyya_Senior_High_School,_Kumasi> onto:denomination ?uri}
julipc-p(huggingface)
Which TV show's company is PlayTone and is produced by Stephen E. Ambrose ?
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:company <http://dbpedia.org/resource/Playtone> . ?uri prop:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri rdf:type ont...
julipc-p(huggingface)
What is the route end of NorthSouth Transport Corridor ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:North–South_Transport_Corridor onto:routeEnd ?uri }
julipc-p(huggingface)
List the architect of the buildings whose one of the architect is Philip Webb?
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:architect <http://dbpedia.org/resource/Philip_Webb> . ?x prop:architect ?uri . ?x rdf:type onto:Building}
julipc-p(huggingface)
What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1972_Winter_Olympics_–_Women's_downhill> onto:bronzeMedalist ?x . ?x prop:birthPlace ?uri . }
julipc-p(huggingface)
Who is the manufacturer of engine of Jeep Forward Control ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jeep_Forward_Control prop:engine ?x . ?x onto:manufacturer ?uri . }
julipc-p(huggingface)
Which company founded in New Mexico manufactures Visual Studio ?
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:foundation <http://dbpedia.org/resource/New_Mexico> . ?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri rd...
julipc-p(huggingface)
Which government agency is run by Supachai Somcharoen?
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:leader <http://dbpedia.org/resource/Supachai_Somcharoen> . ?x prop:agencyName ?uri . ?x rdf:type onto:GovernmentAgency}
julipc-p(huggingface)
What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> onto:owner ?uri. <http://dbpedia.org/resource/Dart_(programming_language)> onto:developer ?uri}
julipc-p(huggingface)
Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Agaricus_bisporus> . ?x onto:ingredient ?uri }
julipc-p(huggingface)
List all the tenants of the stadium where the WWF Summer Slam 2004 took place.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/SummerSlam_(2004)> prop:venue ?x . ?x onto:tenant ?uri . }
julipc-p(huggingface)
Who were the founders of Sea Gayle Music?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sea_Gayle_Music prop:founder ?uri }
julipc-p(huggingface)
What religion's politicians are in the Malaysian Chinese association?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:party <http://dbpedia.org/resource/Malaysian_Chinese_Association> . ?x onto:religion ?uri . ?x rdf:type onto:Politician}
julipc-p(huggingface)
How many movies are directed by the spouse of Dolores del Ro?
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:partner <http://dbpedia.org/resource/Dolores_del_Río> . ?uri prop:director ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
What are some bands out to texarkana?
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:origin <http://dbpedia.org/resource/Texarkana,_Texas> . ?uri rdf:type onto:Band}
julipc-p(huggingface)
What is the military branch of John Tower ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Tower onto:militaryBranch ?uri }
julipc-p(huggingface)
In which country was GM was firt aired which is also the mouth country of Upper Neretva?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Upper_Neretva> onto:mouthCountry ?uri. <http://dbpedia.org/resource/Gümüş_(TV_series)> prop:firstAired ?uri}
julipc-p(huggingface)
How many information appliance are manufactured by companies located in Taiwan?
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:locationCity <http://dbpedia.org/resource/Taiwan> . ?uri onto:manufacturer ?x . ?uri rdf:type onto:InformationAppliance}
julipc-p(huggingface)
How many people are in the England national football team?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam <http://dbpedia.org/resource/England_national_football_team> . }
julipc-p(huggingface)
With which musical artist is the producer of Spotlight associated ?
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/Spotlight_(Jennifer_Hudson_song)> onto:producer ?x . ?x prop:associatedActs ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
Where was the current champion of Egyptian Open born ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Egyptian_Open onto:champion ?x . ?x onto:birthPlace ?uri . }
julipc-p(huggingface)
In what battles did president Park Chung-hee participate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:commander <http://dbpedia.org/resource/Park_Chung-hee> . ?uri rdf:type onto:MilitaryConflict}
julipc-p(huggingface)
who is the husband of Rosie Huntington Whiteley?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> onto:partner ?uri }
julipc-p(huggingface)
What is the river whose tributary is Zarqa River?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:leftTributary <http://dbpedia.org/resource/Zarqa_River> . ?uri rdf:type onto:River}
julipc-p(huggingface)
Who holds stock in the railway lines ending in Washington DC?
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:routeEnd <http://dbpedia.org/resource/Union_Station_(Washington,_D.C.)> . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}
julipc-p(huggingface)
Which religion does the leader of Church and Wellesley follow?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Church_and_Wellesley prop:leaderName ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
Who are the local authority of Buckhurst Hill County High School ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri }
julipc-p(huggingface)
Who made the singles on the famous album Aida?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:album <http://dbpedia.org/resource/Elton_John_and_Tim_Rice's_Aida> . ?x onto:musicalArtist ?uri . ?x rdf:type onto:Single}
julipc-p(huggingface)
List all the former broadcast network of WMDN ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:WMDN onto:formerBroadcastNetwork ?uri }
julipc-p(huggingface)
What company's founder is Jim Harris?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:founder <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> }
julipc-p(huggingface)
Which religions are practiced in India?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:hometown res:India . ?x prop:religion ?uri . }
julipc-p(huggingface)
Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:team res:Chicago_Bulls . ?uri prop:draftTeam res:Los_Angeles_Clippers . }
julipc-p(huggingface)
Which New Mexico company provides One Drive as a service ?
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:foundation <http://dbpedia.org/resource/New_Mexico> . ?uri prop:services <http://dbpedia.org/resource/OneDrive> . ?uri rdf:type onto:Com...
julipc-p(huggingface)
What team has players born in Dominican Republic ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace res:Dominican_Republic . ?x onto:team ?uri . }
julipc-p(huggingface)
Name the party of Indira Gandhi ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Indira_Gandhi onto:party ?uri }
julipc-p(huggingface)
Who was the opponent of Robert Carr, 1st Earl of Somerset ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Carr,_1st_Earl_of_Somerset> onto:opponent ?uri }
julipc-p(huggingface)
What is the common country of Ganz UV and Balaton wine region ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Balaton_wine_region onto:location ?uri}
julipc-p(huggingface)
What is the mascot of Celal Bayar University ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Celal_Bayar_University prop:mascot ?uri }
julipc-p(huggingface)
Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:restingplace res:William_Henry_Harrison_Tomb_State_Memorial . ?uri onto:child res:John_Scott_Harrison . }
julipc-p(huggingface)
Why did Letita McTavish Hargrave and Sextus Barbour die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Letitia_MacTavish_Hargrave onto:deathCause ?uri. res:Sextus_Barbour prop:deathCause ?uri}
julipc-p(huggingface)
Name the constituency of Domenico Modugno ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Domenico_Modugno prop:constituency ?uri }
julipc-p(huggingface)
Name the president whose had relatives in Clinton family and lieutenant named Joe Purcell?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:relation <http://dbpedia.org/resource/Clinton_family> . ?uri onto:lieutenant <http://dbpedia.org/resource/Joe_Purcell> . ?uri rdf:type onto:President}
julipc-p(huggingface)
What discipline was The Chess Monthly about ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri }
julipc-p(huggingface)
Which saints were the messengers of Islam?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:veneratedIn <http://dbpedia.org/resource/Islam> . ?uri rdf:type onto:Saint}
julipc-p(huggingface)
tonle sap flows into which river?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:rightTributary res:Tonlé_Sap }
julipc-p(huggingface)
What awards were given to the producer of Chicken Little?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> onto:producer ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
What water bodies have primary inflows sa Kemijoki?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:inflow res:Kemijoki }
julipc-p(huggingface)
Where was WiZeefa founded ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:WiZeefa prop:foundation ?uri }
julipc-p(huggingface)
Where is Richard Stites located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Richard_Stites onto:birthPlace ?uri }
julipc-p(huggingface)
Which drinks have emerged from the 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 onto:origin <http://dbpedia.org/resource/United_States> . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}
julipc-p(huggingface)
Who composed the lyrics of Holler If Ya Hear Me ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Holler_If_Ya_Hear_Me_(musical)> prop:lyrics ?uri }
julipc-p(huggingface)
What is the headquarters of the public transit system which is the system of Bottineau LRT ?
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/Bottineau_LRT> prop:system ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}
julipc-p(huggingface)
What units are garrisoned in the Pentagon?
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:garrison <http://dbpedia.org/resource/The_Pentagon> . ?uri rdf:type onto:MilitaryUnit}
julipc-p(huggingface)
What is the hometown of John Speraw ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:John_Speraw prop:hometown ?uri }
julipc-p(huggingface)
Count the journals in the field of Philosophy.
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:discipline <http://dbpedia.org/resource/Philosophy> . ?uri rdf:type onto:AcademicJournal}
julipc-p(huggingface)
Which scientist advised a doctoral student named Erban Ieica?
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/Șerban_Țițeica> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Where are the Dinamo Krasnodar players born?
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:club <http://dbpedia.org/resource/Dinamo_Krasnodar> . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}
julipc-p(huggingface)
How many major shrine are there, of the saints whose beatified by Pope Pius XI ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy <http://dbpedia.org/resource/Pope_Pius_XI> . ?x onto:majorShrine ?uri . }
julipc-p(huggingface)
Name the TV shows owned by divisions of CBS?
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:parent <http://dbpedia.org/resource/CBS> . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> onto:academicDiscipline ?uri }
julipc-p(huggingface)
What is the agency name of the Ministry of Information and Communication Technology (Thailand) and distribution region of the Channel 9 MCOT HD ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ministry_of_Information_and_Communication_Technology_(Thailand)> prop:agencyName ?uri. <http://dbpedia.org/resource/Channel_9_MCOT_HD> prop:city ?uri}
julipc-p(huggingface)
Which gaming console's central processing unit is microprocessor and built by Sony?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:cpu <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri onto:manufacturer <http://dbpedia.org/resource/Sony> . }
julipc-p(huggingface)
List the home stadiums of the teams in the Russian Premier League?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:league res:2011–12_Russian_Premier_League . ?x onto:homeStadium ?uri . }
julipc-p(huggingface)
Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?
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:grandsire <http://dbpedia.org/resource/Wild_Risk> . ?x prop:race ?uri . ?uri rdf:type onto:HorseRace}
julipc-p(huggingface)
Give me the list of people who scaled mountains in Sierra Nevada?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?x onto:firstAscentPerson ?uri . }
julipc-p(huggingface)
What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?
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:cinematography <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri onto:musicComposer <http://dbpedia.org/resource/Vangelis> . ?uri r...
julipc-p(huggingface)
What are the common sports played by jamiatu Muslim mindanao and Polytechnic University of Philippines Taguig ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}
julipc-p(huggingface)
Count the different origins of members of the Vitis Vinifera species.
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:species <http://dbpedia.org/resource/Vitis_vinifera> . ?x onto:origin ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
What magazine published Allal and is the employer of Peter Bergman?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allal> onto:publisher ?uri. <http://dbpedia.org/resource/Peter_Bergman_(comedian)> onto:employer ?uri}
julipc-p(huggingface)
Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?
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/Dolley_Madison> . ?uri prop:restingplace <http://dbpedia.org/resource/Montpelier_(Orange,_Virginia)>...
julipc-p(huggingface)
Where was David Scherman trained ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:David_Scherman onto:training ?uri }
julipc-p(huggingface)