question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Count the number of battles fought by the military person involved in Morocco?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Morocco> . ?x prop:battles ?uri }
Orange(huggingface)
Which office of Walter Evans Edge is also the part of Atlantic seaboard fall lines ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Atlantic_Seaboard_fall_line onto:part ?uri. res:Walter_Evans_Edge prop:office ?uri}
Orange(huggingface)
Which river originate from limerick?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation <http://dbpedia.org/resource/Limerick> . ?uri rdf:type onto:River}
Orange(huggingface)
How many corporations were founded in Texas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/Texas> . ?uri rdf:type onto:Company}
Orange(huggingface)
How many teams have used the stadium which hosted the WCW mayhem?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/WCW_Mayhem> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto...
Orange(huggingface)
Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:species <http://dbpedia.org/resource/American_Pekin_duck> . ?uri prop:relatives <http://dbped...
Orange(huggingface)
How many different currencies are used in the places governed by the president of France?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderTitle <http://dbpedia.org/resource/President_of_France> . ?x onto:currency ?uri . }
Orange(huggingface)
what kind of games can I find for PC 9800?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> 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:t...
Orange(huggingface)
How many theme musics have been composed by Julian Gingell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer <http://dbpedia.org/resource/Julian_Gingell> . }
Orange(huggingface)
List the cast member of the movies whose producer is Mark Johnson.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:producer <http://dbpedia.org/resource/Mark_Johnson_(producer)> . ?x onto:starring ?uri . ?x rdf:type onto:Film}
Orange(huggingface)
Where was the engineer born who manufactured EP R.E.P. 1?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Esnault-Pelterie_R.E.P._1> prop:manufacturer ?x . ?x onto:birthPlace ?uri . }
Orange(huggingface)
Where was James H. Fields buried?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:James_H._Fields prop:placeofburial ?uri }
Orange(huggingface)
Where is the VP buried, which was served by Frederick Cooke?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frederick_Cooke_(socialist)> onto:vicePresident ?x . ?x onto:restingPlace ?uri . }
Orange(huggingface)
List down all the cast members of Tony n' Tina's Wedding ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tony_n'_Tina's_Wedding> prop:starring ?uri }
Orange(huggingface)
On what subject does WTJC-LP air?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WTJC-LP> prop:format ?uri }
Orange(huggingface)
How many artists have their works in the Sao Paolo Museum of Art?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum <http://dbpedia.org/resource/São_Paulo_Museum_of_Art> . ?x prop:artist ?uri . ?...
Orange(huggingface)
Who were the pole drivers in GP when Damon hill was the first driver?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:firstDriver <http://dbpedia.org/resource/Damon_Hill> . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}
Orange(huggingface)
Who 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 }
Orange(huggingface)
What is the common nickname given both to Harding academy and Lyons township high school?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harding_Academy_(Memphis)> prop:nickname ?uri. <http://dbpedia.org/resource/Lyons_Township_High_School> prop:nickname ?uri . }
Orange(huggingface)
Who is the president of Carl Stokes and Wyche Fowler ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Wyche_Fowler onto:president ?uri}
Orange(huggingface)
How many bands are signed up with Kobalt Label Services?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:recordLabel <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri rdf:type onto:Band}
Orange(huggingface)
Which leader of United States House of Representatives was the appointer of John Drayton?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri. <http://dbpedia.org/resource/John_Drayton> prop:appointer ?uri}
Orange(huggingface)
List the total number of regions of the building which are located in Grand Forks Air Force Base?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region <http://dbpedia.org/resource/Grand_Forks_Air_Force_Base> . ?x onto:region ?uri }
Orange(huggingface)
What is the largest city of the birthplace of Pat Kirkwood?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> prop:birthplace ?x . ?x onto:largestCity ?uri . }
Orange(huggingface)
Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:label <http://dbpedia.org/resource/Celluloid_Records> . ?uri onto:associatedMusicalArtist <ht...
Orange(huggingface)
Who are the relatives of the character after which Quagmire's Quagmire was made?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Quagmire's_Quagmire> . ?uri onto:relative ?x . }
Orange(huggingface)
With whom is the institution of David Charles affiliated?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Charles_(physician)> prop:workInstitutions ?x . ?x prop:affiliation ?uri . }
Orange(huggingface)
What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations <http://dbpedia.org/resource/Mediterranean_Sea> . ?x prop:destinations ?uri }
Orange(huggingface)
How many companies serve the Australian region?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:regionServed <http://dbpedia.org/resource/Australia> . ?uri rdf:type onto:Company}
Orange(huggingface)
What is the capital of the region which maintains the South Park Bridge ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> onto:maintainedBy ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}
Orange(huggingface)
What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator <http://dbpedia.org/resource/Greg_Daniels> . ?uri onto:series <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> }
Orange(huggingface)
Through which important cities the does the river originating from the Duwamish, flow?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:source <http://dbpedia.org/resource/Green_River_(Duwamish_River)> . ?x onto:city ?uri . ?x rdf:type onto:River}
Orange(huggingface)
What is the municipality of Liberty Bell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri }
Orange(huggingface)
Name the university with mascot as Aubie and president as jay Gogue ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:mascot <http://dbpedia.org/resource/Aubie> . ?uri onto:president <http://dbpedia.org/resource...
Orange(huggingface)
Which software uses windows as it's operating system and is written in C++?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri onto:programmingLanguage <http://dbpedia.org/resource/C++> . ?uri ...
Orange(huggingface)
Name some basketball players whose team is coached by Fred Hoiberg?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:coach <http://dbpedia.org/resource/Fred_Hoiberg> . ?uri prop:team ?x . ?uri rdf:type onto:Bask...
Orange(huggingface)
How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:homeStadium <http://dbpedia.org/resource/Luzhniki_Stadium> . ?x onto:homeStadium ?uri }
Orange(huggingface)
Count everyone who lives in a place where Indian English is an official language?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/Indian_English> . ?uri onto:residence ?x . }
Orange(huggingface)
Was Jack Ryan a nominee of US Senate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Jack_Ryan_(politician)> onto:nominee <http://dbpedia.org/resource/United_States_Senate> }
Orange(huggingface)
In how many countries do the rivers start which end at the Caspian Sea?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:riverMouth <http://dbpedia.org/resource/Caspian_Sea> . ?x onto:sourceCountry ?uri . ?uri rdf:type onto:Country}
Orange(huggingface)
Which awards are presented by Swedish Academy?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Swedish_Academy> . ?uri rdf:type onto:Award}
Orange(huggingface)
Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:academicDiscipline <http://dbpedia.org/resource/Neuroimaging> . ?x onto:academicDiscipline ?uri }
Orange(huggingface)
Which house has published books about Jazz?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:nonFictionSubject <http://dbpedia.org/resource/Jazz> . ?x onto:publisher ?uri . ?x rdf:type onto:Book}
Orange(huggingface)
How many services does 21Vianet provide?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/21Vianet> prop:services ?uri . }
Orange(huggingface)
Where is the stadium of west Papus football team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:West_Papua_football_team onto:stadium ?uri }
Orange(huggingface)
What is the drafted team of the people expected to join toronto marlies?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:prospectTeam <http://dbpedia.org/resource/Toronto_Marlies> . ?x prop:draftTeam ?uri . ?x rdf:t...
Orange(huggingface)
What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Nederlander> onto:knownFor ?uri. <http://dbpedia.org/resource/Gary_Sánchez> onto:debutTeam ?uri . ?uri rdf:ty...
Orange(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 res: <http://dbpedia.org/resource/> 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:MemberOfParliame...
Orange(huggingface)
What award has been given to Roy Walker as well as Walt Disney?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> onto:award ?uri. <http://dbpedia.org/resource/Walt_Disney> onto:award ?uri . }
Orange(huggingface)
Which people are known for appearing on the television show Dragon's Den?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . ?uri rdf:type onto:Person}
Orange(huggingface)
How many teams was Garry Unger in, previously?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Garry_Unger> onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}
Orange(huggingface)
Was the Army Air Corps honored for the battle of Iraq?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Army_Air_Corps_(United_Kingdom)> prop:battleHonours <http://dbpedia.org/resource/Iraq> }
Orange(huggingface)
Which Tv series led to Frasier?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
In how many places have the companies started in Newcastle worked?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/City_of_Newcastle> . ?x onto:regionServed ?uri . ?uri rdf:type onto:Place}
Orange(huggingface)
Who founded the city where First Church of Christ, Scientist is located?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> prop:locationTown ?x . ?x onto:founder ?uri . }
Orange(huggingface)
Which is the largest city of Union State ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Nina_Vislova prop:placeOfBirth ?uri}
Orange(huggingface)
Who are the people who influenced the writers of Evenor?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evenor_(collection)> onto:author ?x . ?x onto:influenced ?uri . }
Orange(huggingface)
What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri. res:Jojo_Chintoh onto:stateOfOrigin ?uri}
Orange(huggingface)
Is Tenzing Norgay the first person to scale Mt. Everest?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Mount_Everest onto:firstAscentPerson res:Tenzing_Norgay }
Orange(huggingface)
Which body governs over the place made by the chumash people?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:architect <http://dbpedia.org/resource/Chumash_people> . ?x onto:governingBody ?uri . ?x rdf:t...
Orange(huggingface)
List down the prime ministers of Peter Thorneycroft?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Peter_Thorneycroft onto:primeMinister ?uri }
Orange(huggingface)
List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:affiliations <http://dbpedia.org/resource/Graham_Holdings_Company> . ?uri onto:campus <http:/...
Orange(huggingface)
Which football players have Newell's Old Boys as youthclub?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> }
Orange(huggingface)
What location country of AH141 is also the nation of malaysia Junior hockey league?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri}
Orange(huggingface)
Does Ronaldinho play in the brazil's under 23 team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Ronaldinho> prop:nationalteam <http://dbpedia.org/resource/Brazil_national_under-23_football_team> }
Orange(huggingface)
What are the awards won by the producer of Elizabeth: The Golden Age?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth:_The_Golden_Age_(soundtrack)> prop:producer ?x . ?x prop:awards ?uri . }
Orange(huggingface)
Under which scientist did doctoral students erban ieica and Erich Bagge study?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> 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:Scienti...
Orange(huggingface)
Who is the distributor of Rev (drink) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rev_(drink)> onto:distributor ?uri }
Orange(huggingface)
What awards were presented to the person who produced Paradise place?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paradise_Place> prop:producer ?x . ?x prop:awards ?uri . ?x rdf:type onto...
Orange(huggingface)
Who develops the computation platform of Microsoft Expression Encoder?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Microsoft_Expression_Encoder onto:computingPlatform ?x . ?x onto:developer ?uri . }
Orange(huggingface)
Give me some shows related to the ones created by Russell Davies
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:creator <http://dbpedia.org/resource/Russell_T_Davies> . ?uri onto:related ?x . ?uri rdf:type ...
Orange(huggingface)
Name the actors of the TV show which has an episode named The Five ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Five_(The_Vampire_Diaries)> prop:series ?x . ?x prop:starring ?uri . ...
Orange(huggingface)
Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri prop:label...
Orange(huggingface)
What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> prop:city ?uri. <http://dbpedia.org/resource/The_Okee_Dokee_Brothers> onto:birthPlace ?uri}
Orange(huggingface)
Which religion is prevalent in the schools of the Ashanti region?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:region <http://dbpedia.org/resource/Ashanti_Region> . ?x prop:denomination ?uri . ?x rdf:type ...
Orange(huggingface)
Name the university with affiliations as Graham Holdings Company and campus at Indiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:affiliations <http://dbpedia.org/resource/Graham_Holdings_Company> . ?uri onto:campus <http:/...
Orange(huggingface)
Where did the graduates of Memphis, Tenessee continue their education?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:highschool <http://dbpedia.org/resource/Memphis,_Tennessee> . ?x onto:school ?uri . }
Orange(huggingface)
Who are the trainers of Candice Michelle?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Candice_Michelle onto:trainer ?uri }
Orange(huggingface)
Give me some nominees of politicians in the US?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:residence <http://dbpedia.org/resource/United_States> . ?x onto:nominee ?uri . ?x rdf:type onto:OfficeHolder}
Orange(huggingface)
List the comic characters created by Joe Shuster?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:creators <http://dbpedia.org/resource/Joe_Shuster> . ?uri rdf:type onto:ComicsCharacter}
Orange(huggingface)
In which municipalities does the NYC housing authority own buildings?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation <http://dbpedia.org/resource/New_York_City_Housing_Authority> . ?x onto:municipality ?uri . ?x rdf:type onto:Building}
Orange(huggingface)
How many races has Best Mate won?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Best_Mate> prop:race ?uri . }
Orange(huggingface)
What is the programme format of WWTR?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:WWTR onto:programmeFormat ?uri }
Orange(huggingface)
Count the different alma maters of people employed by the CNN?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:employer <http://dbpedia.org/resource/CNN> . ?x onto:almaMater ?uri . }
Orange(huggingface)
List the work institutions of the medicians who has also worked at University of Miami?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions <http://dbpedia.org/resource/University_of_Miami> . ?x prop:workInstitutions ...
Orange(huggingface)
Name some cars similar to the ones which are assembled at the Jefferson North Assembly?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:assembly <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x prop:related ?uri . ?x rd...
Orange(huggingface)
Name whose youth club was FC Barcelona?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }
Orange(huggingface)
How many important works have been done by Russel Davies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Russell_T_Davies> onto:notableWork ?uri . }
Orange(huggingface)
How many factions were fighting in the wars where Blue Jacket was a commander?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander <http://dbpedia.org/resource/Blue_Jacket> . ?x prop:combatant ?uri . }
Orange(huggingface)
List all the major shrines of the saints which has one of the shrines as Debre Libanos ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine <http://dbpedia.org/resource/Debre_Libanos> . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}
Orange(huggingface)
Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> 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:developer <http://dbpedia...
Orange(huggingface)
What do the banks owned by Norwegian ministry of finance produce?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany <http://dbpedia.org/resource/Ministry_of_Finance_(Norway)> . ?x prop:products ?u...
Orange(huggingface)
What rivers originate from Australian Alps?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace <http://dbpedia.org/resource/Australian_Alps> . ?uri rdf:type onto:River}
Orange(huggingface)
What foundation place of Temenos Group is the death place of jerzy Jzef Poocki ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri. res:Jerzy_Józef_Potocki prop:placeOfDeath ?uri}
Orange(huggingface)
Which sports are played in schools affiliated with the Harvest Christian Center?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:religiousAffiliation <http://dbpedia.org/resource/Harvest_Christian_Center> . ?x onto:sport ?u...
Orange(huggingface)
What is the style of architecture of South Loop Printing House District?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:South_Loop_Printing_House_District onto:architecturalStyle ?uri }
Orange(huggingface)
What is the division of the companies who make Runes of Magic?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:products <http://dbpedia.org/resource/Runes_of_Magic> . ?x onto:division ?uri . ?x rdf:type on...
Orange(huggingface)
Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri}
Orange(huggingface)
Who made the engine whose predecessor is the SHO V6?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:predecessor <http://dbpedia.org/resource/Ford_SHO_V6_engine> . ?x onto:manufacturer ?uri . ?x ...
Orange(huggingface)
What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> onto:academicDiscipline ?uri. <http://dbpedia.org/resource/Double_Diamond_(album)> onto:recordLabel ?uri}
Orange(huggingface)