question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
For how many movies are there whose musicians home town is in Volos ?
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 onto:hometown <http://dbpedia.org/resource/Volos> . ?uri prop:music ?x . ?uri rdf:type onto:...
Orange(huggingface)
Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?
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:prizes <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . ?uri prop...
Orange(huggingface)
What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood?
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/Funny_Face_(comedian)> prop:nationality ?uri. <http://dbpedia.org/resource/Georgina_Theodora_Wood> onto:nationality ?uri}
Orange(huggingface)
Where did the members of judge advocate general corps study?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x onto:almaMater ?uri . }
Orange(huggingface)
What cities are around the valley bordering Lake Mead?
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:border <http://dbpedia.org/resource/Lake_Mead> . ?x onto:city ?uri . ?x rdf:type onto:Valley}
Orange(huggingface)
Foxconn makes how many things?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:manufacturer <http://dbpedia.org/resource/Foxconn> . }
Orange(huggingface)
What country provides a citizenship to Newin Chidchob and Seni Pramoj?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Seni_Pramoj onto:nationality ?uri}
Orange(huggingface)
In how many places are the companies founded in Canada operating?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/Canada> . ?x prop:locations ?uri . }
Orange(huggingface)
Name the TV show with artist Christopher Franke and cast member Jason Carter ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX 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:starring <http://dbpedia....
Orange(huggingface)
What is the successor of the governors whose child is Levi Lincoln, Jr.?
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:children <http://dbpedia.org/resource/Levi_Lincoln,_Jr.> . ?x prop:successor ?uri . ?x rdf:typ...
Orange(huggingface)
Which US state gave us Brian Deegan and Harold Lyold?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brian_Deegan_(rider)> prop:birthPlace ?uri. <http://dbpedia.org/resource/Harold_Lloyd> prop:birthPlace ?uri . }
Orange(huggingface)
Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist?
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:distributor <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri prop:artist <http://...
Orange(huggingface)
What are some mammals whose phylum is Chordate?
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:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal}
Orange(huggingface)
How many soccer manager have been in the Spain nation football team?
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 {?uri prop:nationalteam <http://dbpedia.org/resource/Spain_national_football_team> . ?uri rdf:typ...
Orange(huggingface)
How many people have been the head coach for Middlesbrough FC?
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:club <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x onto:manager ?uri . ?uri rdf...
Orange(huggingface)
In how many places did the Schutzstaffels die?
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 onto:militaryRank <http://dbpedia.org/resource/Schutzstaffel> . ?x prop:placeOfDeath ?uri . ...
Orange(huggingface)
Name a company with key person as Dennis Muilenburg and Raymond Conner ?
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:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri onto:keyPerson <http://dbped...
Orange(huggingface)
What is Bob Adams (American football) known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> prop:knownFor ?uri }
Orange(huggingface)
List the former team of the american football players born in Pennsylvania ?
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:birthPlace <http://dbpedia.org/resource/Pennsylvania> . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}
Orange(huggingface)
What is the total number of companies who use a language designed by Bjarne Stroustrup?
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:designer <http://dbpedia.org/resource/Bjarne_Stroustrup> . ?uri prop:programmingLanguag...
Orange(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 }
Orange(huggingface)
What awards have been given to the dude who made Shaun the Sheep?
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:notableworks <http://dbpedia.org/resource/Shaun_the_Sheep> . ?x onto:award ?uri . ?x rdf:type ...
Orange(huggingface)
How many times has Jeff Conaway been casted?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:starring <http://dbpedia.org/resource/Jeff_Conaway> . }
Orange(huggingface)
What borders the valley which falls under Lake County, Oregon?
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:municipality <http://dbpedia.org/resource/Lake_County,_Oregon> . ?x onto:border ?uri . ?x rdf:type onto:Valley}
Orange(huggingface)
Was the USS Tillamook built in Seattle?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/USS_Tillamook_(AT-16)> prop:shipBuilder <http://dbpedia.org/resource/Seattle> }
Orange(huggingface)
Naval station mobile and naval support activity, naples are under which branch of Us military?
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/Naval_Station_Mobile> onto:type ?uri. <http://dbpedia.org/resource/Naval_Support_Activity_Naples> onto:type ?uri . ?u...
Orange(huggingface)
How many companies were founded in Menlo Park, California?
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 {?uri prop:foundation <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri rdf:type onto:C...
Orange(huggingface)
Which tennis players live in Kenthurst, new south wales?
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:residence <http://dbpedia.org/resource/Kenthurst,_New_South_Wales> . ?uri rdf:type onto:TennisPlayer}
Orange(huggingface)
In which areas is the radio station broadcasted which is a sister station of WXME ?
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/WXME> prop:sisterStations ?x . ?x prop:area ?uri . ?x rdf:type onto:Radio...
Orange(huggingface)
What would be a common border of Siberia and the shimsa plateau?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri. res:Siberia onto:border ?uri . }
Orange(huggingface)
What is the total number of relgions followed by people born in Bangkok?
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:birthPlace <http://dbpedia.org/resource/Bangkok> . ?x onto:religion ?uri . }
Orange(huggingface)
Who wrote the subsequent work of One Day at a Time (Em's Version) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/One_Day_at_a_Time_(Em's_Version)> onto:subsequentWork ?x . ?x onto:writer ?uri . }
Orange(huggingface)
Name all the hubs of the airlines whose one of the hubs is Selangir ?
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:hubs <http://dbpedia.org/resource/Selangor> . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}
Orange(huggingface)
For how many teams have the league players of Czech Extraliga, previously played?
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:league <http://dbpedia.org/resource/Czech_Extraliga> . ?x onto:formerTeam ?uri . }
Orange(huggingface)
Who developed the software which is used as operating system of Magic Trackpad ?
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/Magic_Trackpad> onto:operatingSystem ?x . ?x prop:developer ?uri . ?x rdf...
Orange(huggingface)
Which job of Irving Chernev is the non-fiction subject of the Thud ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> onto:occupation ?uri. <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri}
Orange(huggingface)
How many movies have been directed by Orson Welles ?
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 {?uri prop:director <http://dbpedia.org/resource/Orson_Welles> . ?uri rdf:type onto:Film}
Orange(huggingface)
Count the number of schools which are in a city governed by the West Berkshire Council?
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 onto:leaderName <http://dbpedia.org/resource/West_Berkshire_Council> . ?uri prop:city ?x . ?...
Orange(huggingface)
Which university has chancellor as Nicholas S. Zeppos?
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:chancellor <http://dbpedia.org/resource/Nicholas_S._Zeppos> . ?uri rdf:type onto:University}
Orange(huggingface)
Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Runewaker_Entertainment onto:division ?uri. res:Airtours_International_Airways prop:destinations ?uri}
Orange(huggingface)
Who is the successor of McDonnell Douglas?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:McDonnell_Douglas prop:successor ?uri }
Orange(huggingface)
Name the sea located near Europe and has a nearby city as Rostock ?
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:cities <http://dbpedia.org/resource/Rostock> . ?uri onto:location <http://dbpedia.org/resourc...
Orange(huggingface)
Which football team is in a city where A J Clark was a builder?
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:builder <http://dbpedia.org/resource/A._James_Clark> . ?uri prop:city ?x . ?uri rdf:type onto:...
Orange(huggingface)
How many people were drafted by the LA Clippers?
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 {?uri prop:draftTeam <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri rdf:type onto:Pers...
Orange(huggingface)
Who was in youth clubs of FC Barcelona and Newell's Old Boys?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:youthclubs <http://dbpedia.org/resource/FC_Barcelona> . ?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> . }
Orange(huggingface)
How many head of agencies were there in Nazi Germany?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:jurisdiction <http://dbpedia.org/resource/Nazi_Germany> . ?x onto:leader ?uri . }
Orange(huggingface)
Give me a count of all the producers of all the movies whose music was done by James Horner?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/James_Horner> . ?x prop:producer ?uri . }
Orange(huggingface)
How many people work in the Massachusetts house of Representatives?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:office <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }
Orange(huggingface)
Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?
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:judges <http://dbpedia.org/resource/Harry_Connick,_Jr.> . ?uri onto:presenter <http://dbpedia...
Orange(huggingface)
Who is the writer of Neverwhere (radio play) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neverwhere_(radio_play)> onto:writer ?uri }
Orange(huggingface)
What is the party of the politicians whose children is Sanjay Gandhi ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:children <http://dbpedia.org/resource/Sanjay_Gandhi> . ?x onto:party ?uri . ?x rdf:type onto:O...
Orange(huggingface)
How many characters are there in The Office?
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:series <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> . ?uri rdf:type onto:FictionalCharacter}
Orange(huggingface)
Which shows' opening themes was used to make If We Were a Movie?
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:subsequentWork <http://dbpedia.org/resource/If_We_Were_a_Movie> . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
Name some islands in a pacific archipelago?
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:location <http://dbpedia.org/resource/Pacific_Ocean> . ?uri prop:archipelago ?x . ?uri rdf:typ...
Orange(huggingface)
How many battles have involved commanders of 1st Free French Division?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/1st_Free_French_Division> prop:notableCommanders ?x . ?x prop:battles ?uri . }
Orange(huggingface)
Who is the Pole driver of 1992 Canadian Grand Prix?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1992_Canadian_Grand_Prix prop:poleDriver ?uri }
Orange(huggingface)
What are the houses of legislature in the political leader's seat of Medininagar?
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/Medininagar> prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto...
Orange(huggingface)
What is the serving railway line of Warwick railway station, Perth ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Warwick_railway_station,_Perth> onto:servingRailwayLine ?uri }
Orange(huggingface)
Which rivers start from the Provinces of Zambia?
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:settlementType <http://dbpedia.org/resource/Provinces_of_Zambia> . ?uri onto:sourceRegion ?x ....
Orange(huggingface)
Count the PhD students whose thesis are supervised by National Medal of Science winners?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:prizes <http://dbpedia.org/resource/National_Medal_of_Science> . ?x prop:doctoralStudents ?uri . }
Orange(huggingface)
Who is the former partner of the figure skater which was the former partner of Brynn Carman?
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/Brynn_Carman> onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
Orange(huggingface)
How many developers have worked on games of the Oddworld series?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series <http://dbpedia.org/resource/Oddworld> . ?x onto:developer ?uri . }
Orange(huggingface)
What are some journals of academic Philosophy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy }
Orange(huggingface)
What is the home stadium of the club coached by Justine Omojong?
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:coach <http://dbpedia.org/resource/Justine_Omojong> . ?x prop:homeStadium ?uri . ?x rdf:type o...
Orange(huggingface)
Name the rivers whose mouth mountain is Essex and river mouth is North 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 ?uri WHERE {?uri onto:mouthMountain <http://dbpedia.org/resource/Essex> . ?uri onto:riverMouth <http://dbpedia.org/resource/North_Sea> . ?uri rdf:type onto:Riv...
Orange(huggingface)
List the tomb of the royalties whose burial place is Little Easton?
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:placeOfBurial <http://dbpedia.org/resource/Little_Easton> . ?x prop:placeOfBurial ?uri . ?x rd...
Orange(huggingface)
What kind of games are made by Interplay Entertainment?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:developer res:Interplay_Entertainment . ?x onto:genre ?uri . }
Orange(huggingface)
For which team did both Butch Metzger and Brian Horwitz debuted ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Brian_Horwitz onto:debutTeam ?uri . }
Orange(huggingface)
Where can I find people whose hometown is Ann Arbour in Michigan?
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:homeTown <http://dbpedia.org/resource/Ann_Arbor,_Michigan> . ?x onto:residence ?uri . ?x rdf:t...
Orange(huggingface)
What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?
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/Buckhurst_Hill_County_High_School> onto:localAuthority ?uri. <http://dbpedia.org/resource/Sarah_Champion_(presenter)> prop:birthPla...
Orange(huggingface)
List the saints venerated in Islam having major shrine as Tomb of Joshua ?
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:majorShrine <http://dbpedia.org/resource/Tomb_of_Joshua> . ?uri onto:veneratedIn <http://dbpe...
Orange(huggingface)
In which state is Dorchester Bay (Boston Harbor)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dorchester_Bay_(Boston_Harbor)> prop:state ?uri }
Orange(huggingface)
Name the children of the person who is the star of The Weathered Underground ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX 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_Weathered_Underground> onto:starring ?x . ?x prop:children ?uri . ?x ...
Orange(huggingface)
Which nickname of Lyons Township High school is also the mascot of Galatasaray Handball Team ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri. res:Lyons_Township_High_School prop:nickname ?uri}
Orange(huggingface)
Which NASA astronaut was on mission Gemini 8?
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:type <http://dbpedia.org/resource/NASA> . ?uri prop:mission <http://dbpedia.org/resource/Gemi...
Orange(huggingface)
What municipalities are adjacent to Chne-Bougeries?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities <http://dbpedia.org/resource/Chêne-Bougeries> . }
Orange(huggingface)
Count all the band members who are in Bands which have signed up with Entertainment One Music?
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:label <http://dbpedia.org/resource/Entertainment_One_Music> . ?x onto:bandMember ?uri . }
Orange(huggingface)
Who has a child named Lori Black and is resting place as Palo Alto, California?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:children <http://dbpedia.org/resource/Lori_Black> . ?uri prop:restingPlace <http://dbpedia.org/resource/Palo_Alto,_California> . }
Orange(huggingface)
Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Karakuri_Dôji_Ultimo> prop:author ?uri. <http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)> prop:narrated ?uri}
Orange(huggingface)
The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?
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:league <http://dbpedia.org/resource/American_Basketball_League_(1996–98)> . ?x onto:stadium ?uri . ?x rdf:type onto:SportsTeam}
Orange(huggingface)
How many movies have their music signed up with Sony Music Entertainment.
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:recordLabel <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
Orange(huggingface)
In which country can I find the State Academic Opera and Ballet Theater and Baku Puppet Theatre?
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/Azerbaijan_State_Academic_Opera_and_Ballet_Theater> onto:locationCountry ?uri. <http://dbpedia.org/resource/Baku_Pupp...
Orange(huggingface)
Who has official residences at Beverly Hills and Colts Neck Township ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:residence <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri onto:residence <http://dbpedia.org/resource/Colts_Neck_Township,_New_Jersey> . }
Orange(huggingface)
What are the movies whose music composer uses a Hammond organ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:instrument <http://dbpedia.org/resource/Hammond_organ> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
Orange(huggingface)
Who is the mfr. of the engine used in Ford Transit?
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/Ford_Transit> prop:engine ?x . ?x onto:manufacturer ?uri . ?x rdf:type on...
Orange(huggingface)
Is National Archaeological Museum (Florence) the museum of Chimera of Arezzo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Chimera_of_Arezzo> prop:museum <http://dbpedia.org/resource/National_Archaeological_Museum_(Florence)> }
Orange(huggingface)
List the awards given to the important people of Aardman Animations?
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:awards <http://dbpedia.org/resource/Royal_Designers_for_Industry> . ?x onto:award ?uri ...
Orange(huggingface)
Who is the fictional character whose family member is Padme Amidala?
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:family <http://dbpedia.org/resource/Padmé_Amidala> . ?uri rdf:type onto:FictionalCharacter}
Orange(huggingface)
Is GIMP written in C?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/GIMP> onto:programmingLanguage <http://dbpedia.org/resource/C_(programming_language)> }
Orange(huggingface)
What is the mascot of the military unit of David Prowse?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Prowse_(politician)> prop:branch ?x . ?x prop:mascot ?uri . }
Orange(huggingface)
Who is the developer of the software which distributes Batman: Arkham City Lockdown ?
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/Batman:_Arkham_City_Lockdown> prop:distributor ?x . ?x prop:developer ?ur...
Orange(huggingface)
Name a person who was educated in Humes High School?
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:education <http://dbpedia.org/resource/Humes_High_School> . ?uri rdf:type onto:Person}
Orange(huggingface)
Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?
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:foundedBy <http://dbpedia.org/resource/Fusajiro_Yamauchi> . ?uri prop:services <http://dbpedi...
Orange(huggingface)
What is the publisher of Lucifer's Hammer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> onto:publisher ?uri }
Orange(huggingface)
Which countries were led by Pietro Parolin?
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:leader <http://dbpedia.org/resource/Pietro_Parolin> . ?uri rdf:type onto:Country}
Orange(huggingface)
How many relatives are there of people fought in the Battle of the Bulge?
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:battles <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x onto:relation ?uri . }
Orange(huggingface)
List education institute of the engineers whose alma mater is ChristChurch ?
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:education <http://dbpedia.org/resource/Christchurch> . ?x onto:education ?uri . ?x rdf:type onto:Engineer}
Orange(huggingface)
What are the cities around the sea which flows into the Atlantic?
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:inflow <http://dbpedia.org/resource/Atlantic_Ocean> . ?x prop:cities ?uri . ?x rdf:type onto:S...
Orange(huggingface)
Where is Jimmy Wales a board member which also owns Latvian Wikipedia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri. res:Latvian_Wikipedia onto:owner ?uri}
Orange(huggingface)
Which operator of ganz UV is also the nationality of the Gza Horvth ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri}
Orange(huggingface)