id
stringlengths
11
13
question
stringlengths
11
8.64k
answers
sequence
subgraph
dict
sparql
stringlengths
49
483
lcquad2-19991
Name the river that is located in Hertforshire?
[ "River Ash" ]
{ "entities": [ "Q3410", "Q12067334", "Q4022" ], "relations": [ "P31", "P403" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Hertfordshire", "River Ash", "river" ], "relation_labels": [ "instance of", "mouth of the watercourse" ] }
select distinct ?sbj where { ?sbj wdt:P403 wd:Q3410 . ?sbj wdt:P31 wd:Q4022 }
lcquad2-15239
Who is children and little girl of Odysseus ?
[ "Ctimene" ]
{ "entities": [ "Q748296", "Q1790803", "Q47231" ], "relations": [ "P40", "P22" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Laertes", "Ctimene", "Odysseus" ], "relation_labels": [ "child", "father" ] }
SELECT ?answer WHERE { wd:Q47231 wdt:P22 ?X . ?X wdt:P40 ?answer}
lcquad2-21882
Where did Jean-Jacques Roussea reside?
[ "Les Charmettes" ]
{ "entities": [ "Q6527", "Q967049", "Q3947" ], "relations": [ "P31", "P466" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Jean-Jacques Rousseau", "Les Charmettes", "house" ], "relation_labels": [ "instance of", "occupant" ] }
select distinct ?sbj where { ?sbj wdt:P466 wd:Q6527 . ?sbj wdt:P31 wd:Q3947 }
lcquad2-9681
Where does Jessica Chastain reside?
[ "film producer", "New York City" ]
{ "entities": [ "Q229313", "Q60", "Q3282637" ], "relations": [ "P106", "P551" ], "adjacency": [ [ 0, 1, 1 ], [ 0, 0, 2 ] ], "entity_labels": [ "Jessica Chastain", "New York City", "film producer" ], "relation_labels": [ "occupation", "residence" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q229313 wdt:P551 ?ans_1 . wd:Q229313 wdt:P106 ?ans_2 }
lcquad2-24848
What are the civilizations that begin with the letter V
[ "Vandals" ]
{ "entities": [ "Q8432", "Q42211" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "civilization", "Vandals" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q8432 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'v')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-12689
Name the child of the Jiajing Emperor that has a brother or sister that is the Longqing Emperor.
[ "Princess Sirou" ]
{ "entities": [ "Q11072596", "Q10059", "Q10011" ], "relations": [ "P3373", "P40" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Princess Sirou", "Longqing Emperor", "Jiajing Emperor of Ming" ], "relation_labels": [ "sibling", "child" ] }
SELECT ?answer WHERE { wd:Q10011 wdt:P40 ?answer . ?answer wdt:P3373 wd:Q10059}
lcquad2-23745
Which is the property that contains the word ziegeldurchschuss in it's name?
[ "Ziegeldurchschuss" ]
{ "entities": [ "Q198582", "Q937228" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Ziegeldurchschuss", "property" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q937228 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'ziegeldurchschuss')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-22407
What is the title of coordinates library framework for SQL?
[ "Koha" ]
{ "entities": [ "Q1114959", "Q47607", "Q93661" ], "relations": [ "P31", "P277" ], "adjacency": [ [ 0, 1, 1 ], [ 0, 0, 2 ] ], "entity_labels": [ "Koha", "SQL", "integrated library system" ], "relation_labels": [ "instance of", "programmed in" ] }
select distinct ?sbj where { ?sbj wdt:P277 wd:Q47607 . ?sbj wdt:P31 wd:Q93661 }
lcquad2-23001
What nations are included within the African Union?
[ "Brazil" ]
{ "entities": [ "Q859563", "Q155", "Q7159" ], "relations": [ "P31", "P530" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "secular state", "Brazil", "African Union" ], "relation_labels": [ "instance of", "diplomatic relation" ] }
select distinct ?sbj where { ?sbj wdt:P530 wd:Q7159 . ?sbj wdt:P31 wd:Q859563 }
lcquad2-15674
What bunch did the siblings of Fabio Ochoa Vasquez have a place with?
[ "El Cartel de Medellín" ]
{ "entities": [ "Q6299593", "Q329722", "Q1046933" ], "relations": [ "P3373", "P463" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Juan David Ochoa Vásquez", "Fabio Ochoa Vásquez", "El Cartel de Medellín" ], "relation_labels": [ "sibling", "member of" ] }
SELECT ?answer WHERE { wd:Q329722 wdt:P3373 ?X . ?X wdt:P463 ?answer}
lcquad2-24877
WHAT ARE THE SPACE CENTER WHICH BEGIN WITH THE LETTER S
[ "Satish Dhawan Space Centre" ]
{ "entities": [ "Q1192221", "Q640273" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "space center", "Satish Dhawan Space Centre" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1192221 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-17260
Which is Godfrey Weitzel's subsidiary service branch?
[ "Army of the Mississippi" ]
{ "entities": [ "Q1752901", "Q2252166", "Q875820" ], "relations": [ "P241", "P355" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "Union Army", "Army of the Mississippi", "Godfrey Weitzel" ], "relation_labels": [ "military branch", "has subsidiary" ] }
SELECT ?answer WHERE { wd:Q875820 wdt:P241 ?X . ?X wdt:P355 ?answer}
lcquad2-16885
What's the name of Colin McDonald's club manager?
[ "Russell Martin" ]
{ "entities": [ "Q18659", "Q555382", "Q5145359" ], "relations": [ "P54", "P286" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "Swansea City A.F.C.", "Russell Martin", "Colin McDonald" ], "relation_labels": [ "member of sports team", "head coach" ] }
SELECT ?answer WHERE { wd:Q5145359 wdt:P54 ?X . ?X wdt:P286 ?answer}
lcquad2-16784
What sort of taxon was the proximate result of the Dark Death?
[ "species" ]
{ "entities": [ "Q7432", "Q106133", "Q42005" ], "relations": [ "P105", "P1478" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "species", "Rattus rattus", "Black Death" ], "relation_labels": [ "taxon rank", "has immediate cause" ] }
SELECT ?answer WHERE { wd:Q42005 wdt:P1478 ?X . ?X wdt:P105 ?answer}
lcquad2-10054
What causes Hepatitis and the symptoms?
[ "liver cirrhosis", "alcoholism" ]
{ "entities": [ "Q147778", "Q131742", "Q15326" ], "relations": [ "P1542", "P828" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "liver cirrhosis", "hepatitis", "alcoholism" ], "relation_labels": [ "has effect", "has cause" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q131742 wdt:P828 ?ans_1 . wd:Q131742 wdt:P1542 ?ans_2 }
lcquad2-17475
where is authoritative central command for culprit of Fight of Ankara ?
[ "Constantinople" ]
{ "entities": [ "Q209387", "Q16869", "Q12560" ], "relations": [ "P710", "P36" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Battle of Ankara", "Constantinople", "Ottoman Empire" ], "relation_labels": [ "participant", "capital" ] }
SELECT ?answer WHERE { wd:Q209387 wdt:P710 ?X . ?X wdt:P36 ?answer}
lcquad2-15188
Who is the part demonstrate of dialect composed by Robert Success?
[ "French" ]
{ "entities": [ "Q1860", "Q379628", "Q150" ], "relations": [ "P737", "P1412" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "English", "Robert Conquest", "French" ], "relation_labels": [ "influenced by", "languages spoken, written or signed" ] }
SELECT ?answer WHERE { wd:Q379628 wdt:P1412 ?X . ?X wdt:P737 ?answer}
lcquad2-23540
Title a survival ability that begins with letter C
[ "nth root" ]
{ "entities": [ "Q601053", "Q47279819" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "nth root", "type of mathematical function" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q47279819 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'root')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21018
What have Billie Jean King won tennis awards?
[ "1974 US Open – women's singles" ]
{ "entities": [ "Q46190676", "Q1059608", "Q54527" ], "relations": [ "P2522", "P31" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "tennis event", "1974 US Open – women's singles", "Billie Jean King" ], "relation_labels": [ "victory", "instance of" ] }
select distinct ?obj where { wd:Q54527 wdt:P2522 ?obj . ?obj wdt:P31 wd:Q46190676 }
lcquad2-24894
Which is the magazine with region of book in New York City and that incorporates the word vibe in it's name?
[ "VIBE Vixen" ]
{ "entities": [ "Q60", "Q7906975", "Q41298" ], "relations": [ "P31", "P291" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "New York City", "VIBE Vixen", "magazine" ], "relation_labels": [ "instance of", "place of publication" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q41298 . ?sbj wdt:P291 wd:Q60 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'vibe')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-23009
From what religion is The Book of Mormon?
[ "Standard works" ]
{ "entities": [ "Q3847515", "Q459842", "Q6912675" ], "relations": [ "P31", "P1433" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "Standard works", "Book of Mormon", "Mormon literature" ], "relation_labels": [ "instance of", "published in" ] }
select distinct ?obj where { wd:Q459842 wdt:P1433 ?obj . ?obj wdt:P31 wd:Q6912675 }
lcquad2-14367
Who is {sister} of {melodic craftsman} of {That Tune in My Head} ?
[ "Derek Hough" ]
{ "entities": [ "Q232646", "Q3985542", "Q1189327" ], "relations": [ "P3373", "P175" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "Julianne Hough", "That Song in My Head", "Derek Hough" ], "relation_labels": [ "sibling", "performer" ] }
SELECT ?answer WHERE { wd:Q3985542 wdt:P175 ?X . ?X wdt:P3373 ?answer}
lcquad2-12919
What is that's of
[ "Fenway Sports Group" ]
{ "entities": [ "Q1130849", "Q1324524", "Q1186372" ], "relations": [ "P112", "P127" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Liverpool F.C.", "Fenway Sports Group", "John W. Henry" ], "relation_labels": [ "founded by", "owned by" ] }
SELECT ?answer WHERE { wd:Q1130849 wdt:P127 ?answer . ?answer wdt:P112 wd:Q1186372}
lcquad2-9775
In what country was William Shatner born and what was his occupation?
[ "Canada", "television actor" ]
{ "entities": [ "Q10798782", "Q16297", "Q16" ], "relations": [ "P106", "P27" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "television actor", "William Shatner", "Canada" ], "relation_labels": [ "occupation", "country of citizenship" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q16297 wdt:P27 ?ans_1 . wd:Q16297 wdt:P106 ?ans_2 }
lcquad2-24689
Who is the anecdotal individual whose title begins with the letter t?
[ "Tamako Nobi" ]
{ "entities": [ "Q15632617", "Q986716" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "fictional human", "Tamako Nobi" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15632617 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-13254
What memorable period of the Roman Realm is named after the diophantine equation?
[ "Diophantus of Alexandria" ]
{ "entities": [ "Q178217", "Q2277", "Q905896" ], "relations": [ "P2348", "P138" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Diophantus of Alexandria", "Roman Empire", "diophantine equation" ], "relation_labels": [ "time period", "named after" ] }
SELECT ?answer WHERE { wd:Q905896 wdt:P138 ?answer . ?answer wdt:P2348 wd:Q2277}
lcquad2-16087
Where did Paco Moncayo have loyalty to?
[ "South America" ]
{ "entities": [ "Q2335730", "Q736", "Q18" ], "relations": [ "P30", "P945" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Paco Moncayo", "Ecuador", "South America" ], "relation_labels": [ "continent", "allegiance" ] }
SELECT ?answer WHERE { wd:Q2335730 wdt:P945 ?X . ?X wdt:P30 ?answer}
lcquad2-19970
Cortisol is used to treat which disease?
[ "facial dermatosis" ]
{ "entities": [ "Q190875", "Q12136", "Q18555301" ], "relations": [ "P2175", "P31" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "cortisol", "disease", "facial dermatosis" ], "relation_labels": [ "medical condition treated", "instance of" ] }
select distinct ?obj where { wd:Q190875 wdt:P2175 ?obj . ?obj wdt:P31 wd:Q12136 }
lcquad2-21870
Brokeback Mountain was directed by whom?
[ "Ang Lee" ]
{ "entities": [ "Q160726", "Q5", "Q160618" ], "relations": [ "P31", "P57" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Ang Lee", "human", "Brokeback Mountain" ], "relation_labels": [ "instance of", "director" ] }
select distinct ?obj where { wd:Q160618 wdt:P57 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-15688
Give me the previous captain for Soyuz TM-32.
[ "Dennis Tito" ]
{ "entities": [ "Q1424029", "Q1423493", "Q210184" ], "relations": [ "P155", "P1029" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Soyuz TM-32", "Soyuz TM-31", "Dennis Tito" ], "relation_labels": [ "follows", "crew member(s)" ] }
SELECT ?answer WHERE { wd:Q1424029 wdt:P155 ?X . ?X wdt:P1029 ?answer}
lcquad2-14076
What is the label of a musical group that belongs to "Universal Music Group" called The Armed Man?
[ "Virgin Records" ]
{ "entities": [ "Q38903", "Q7714286", "Q203059" ], "relations": [ "P264", "P749" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Universal Music Group", "The Armed Man – A Mass for Peace", "Virgin Records" ], "relation_labels": [ "record label", "parent organization" ] }
SELECT ?answer WHERE { wd:Q7714286 wdt:P264 ?answer . ?answer wdt:P749 wd:Q38903}
lcquad2-24907
What nation whose chronicles are found within the National Library of Ridges contains the word "grains" in its title
[ "Wales" ]
{ "entities": [ "Q666063", "Q6256", "Q25" ], "relations": [ "P31", "P485" ], "adjacency": [ [ 2, 0, 1 ], [ 2, 1, 0 ] ], "entity_labels": [ "National Library of Wales", "country", "Wales" ], "relation_labels": [ "instance of", "archives at" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q6256 . ?sbj wdt:P485 wd:Q666063 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wales')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-17005
Portrait of a Boy with a Golf Club and a Dog is represented by what form?
[ "metal" ]
{ "entities": [ "Q15026", "Q24521998", "Q11426" ], "relations": [ "P180", "P186" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "chair", "Portrait of a Boy with a Golf Club and a Dog", "metal" ], "relation_labels": [ "depicts", "made from material" ] }
SELECT ?answer WHERE { wd:Q24521998 wdt:P180 ?X . ?X wdt:P186 ?answer}
lcquad2-14450
Who is known for chiseling bunches of mountain climbers?
[ "Thirty-six Views of Mount Fuji" ]
{ "entities": [ "Q18173437", "Q5586", "Q227494" ], "relations": [ "P170", "P800" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Groups of Mountain Climbers", "Katsushika Hokusai", "Thirty-six Views of Mount Fuji" ], "relation_labels": [ "creator", "notable work" ] }
SELECT ?answer WHERE { wd:Q18173437 wdt:P170 ?X . ?X wdt:P800 ?answer}
lcquad2-21227
The Adventist Church of the Seventh Day practices what religion?
[ "L. Flora Plummer" ]
{ "entities": [ "Q99293043", "Q104319", "Q5" ], "relations": [ "P140", "P31" ], "adjacency": [ [ 0, 0, 1 ], [ 0, 1, 2 ] ], "entity_labels": [ "L. Flora Plummer", "Seventh-day Adventist Church", "human" ], "relation_labels": [ "religion or worldview", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P140 wd:Q104319 . ?sbj wdt:P31 wd:Q5 }
lcquad2-14940
In what craft does Earl Strom work in?
[ "refereeing" ]
{ "entities": [ "Q94271838", "Q202648", "Q735731" ], "relations": [ "P106", "P425" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "refereeing", "referee", "Earl Strom" ], "relation_labels": [ "occupation", "field of this occupation" ] }
SELECT ?answer WHERE { wd:Q735731 wdt:P106 ?X . ?X wdt:P425 ?answer}
lcquad2-15625
What is Carla Bruni's cohabitant's faculty?
[ "Conservatoire national supérieur d'art dramatique" ]
{ "entities": [ "Q123476", "Q143945", "Q1127387" ], "relations": [ "P451", "P69" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Vincent Perez", "Carla Bruni", "Conservatoire national supérieur d'art dramatique" ], "relation_labels": [ "unmarried partner", "educated at" ] }
SELECT ?answer WHERE { wd:Q143945 wdt:P451 ?X . ?X wdt:P69 ?answer}
lcquad2-22447
What lesson would a understudy take to memorize world history?
[ "world history" ]
{ "entities": [ "Q11862829", "Q200325", "Q6457238" ], "relations": [ "P31", "P2579" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "academic discipline", "human history", "world history" ], "relation_labels": [ "instance of", "studied by" ] }
select distinct ?obj where { wd:Q200325 wdt:P2579 ?obj . ?obj wdt:P31 wd:Q11862829 }
lcquad2-21852
What political portion does Silvio Berlusconi represent
[ "Forza Italia" ]
{ "entities": [ "Q215350", "Q11860", "Q7278" ], "relations": [ "P31", "P210" ], "adjacency": [ [ 0, 1, 1 ], [ 0, 0, 2 ] ], "entity_labels": [ "Forza Italia", "Silvio Berlusconi", "political party" ], "relation_labels": [ "instance of", "party chief representative" ] }
select distinct ?sbj where { ?sbj wdt:P210 wd:Q11860 . ?sbj wdt:P31 wd:Q7278 }
lcquad2-23623
Let me know anecdotal criminologist whose title has the word sam in it.
[ "European Council" ]
{ "entities": [ "Q8886", "Q748720" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "European Council", "Institutions of the European Union" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q748720 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'european')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-13029
What is the running gadget of Instagram that can write in WebP Lossless?
[ "Android" ]
{ "entities": [ "Q94", "Q683670", "Q209330" ], "relations": [ "P1073", "P306" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Android", "WebP Lossless", "Instagram" ], "relation_labels": [ "writable file format", "operating system" ] }
SELECT ?answer WHERE { wd:Q209330 wdt:P306 ?answer . ?answer wdt:P1073 wd:Q683670}
lcquad2-12881
What's the melodic score by the Nutcracker, that has representatived crafted by Violin Concerto
[ "Pyotr Ilyich Tchaikovsky" ]
{ "entities": [ "Q193705", "Q7315", "Q372907" ], "relations": [ "P86", "P800" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "The Nutcracker", "Pyotr Ilyich Tchaikovsky", "Violin Concerto" ], "relation_labels": [ "composer", "notable work" ] }
SELECT ?answer WHERE { wd:Q193705 wdt:P86 ?answer . ?answer wdt:P800 wd:Q372907}
lcquad2-12971
What is the birth put of Greer Garson, that incorporates a sister city to Los Angeles?
[ "London" ]
{ "entities": [ "Q182486", "Q65", "Q84" ], "relations": [ "P190", "P19" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Greer Garson", "Los Angeles", "London" ], "relation_labels": [ "twinned administrative body", "place of birth" ] }
SELECT ?answer WHERE { wd:Q182486 wdt:P19 ?answer . ?answer wdt:P190 wd:Q65}
lcquad2-16785
What would be used to measure a Planck temperature?
[ "Provisional Low-Temperature Scale of 2000" ]
{ "entities": [ "Q720055", "Q264647", "Q16930676" ], "relations": [ "P111", "P1880" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Planck temperature", "thermodynamic temperature", "Provisional Low-Temperature Scale of 2000" ], "relation_labels": [ "measured physical quantity", "measurement scale" ] }
SELECT ?answer WHERE { wd:Q720055 wdt:P111 ?X . ?X wdt:P1880 ?answer}
lcquad2-16440
Where did Helen Allingham attend college in?
[ "communication" ]
{ "entities": [ "Q444581", "Q11024", "Q1753535" ], "relations": [ "P101", "P69" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Helen Allingham", "communication", "Royal College of Art" ], "relation_labels": [ "field of work", "educated at" ] }
SELECT ?answer WHERE { wd:Q444581 wdt:P69 ?X . ?X wdt:P101 ?answer}
lcquad2-20245
Michel Dell is the CEO of what company?
[ "Dell Inc." ]
{ "entities": [ "Q30873", "Q6881511", "Q218630" ], "relations": [ "P31", "P169" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "Dell Inc.", "enterprise", "Michael Dell" ], "relation_labels": [ "instance of", "chief executive officer" ] }
select distinct ?sbj where { ?sbj wdt:P169 wd:Q218630 . ?sbj wdt:P31 wd:Q6881511 }
lcquad2-17810
Overwatch features several different game modes, designed primarily around squad - based fighting with two opposing teams of six players each. ... During various seasonal events, other modes set aside for casual matches include solo and team deathmatch, capture the flag, and unique modes.
[ "Xbox" ]
{ "entities": [ "Q15281614", "Q13361286", "Q18515944" ], "relations": [ "P179", "P400" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "Xbox", "Xbox One", "Overwatch" ], "relation_labels": [ "part of the series", "platform" ] }
SELECT ?answer WHERE { wd:Q18515944 wdt:P400 ?X . ?X wdt:P179 ?answer}
lcquad2-21286
What period followed apartheid in South Africa?
[ "history of South Africa (1910–1948)" ]
{ "entities": [ "Q11409", "Q4533954", "Q17524420" ], "relations": [ "P156", "P31" ], "adjacency": [ [ 1, 0, 0 ], [ 1, 1, 2 ] ], "entity_labels": [ "apartheid", "history of South Africa (1910–1948)", "aspect of history" ], "relation_labels": [ "followed by", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P156 wd:Q11409 . ?sbj wdt:P31 wd:Q17524420 }
lcquad2-14334
What is impacted from the school of Les Demoiselles d'Avignon?
[ "Paul Cézanne" ]
{ "entities": [ "Q42934", "Q910199", "Q35548" ], "relations": [ "P737", "P135" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "Cubism", "Les Demoiselles d'Avignon", "Paul Cézanne" ], "relation_labels": [ "influenced by", "movement" ] }
SELECT ?answer WHERE { wd:Q910199 wdt:P135 ?X . ?X wdt:P737 ?answer}
lcquad2-9663
Where is FC Porto's headquarters and home location?
[ "Porto", "Estádio do Dragão" ]
{ "entities": [ "Q271454", "Q128446", "Q36433" ], "relations": [ "P115", "P159" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "Estádio do Dragão", "FC Porto", "Porto" ], "relation_labels": [ "home venue", "headquarters location" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q128446 wdt:P159 ?ans_1 . wd:Q128446 wdt:P115 ?ans_2 }
lcquad2-10083
What country gave rise to the Ku Klux Klan?
[ "Pulaski", "United States of America" ]
{ "entities": [ "Q47131", "Q1410885", "Q30" ], "relations": [ "P740", "P17" ], "adjacency": [ [ 0, 0, 1 ], [ 0, 1, 2 ] ], "entity_labels": [ "Ku Klux Klan", "Pulaski", "United States of America" ], "relation_labels": [ "location of formation", "country" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q47131 wdt:P740 ?ans_1 . wd:Q47131 wdt:P17 ?ans_2 }
lcquad2-14025
What is the first language of Michael Richards whose grammatical person is third-person masculine singular?
[ "English" ]
{ "entities": [ "Q52431955", "Q1860", "Q314945" ], "relations": [ "P103", "P5110" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "third-person masculine singular", "English", "Michael Richards" ], "relation_labels": [ "native language", "has grammatical person" ] }
SELECT ?answer WHERE { wd:Q314945 wdt:P103 ?answer . ?answer wdt:P5110 wd:Q52431955}
lcquad2-12914
Which is the hometown of Kevin Martin, that's following to Beaumont?
[ "Edmonton" ]
{ "entities": [ "Q253903", "Q511414", "Q2096" ], "relations": [ "P47", "P551" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "Beaumont", "Kevin Martin", "Edmonton" ], "relation_labels": [ "shares border with", "residence" ] }
SELECT ?answer WHERE { wd:Q511414 wdt:P551 ?answer . ?answer wdt:P47 wd:Q253903}
lcquad2-23717
Title a state church that contain the word " development" in its name
[ "Three-Self Patriotic Movement" ]
{ "entities": [ "Q3355100", "Q2325038" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Three-Self Patriotic Movement", "state church" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2325038 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'movement')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21978
Who's Hans Zimmer's manager?
[ "Remote Control Productions" ]
{ "entities": [ "Q1917775", "Q76364", "Q1852854" ], "relations": [ "P31", "P1037" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "music publishing company", "Hans Zimmer", "Remote Control Productions" ], "relation_labels": [ "instance of", "director / manager" ] }
select distinct ?sbj where { ?sbj wdt:P1037 wd:Q76364 . ?sbj wdt:P31 wd:Q1917775 }
lcquad2-13541
"What is the legit language for Khanate of Sibir, based in Crimean Peninsula?"
[ "Turki" ]
{ "entities": [ "Q7835", "Q1763658", "Q190513" ], "relations": [ "P37", "P131" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "Crimea", "Turki", "Khanate of Sibir" ], "relation_labels": [ "official language", "located in the administrative territorial entity" ] }
SELECT ?answer WHERE { wd:Q190513 wdt:P37 ?answer . ?answer wdt:P131 wd:Q7835}
lcquad2-23053
Which is the library that has it's chronicles of Jefferson Davis?
[ "Jefferson Davis Presidential Library and Museum" ]
{ "entities": [ "Q162269", "Q1686400", "Q7075" ], "relations": [ "P31", "P485" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Jefferson Davis", "Jefferson Davis Presidential Library and Museum", "library" ], "relation_labels": [ "instance of", "archives at" ] }
select distinct ?obj where { wd:Q162269 wdt:P485 ?obj . ?obj wdt:P31 wd:Q7075 }
lcquad2-20272
Give me the name of the religious text that's a translation of Septuagint.
[ "Bible" ]
{ "entities": [ "Q29334", "Q1845", "Q179461" ], "relations": [ "P629", "P31" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Septuagint", "Bible", "religious text" ], "relation_labels": [ "edition or translation of", "instance of" ] }
select distinct ?obj where { wd:Q29334 wdt:P629 ?obj . ?obj wdt:P31 wd:Q179461 }
lcquad2-17133
cap is the reactant of the thing utilized of eating ?
[ "food ingredient" ]
{ "entities": [ "Q213449", "Q25403900", "Q2095" ], "relations": [ "P2283", "P186" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "eating", "food ingredient", "food" ], "relation_labels": [ "uses", "made from material" ] }
SELECT ?answer WHERE { wd:Q213449 wdt:P2283 ?X . ?X wdt:P186 ?answer}
lcquad2-13251
What is the set area of the rules of the amusement ?, What is it bordered by? I it Levallois Perret ?
[ "Paris" ]
{ "entities": [ "Q90", "Q748599", "Q166640" ], "relations": [ "P840", "P47" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Paris", "The Rules of the Game", "Levallois-Perret" ], "relation_labels": [ "narrative location", "shares border with" ] }
SELECT ?answer WHERE { wd:Q748599 wdt:P840 ?answer . ?answer wdt:P47 wd:Q166640}
lcquad2-9720
Who built the Lighthouse of Alexandria and which type of architecture was utilized?
[ "Sostratus of Cnidus", "Hellenistic architecture" ]
{ "entities": [ "Q2011484", "Q445793", "Q43244" ], "relations": [ "P84", "P149" ], "adjacency": [ [ 2, 0, 1 ], [ 2, 1, 0 ] ], "entity_labels": [ "Hellenistic architecture", "Sostratus of Cnidus", "Lighthouse of Alexandria" ], "relation_labels": [ "architect", "architectural style" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q43244 wdt:P84 ?ans_1 . wd:Q43244 wdt:P149 ?ans_2 }
lcquad2-13625
What was once the technique of homicide of Franchot Tone, whose clinical specialty used to be oncology?
[ "lung cancer" ]
{ "entities": [ "Q47912", "Q162555", "Q457229" ], "relations": [ "P509", "P1995" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "lung cancer", "oncology", "Franchot Tone" ], "relation_labels": [ "cause of death", "health specialty" ] }
SELECT ?answer WHERE { wd:Q457229 wdt:P509 ?answer . ?answer wdt:P1995 wd:Q162555}
lcquad2-12443
What the hell is Navier-Stokes conditions in mathematics?
[ "Sir George Stokes, 1st Baronet" ]
{ "entities": [ "Q170790", "Q155907", "Q201321" ], "relations": [ "P106", "P138" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "mathematician", "Sir George Stokes, 1st Baronet", "Navier–Stokes equations" ], "relation_labels": [ "occupation", "named after" ] }
SELECT ?answer WHERE { wd:Q201321 wdt:P138 ?answer . ?answer wdt:P106 wd:Q170790}
lcquad2-19852
What is the coral's coral's taxon source?
[ "Anthozoa" ]
{ "entities": [ "Q16521", "Q171446", "Q28524" ], "relations": [ "P31", "P1672" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "taxon", "coral", "Anthozoa" ], "relation_labels": [ "instance of", "this taxon is source of" ] }
select distinct ?sbj where { ?sbj wdt:P1672 wd:Q171446 . ?sbj wdt:P31 wd:Q16521 }
lcquad2-21344
Who are Die Hard's cast members?
[ "Alan Rickman" ]
{ "entities": [ "Q106481", "Q5", "Q105598" ], "relations": [ "P161", "P31" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "Alan Rickman", "human", "Die Hard" ], "relation_labels": [ "cast member", "instance of" ] }
select distinct ?obj where { wd:Q105598 wdt:P161 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-13903
Which is historical underpinnings of Planck length, that plays piano?
[ "Max Planck" ]
{ "entities": [ "Q5994", "Q207387", "Q9021" ], "relations": [ "P1303", "P138" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "piano", "Planck length", "Max Planck" ], "relation_labels": [ "instrument", "named after" ] }
SELECT ?answer WHERE { wd:Q207387 wdt:P138 ?answer . ?answer wdt:P1303 wd:Q5994}
lcquad2-14922
What occurs in the school that Roberto Bergersen visited?
[ "Seattle" ]
{ "entities": [ "Q3436845", "Q219563", "Q5083" ], "relations": [ "P131", "P69" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Roberto Bergersen", "University of Washington", "Seattle" ], "relation_labels": [ "located in the administrative territorial entity", "educated at" ] }
SELECT ?answer WHERE { wd:Q3436845 wdt:P69 ?X . ?X wdt:P131 ?answer}
lcquad2-17716
Which is {target} of {article} {COMINFIL} ?
[ "Bunchy Carter" ]
{ "entities": [ "Q644439", "Q1023998", "Q1004932" ], "relations": [ "P805", "P533" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "COINTELPRO", "COMINFIL", "Bunchy Carter" ], "relation_labels": [ "statement is subject of", "target" ] }
SELECT ?answer WHERE { wd:Q1023998 wdt:P805 ?X . ?X wdt:P533 ?answer}
lcquad2-21770
What position is directed by the office of the African Union?
[ "Chairperson of the African Union" ]
{ "entities": [ "Q4164871", "Q946339", "Q7159" ], "relations": [ "P31", "P2389" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "position", "Chairperson of the African Union", "African Union" ], "relation_labels": [ "instance of", "organization directed by the office or position" ] }
select distinct ?sbj where { ?sbj wdt:P2389 wd:Q7159 . ?sbj wdt:P31 wd:Q4164871 }
lcquad2-13059
What is the first title of John Lothrop Motley, that is the equal of Gianni?
[ "John" ]
{ "entities": [ "Q18393856", "Q689281", "Q4925477" ], "relations": [ "P735", "P460" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Gianni", "John Lothrop Motley", "John" ], "relation_labels": [ "given name", "said to be the same as" ] }
SELECT ?answer WHERE { wd:Q689281 wdt:P735 ?answer . ?answer wdt:P460 wd:Q18393856}
lcquad2-20223
What dialect supplanted Center English?
[ "Modern English" ]
{ "entities": [ "Q1649537", "Q36395", "Q34770" ], "relations": [ "P31", "P1366" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "Modern English", "Middle English", "language" ], "relation_labels": [ "instance of", "replaced by" ] }
select distinct ?obj where { wd:Q36395 wdt:P1366 ?obj . ?obj wdt:P31 wd:Q34770 }
lcquad2-19933
What religios group is Christianity's largest?
[ "Christianity" ]
{ "entities": [ "Q6957341", "Q5043", "Q235329" ], "relations": [ "P31", "P2184" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "major religion", "Christianity", "history of Christianity" ], "relation_labels": [ "instance of", "history of topic" ] }
select distinct ?sbj where { ?sbj wdt:P2184 wd:Q235329 . ?sbj wdt:P31 wd:Q6957341 }
lcquad2-12104
Who was born in Wem and featured within The Hitchhiker's Direct to the Galaxy?
[ "Peter Jones" ]
{ "entities": [ "Q301082", "Q3521267", "Q761490" ], "relations": [ "P161", "P19" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Wem", "The Hitchhiker's Guide to the Galaxy", "Peter Jones" ], "relation_labels": [ "cast member", "place of birth" ] }
SELECT ?answer WHERE { wd:Q3521267 wdt:P161 ?answer . ?answer wdt:P19 wd:Q301082}
lcquad2-9502
Who is the child and father of Timur?
[ "Amir Taraghai", "Jahangir Mirza ibn Timur" ]
{ "entities": [ "Q8462", "Q4139069", "Q3515578" ], "relations": [ "P40", "P22" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "Timur", "Jahangir Mirza ibn Timur", "Amir Taraghai" ], "relation_labels": [ "child", "father" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q8462 wdt:P22 ?ans_1 . wd:Q8462 wdt:P40 ?ans_2 }
lcquad2-21960
Which is the protein that's encoded by INS?
[ "preproinsulin" ]
{ "entities": [ "Q21163221", "Q7240673", "Q8054" ], "relations": [ "P31", "P702" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "INS", "preproinsulin", "protein" ], "relation_labels": [ "instance of", "encoded by" ] }
select distinct ?sbj where { ?sbj wdt:P702 wd:Q21163221 . ?sbj wdt:P31 wd:Q8054 }
lcquad2-22285
Which characters are in Star Wars Scene V: The Domain Strikes Back?
[ "astromech droid" ]
{ "entities": [ "Q181795", "Q8770760", "Q15831596" ], "relations": [ "P31", "P1441" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Star Wars: Episode V – The Empire Strikes Back", "astromech droid", "class of fictional entities" ], "relation_labels": [ "instance of", "present in work" ] }
select distinct ?sbj where { ?sbj wdt:P1441 wd:Q181795 . ?sbj wdt:P31 wd:Q15831596 }
lcquad2-17583
Which was the designer of the working framework of WhatsApp?
[ "Apple" ]
{ "entities": [ "Q1049511", "Q14116", "Q312" ], "relations": [ "P178", "P306" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "WhatsApp", "macOS", "Apple" ], "relation_labels": [ "developer", "operating system" ] }
SELECT ?answer WHERE { wd:Q1049511 wdt:P306 ?X . ?X wdt:P178 ?answer}
lcquad2-20434
Who is Jane Fonda's husband?
[ "Richard Perry" ]
{ "entities": [ "Q41142", "Q7328376", "Q5" ], "relations": [ "P31", "P451" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Jane Fonda", "Richard Perry", "human" ], "relation_labels": [ "instance of", "unmarried partner" ] }
select distinct ?obj where { wd:Q41142 wdt:P451 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-23137
Disclose me aircraft family whose name has the word wapiti in it.
[ "Wapiti" ]
{ "entities": [ "Q15056993", "Q587279" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "aircraft family", "Wapiti" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15056993 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wapiti')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21376
St. Joseph the supporter holy person of which region in Guatemala?
[ "San José, El Petén" ]
{ "entities": [ "Q128267", "Q1872284", "Q741169" ], "relations": [ "P31", "P417" ], "adjacency": [ [ 2, 1, 0 ], [ 2, 0, 1 ] ], "entity_labels": [ "Joseph", "municipality of Guatemala", "San José, El Petén" ], "relation_labels": [ "instance of", "patron saint" ] }
select distinct ?sbj where { ?sbj wdt:P417 wd:Q128267 . ?sbj wdt:P31 wd:Q1872284 }
lcquad2-24219
What are races of dogs starting with the letter w
[ "westiepoo" ]
{ "entities": [ "Q99640545", "Q39367" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "westiepoo", "dog breed" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q39367 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-23288
WHICH IS THE BRANCH OF PHYSICS THAT CONTAINS THE WORD THERMODYNAMICS IN THEIR NAME
[ "stochastic thermodynamics" ]
{ "entities": [ "Q4162444", "Q55634035" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "branch of physics", "stochastic thermodynamics" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q4162444 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'thermodynamics')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-25482
Disclose me open content founded by Larry Sanger begins with w
[ "Wikipedia" ]
{ "entities": [ "Q52", "Q185", "Q1293664" ], "relations": [ "P112", "P31" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "Wikipedia", "Larry Sanger", "open content" ], "relation_labels": [ "founded by", "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1293664 . ?sbj wdt:P112 wd:Q185 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-20539
Who is the pioneer of the KGB?
[ "Ivan Ustinov" ]
{ "entities": [ "Q56192500", "Q5", "Q80919" ], "relations": [ "P31", "P598" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "Ivan Ustinov", "human", "KGB" ], "relation_labels": [ "instance of", "commander of (DEPRECATED)" ] }
select distinct ?sbj where { ?sbj wdt:P598 wd:Q80919 . ?sbj wdt:P31 wd:Q5 }
lcquad2-19861
Tell me about the Die Hard movie series.
[ "Die Hard" ]
{ "entities": [ "Q24856", "Q105598", "Q2716420" ], "relations": [ "P179", "P31" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "film series", "Die Hard", "Die Hard" ], "relation_labels": [ "part of the series", "instance of" ] }
select distinct ?obj where { wd:Q105598 wdt:P179 ?obj . ?obj wdt:P31 wd:Q24856 }
lcquad2-20182
Give me the name of the stadium operator for Clemson University.
[ "Memorial Stadium, Clemson" ]
{ "entities": [ "Q543579", "Q631066", "Q483110" ], "relations": [ "P31", "P137" ], "adjacency": [ [ 0, 1, 1 ], [ 0, 0, 2 ] ], "entity_labels": [ "Memorial Stadium, Clemson", "Clemson University", "stadium" ], "relation_labels": [ "instance of", "operator" ] }
select distinct ?sbj where { ?sbj wdt:P137 wd:Q631066 . ?sbj wdt:P31 wd:Q483110 }
lcquad2-14751
Who created the Venture Application Server?
[ "SAP" ]
{ "entities": [ "Q552581", "Q5816084", "Q259966" ], "relations": [ "P178", "P127" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "SAP", "Enterprise Application Server", "Sybase" ], "relation_labels": [ "developer", "owned by" ] }
SELECT ?answer WHERE { wd:Q5816084 wdt:P178 ?X . ?X wdt:P127 ?answer}
lcquad2-13530
What is the capital of Tuscany that has a twin town named Asmara?
[ "Florence" ]
{ "entities": [ "Q154849", "Q3642", "Q2044" ], "relations": [ "P190", "P36" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Grand Duchy of Tuscany", "Asmara", "Florence" ], "relation_labels": [ "twinned administrative body", "capital" ] }
SELECT ?answer WHERE { wd:Q154849 wdt:P36 ?answer . ?answer wdt:P190 wd:Q3642}
lcquad2-24440
which gracious war begins with the letter w
[ "War of Mutina" ]
{ "entities": [ "Q741777", "Q8465" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "War of Mutina", "civil war" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q8465 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21915
Which U.S. city is an enclave within Los Angeles.
[ "San Fernando" ]
{ "entities": [ "Q65", "Q1093829", "Q846406" ], "relations": [ "P31", "P501" ], "adjacency": [ [ 2, 1, 0 ], [ 2, 0, 1 ] ], "entity_labels": [ "Los Angeles", "city in the United States", "San Fernando" ], "relation_labels": [ "instance of", "enclave within" ] }
select distinct ?sbj where { ?sbj wdt:P501 wd:Q65 . ?sbj wdt:P31 wd:Q1093829 }
lcquad2-20589
Into which taxonomic type would chrysanthemums be categorized?
[ "Chrysanthemum indicum" ]
{ "entities": [ "Q16521", "Q4157858", "Q59882" ], "relations": [ "P31", "P427" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "taxon", "Chrysanthemum indicum", "Chrysanthemum" ], "relation_labels": [ "instance of", "taxonomic type" ] }
select distinct ?obj where { wd:Q59882 wdt:P427 ?obj . ?obj wdt:P31 wd:Q16521 }
lcquad2-16299
Who has become Madonna's counselor with children and saints?
[ "Donatello" ]
{ "entities": [ "Q37562", "Q3842726", "Q183458" ], "relations": [ "P170", "P1066" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Donatello", "Madonna with child and saints", "Andrea del Verrocchio" ], "relation_labels": [ "creator", "student of" ] }
SELECT ?answer WHERE { wd:Q3842726 wdt:P170 ?X . ?X wdt:P1066 ?answer}
lcquad2-19691
HTML5 uses which API version?
[ "HyperText Markup Language" ]
{ "entities": [ "Q2053", "Q20202982", "Q8811" ], "relations": [ "P629", "P31" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "HTML5", "web API", "HyperText Markup Language" ], "relation_labels": [ "edition or translation of", "instance of" ] }
select distinct ?obj where { wd:Q2053 wdt:P629 ?obj . ?obj wdt:P31 wd:Q20202982 }
lcquad2-10012
Which author published the study of Tuberculosis and in what year?
[ "phthisiology", "Annals of Internal Medicine" ]
{ "entities": [ "Q12204", "Q2624918", "Q564416" ], "relations": [ "P2579", "P1433" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "tuberculosis", "phthisiology", "Annals of Internal Medicine" ], "relation_labels": [ "studied by", "published in" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q12204 wdt:P1433 ?ans_1 . wd:Q12204 wdt:P2579 ?ans_2 }
lcquad2-23934
Is there a landmark devoted to the Iroquois tribe?
[ "quadtree" ]
{ "entities": [ "Q175263", "Q934791" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "data structure", "quadtree" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q175263 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'tree')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-11845
What is the musical score of Ave Verum Corpus that has a career in tune pedagogue?
[ "Wolfgang Amadeus Mozart" ]
{ "entities": [ "Q16145150", "Q254", "Q955663" ], "relations": [ "P106", "P86" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "music teacher", "Wolfgang Amadeus Mozart", "Ave verum corpus" ], "relation_labels": [ "occupation", "composer" ] }
SELECT ?answer WHERE { wd:Q955663 wdt:P86 ?answer . ?answer wdt:P106 wd:Q16145150}
lcquad2-20526
Which country is Sindh in?
[ "Pakistan" ]
{ "entities": [ "Q37211", "Q843", "Q3624078" ], "relations": [ "P31", "P131" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "Sindh", "Pakistan", "sovereign state" ], "relation_labels": [ "instance of", "located in the administrative territorial entity" ] }
select distinct ?obj where { wd:Q37211 wdt:P131 ?obj . ?obj wdt:P31 wd:Q3624078 }
lcquad2-23807
Name the interpreted language that contain word "yorick"?
[ "Yorick" ]
{ "entities": [ "Q3174329", "Q1993334" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Yorick", "interpreted language" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1993334 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'yorick')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-23299
Which is the town which contains the word tonbak in it's name?
[ "Seh Tonbak" ]
{ "entities": [ "Q5823620", "Q532" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Seh Tonbak", "village" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q532 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'tonbak')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-24719
what is wellbeing strength begins title s
[ "sports physiotherapy" ]
{ "entities": [ "Q44597158", "Q2391062" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "health specialty", "sports physiotherapy" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q44597158 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25