id
stringlengths 11
13
| question
stringlengths 11
8.64k
| answers
list | subgraph
dict | sparql
stringlengths 49
483
|
---|---|---|---|---|
lcquad2-16873
|
What is the workplace of Feodor Chaliapin?
|
[
"Russia"
] |
{
"entities": [
"Q649",
"Q189164",
"Q159"
],
"relations": [
"P1376",
"P937"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Moscow",
"Feodor Chaliapin",
"Russia"
],
"relation_labels": [
"capital of",
"work location"
]
}
|
SELECT ?answer WHERE { wd:Q189164 wdt:P937 ?X . ?X wdt:P1376 ?answer}
|
lcquad2-21988
|
What is the language of the khazars?
|
[
"Khazar"
] |
{
"entities": [
"Q173282",
"Q1067986",
"Q34770"
],
"relations": [
"P31",
"P2341"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Khazars",
"Khazar",
"language"
],
"relation_labels": [
"instance of",
"indigenous to"
]
}
|
select distinct ?sbj where { ?sbj wdt:P2341 wd:Q173282 . ?sbj wdt:P31 wd:Q34770 }
|
lcquad2-24789
|
Which is the Wikimedia disambiguation page which starts with the letter z?
|
[
"Zur guten Quelle"
] |
{
"entities": [
"Q97652960",
"Q4167410"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Zur guten Quelle",
"Wikimedia disambiguation page"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q4167410 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-24133
|
What forensic technique begins with d
|
[
"DNA profiling"
] |
{
"entities": [
"Q476697",
"Q456443"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"DNA profiling",
"forensic technique"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q456443 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-14985
|
Who gave the {co-founded by} of {has architect} of {RIM-116 Rolling Airframe Rocket} ?
|
[
"General Dynamics Electric Boat"
] |
{
"entities": [
"Q502940",
"Q1060737",
"Q1325893"
],
"relations": [
"P112",
"P287"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"General Dynamics",
"RIM-116 Rolling Airframe Missile",
"General Dynamics Electric Boat"
],
"relation_labels": [
"founded by",
"designed by"
]
}
|
SELECT ?answer WHERE { wd:Q1060737 wdt:P287 ?X . ?X wdt:P112 ?answer}
|
lcquad2-16747
|
What happens plotwise in Jacques
|
[
"computer animation"
] |
{
"entities": [
"Q1401416",
"Q24565962",
"Q9321426"
],
"relations": [
"P1441",
"P2079"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"computer animation",
"Jacques",
"Finding Dory"
],
"relation_labels": [
"present in work",
"fabrication method"
]
}
|
SELECT ?answer WHERE { wd:Q24565962 wdt:P1441 ?X . ?X wdt:P2079 ?answer}
|
lcquad2-9897
|
Where is the {venous seepage} and the {blood vessel supply} of {Clitoris} ?
|
[
"dorsal artery of clitoris",
"deep dorsal vein of clitoris"
] |
{
"entities": [
"Q873072",
"Q4117090",
"Q4115295"
],
"relations": [
"P2289",
"P2286"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"clitoris",
"dorsal artery of clitoris",
"deep dorsal vein of clitoris"
],
"relation_labels": [
"venous drainage",
"arterial supply"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q873072 wdt:P2289 ?ans_1 . wd:Q873072 wdt:P2286 ?ans_2 }
|
lcquad2-17604
|
Who is the office administrator of UTair Flight 120?
|
[
"Boeing 737 Next Generation"
] |
{
"entities": [
"Q1084919",
"Q1065835",
"Q633870"
],
"relations": [
"P121",
"P137"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Boeing 737 Next Generation",
"UTair Aviation",
"UTair Flight 120"
],
"relation_labels": [
"item operated",
"operator"
]
}
|
SELECT ?answer WHERE { wd:Q633870 wdt:P137 ?X . ?X wdt:P121 ?answer}
|
lcquad2-9985
|
What saying can be found in the work of Satan?
|
[
"The Devil and Tom Walker",
"Ha-Satan"
] |
{
"entities": [
"Q109855219",
"Q35230",
"Q16155801"
],
"relations": [
"P1441",
"P460"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Ha-Satan",
"Satan",
"The Devil and Tom Walker"
],
"relation_labels": [
"present in work",
"said to be the same as"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q35230 wdt:P460 ?ans_1 . wd:Q35230 wdt:P1441 ?ans_2 }
|
lcquad2-12708
|
"What is the treats disease of bismuth whose cure is Trovafloxacin?
|
[
"Escherichia coli infectious disease"
] |
{
"entities": [
"Q942",
"Q4227886",
"Q544393"
],
"relations": [
"P2175",
"P2176"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"bismuth",
"Escherichia coli infectious disease",
"trovafloxacin"
],
"relation_labels": [
"medical condition treated",
"drug or therapy used for treatment"
]
}
|
SELECT ?answer WHERE { wd:Q942 wdt:P2175 ?answer . ?answer wdt:P2176 wd:Q544393}
|
lcquad2-21757
|
What are some job requirements for an employee at UNESCO?
|
[
"Audrey Azoulay"
] |
{
"entities": [
"Q7809",
"Q5",
"Q22683089"
],
"relations": [
"P31",
"P39"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"UNESCO",
"human",
"Audrey Azoulay"
],
"relation_labels": [
"instance of",
"position held"
]
}
|
select distinct ?sbj where { ?sbj wdt:P39 wd:Q7809 . ?sbj wdt:P31 wd:Q5 }
|
lcquad2-16767
|
Who is Stanislaw Grabowski's brother's son?
|
[
"Stanisław August Poniatowski"
] |
{
"entities": [
"Q9341975",
"Q11714668",
"Q54019"
],
"relations": [
"P3373",
"P22"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Stanisław Grabowski",
"Izabela Grabowska",
"Stanisław August Poniatowski"
],
"relation_labels": [
"sibling",
"father"
]
}
|
SELECT ?answer WHERE { wd:Q9341975 wdt:P3373 ?X . ?X wdt:P22 ?answer}
|
lcquad2-13559
|
Where in Limpopo borough is the city of North West?
|
[
"South Africa"
] |
{
"entities": [
"Q134907",
"Q165956",
"Q258"
],
"relations": [
"P150",
"P131"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Limpopo",
"North West Province",
"South Africa"
],
"relation_labels": [
"contains the administrative territorial entity",
"located in the administrative territorial entity"
]
}
|
SELECT ?answer WHERE { wd:Q134907 wdt:P131 ?answer . ?answer wdt:P150 wd:Q165956}
|
lcquad2-12053
|
What is named for Compton scattering which has the honorary title of "X-ray badge"?
|
[
"Arthur Compton"
] |
{
"entities": [
"Q171516",
"Q127944",
"Q2202680"
],
"relations": [
"P138",
"P166"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Compton effect",
"Arthur Compton",
"X-ray badge"
],
"relation_labels": [
"named after",
"award received"
]
}
|
SELECT ?answer WHERE { wd:Q171516 wdt:P138 ?answer . ?answer wdt:P166 wd:Q2202680}
|
lcquad2-24855
|
WHICH IS THE NEWSMAGAZINE THAT Begins WITH W
|
[
"Weekly"
] |
{
"entities": [
"Q1684600",
"Q28430973"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"news magazine",
"Weekly"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1684600 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-14548
|
What is Thomas Adore Peacock's coat of arms?
|
[
"royal coat of arms of the United Kingdom"
] |
{
"entities": [
"Q165762",
"Q174193",
"Q561408"
],
"relations": [
"P27",
"P237"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"royal coat of arms of the United Kingdom",
"United Kingdom of Great Britain and Ireland",
"Thomas Love Peacock"
],
"relation_labels": [
"country of citizenship",
"coat of arms"
]
}
|
SELECT ?answer WHERE { wd:Q561408 wdt:P27 ?X . ?X wdt:P237 ?answer}
|
lcquad2-17342
|
The big event of Najib Razak was discovered by whom?
|
[
"El trece"
] |
{
"entities": [
"Q57675",
"Q1032473",
"Q23702848"
],
"relations": [
"P793",
"P61"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Najib Razak",
"El trece",
"Panama Papers"
],
"relation_labels": [
"significant event",
"discoverer or inventor"
]
}
|
SELECT ?answer WHERE { wd:Q57675 wdt:P793 ?X . ?X wdt:P61 ?answer}
|
lcquad2-17219
|
What Darwin journal is Abominable Mystery from?
|
[
"Annals of the Missouri Botanical Garden"
] |
{
"entities": [
"Q24621983",
"Q2530335",
"Q14396088"
],
"relations": [
"P2860",
"P1433"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Darwin's abominable mystery: Insights from a supertree of the angiosperms",
"Annals of the Missouri Botanical Garden",
"An ordinal classification for the families of flowering plants"
],
"relation_labels": [
"cites work",
"published in"
]
}
|
SELECT ?answer WHERE { wd:Q24621983 wdt:P2860 ?X . ?X wdt:P1433 ?answer}
|
lcquad2-10183
|
Name the executive and legislative body of Goa.
|
[
"Goa Legislative Assembly"
] |
{
"entities": [
"Q5575081",
"Q1171"
],
"relations": [
"P208",
"P194"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
0
]
],
"entity_labels": [
"Goa Legislative Assembly",
"Goa"
],
"relation_labels": [
"executive body",
"legislative body"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q1171 wdt:P208 ?ans_1 . wd:Q1171 wdt:P194 ?ans_2 }
|
lcquad2-16971
|
Countess of Longford Elizabeth Pakenham's grammatical gender of her second language is what?
|
[
"feminine"
] |
{
"entities": [
"Q530870",
"Q1860",
"Q1775415"
],
"relations": [
"P1412",
"P5109"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Elizabeth Pakenham, Countess of Longford",
"English",
"feminine"
],
"relation_labels": [
"languages spoken, written or signed",
"has grammatical gender"
]
}
|
SELECT ?answer WHERE { wd:Q530870 wdt:P1412 ?X . ?X wdt:P5109 ?answer}
|
lcquad2-13916
|
"Which is {subject of} of {history of Alabama}, that has {has shires} is {Perry Province} ?"
|
[
"Alabama"
] |
{
"entities": [
"Q173",
"Q5774933",
"Q253538"
],
"relations": [
"P1269",
"P150"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Alabama",
"history of Alabama",
"Perry County"
],
"relation_labels": [
"facet of",
"contains the administrative territorial entity"
]
}
|
SELECT ?answer WHERE { wd:Q5774933 wdt:P1269 ?answer . ?answer wdt:P150 wd:Q253538}
|
lcquad2-22883
|
What is the title of the library at the College of Oxford?
|
[
"Radcliffe Camera"
] |
{
"entities": [
"Q34433",
"Q1602700",
"Q7075"
],
"relations": [
"P127",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"University of Oxford",
"Radcliffe Camera",
"library"
],
"relation_labels": [
"owned by",
"instance of"
]
}
|
select distinct ?sbj where { ?sbj wdt:P127 wd:Q34433 . ?sbj wdt:P31 wd:Q7075 }
|
lcquad2-16407
|
mIRC is a language of what programming paradigm?
|
[
"procedural programming"
] |
{
"entities": [
"Q15777",
"Q211680",
"Q1418502"
],
"relations": [
"P3966",
"P277"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"C",
"mIRC",
"procedural programming"
],
"relation_labels": [
"programming paradigm",
"programmed in"
]
}
|
SELECT ?answer WHERE { wd:Q211680 wdt:P277 ?X . ?X wdt:P3966 ?answer}
|
lcquad2-23523
|
Which Romanian municipiu contains the word in its name?
|
[
"Zalău"
] |
{
"entities": [
"Q145292",
"Q640364"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Zalău",
"municipiu of Romania"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q640364 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zalău')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-14455
|
Who is the girl of the president of the Preservationist Party?
|
[
"Usha"
] |
{
"entities": [
"Q115627073",
"Q20055561",
"Q9626"
],
"relations": [
"P25",
"P488"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Usha",
"Rishi Sunak",
"Conservative Party"
],
"relation_labels": [
"mother",
"chairperson"
]
}
|
SELECT ?answer WHERE { wd:Q9626 wdt:P488 ?X . ?X wdt:P25 ?answer}
|
lcquad2-16263
|
For Buzz Aldrin, what subsidiary allows work for him?
|
[
"NASA Engineering and Safety Center"
] |
{
"entities": [
"Q2252",
"Q23548",
"Q108547864"
],
"relations": [
"P108",
"P355"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Buzz Aldrin",
"National Aeronautics and Space Administration",
"NASA Engineering and Safety Center"
],
"relation_labels": [
"employer",
"has subsidiary"
]
}
|
SELECT ?answer WHERE { wd:Q2252 wdt:P108 ?X . ?X wdt:P355 ?answer}
|
lcquad2-20453
|
Which is the anecdotal landmass of the story area of Diversion of Thrones?
|
[
"Essos"
] |
{
"entities": [
"Q17199338",
"Q23572",
"Q10944852"
],
"relations": [
"P840",
"P31"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"fictional continent",
"Game of Thrones",
"Essos"
],
"relation_labels": [
"narrative location",
"instance of"
]
}
|
select distinct ?obj where { wd:Q23572 wdt:P840 ?obj . ?obj wdt:P31 wd:Q17199338 }
|
lcquad2-12395
|
What is in action of Clarence Campbell, whose portable object location is in Atlantic Ocean?
|
[
"World War II"
] |
{
"entities": [
"Q362",
"Q97",
"Q1095380"
],
"relations": [
"P276",
"P607"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"World War II",
"Atlantic Ocean",
"Clarence Campbell"
],
"relation_labels": [
"location",
"conflict"
]
}
|
SELECT ?answer WHERE { wd:Q1095380 wdt:P607 ?answer . ?answer wdt:P276 wd:Q97}
|
lcquad2-22153
|
What does the Ulysses S. Allow National Dedication within the Joined together States commemorate?
|
[
"Grant's Tomb"
] |
{
"entities": [
"Q1025105",
"Q1967454",
"Q34836"
],
"relations": [
"P31",
"P547"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"Grant's Tomb",
"National Memorial of the United States",
"Ulysses S Grant"
],
"relation_labels": [
"instance of",
"commemorates"
]
}
|
select distinct ?sbj where { ?sbj wdt:P547 wd:Q34836 . ?sbj wdt:P31 wd:Q1967454 }
|
lcquad2-17031
|
Do you think by reading Dick Wolf's language does he use grammar correctly?
|
[
"first-person singular"
] |
{
"entities": [
"Q51929218",
"Q1860",
"Q550381"
],
"relations": [
"P1412",
"P5110"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"first-person singular",
"English",
"Dick Wolf"
],
"relation_labels": [
"languages spoken, written or signed",
"has grammatical person"
]
}
|
SELECT ?answer WHERE { wd:Q550381 wdt:P1412 ?X . ?X wdt:P5110 ?answer}
|
lcquad2-15086
|
What city is administered by the Bank of Upper Canada Building?
|
[
"Chongqing"
] |
{
"entities": [
"Q11725",
"Q4856194",
"Q172"
],
"relations": [
"P190",
"P131"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Chongqing",
"Bank of Upper Canada Building",
"Toronto"
],
"relation_labels": [
"twinned administrative body",
"located in the administrative territorial entity"
]
}
|
SELECT ?answer WHERE { wd:Q4856194 wdt:P131 ?X . ?X wdt:P190 ?answer}
|
lcquad2-14825
|
What is set up by working at Terry Nova?
|
[
"John Stagliano"
] |
{
"entities": [
"Q52153321",
"Q1281891",
"Q1273684"
],
"relations": [
"P112",
"P108"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Terry Nova",
"Evil Angel",
"John Stagliano"
],
"relation_labels": [
"founded by",
"employer"
]
}
|
SELECT ?answer WHERE { wd:Q52153321 wdt:P108 ?X . ?X wdt:P112 ?answer}
|
lcquad2-21784
|
Where is the Hong Kong headquarters located?
|
[
"Trendy Group"
] |
{
"entities": [
"Q4830453",
"Q8646",
"Q97486410"
],
"relations": [
"P31",
"P159"
],
"adjacency": [
[
2,
1,
1
],
[
2,
0,
0
]
],
"entity_labels": [
"business",
"Hong Kong",
"Trendy Group"
],
"relation_labels": [
"instance of",
"headquarters location"
]
}
|
select distinct ?sbj where { ?sbj wdt:P159 wd:Q8646 . ?sbj wdt:P31 wd:Q4830453 }
|
lcquad2-12882
|
"What is composed by of Symphony No. 5, which has ace of Eduard Marxsen ?"
|
[
"Johannes Brahms"
] |
{
"entities": [
"Q7294",
"Q231144",
"Q509843"
],
"relations": [
"P86",
"P1066"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Johannes Brahms",
"Symphony No. 4",
"Eduard Marxsen"
],
"relation_labels": [
"composer",
"student of"
]
}
|
SELECT ?answer WHERE { wd:Q231144 wdt:P86 ?answer . ?answer wdt:P1066 wd:Q509843}
|
lcquad2-24804
|
What animation technique begins with the letter "s"?
|
[
"Syncro-Vox"
] |
{
"entities": [
"Q3516833",
"Q7662273"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"animation technique",
"Syncro-Vox"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3516833 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-10171
|
What illness is treated with the medication Doxycycline?
|
[
"antibiotic",
"malaria"
] |
{
"entities": [
"Q422442",
"Q12187",
"Q12156"
],
"relations": [
"P2175",
"P2868"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"doxycycline",
"antibiotic",
"malaria"
],
"relation_labels": [
"medical condition treated",
"subject has role"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q422442 wdt:P2175 ?ans_1 . wd:Q422442 wdt:P2868 ?ans_2 }
|
lcquad2-23863
|
What are the lunar calendar which begin with the letter calendar
|
[
"Islamic calendar"
] |
{
"entities": [
"Q28892",
"Q185688"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Islamic calendar",
"lunar calendar"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q185688 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'calendar')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-9544
|
How do they keep score in a Decathlon?
|
[
"athletics",
"decathlon world record progression"
] |
{
"entities": [
"Q542",
"Q1139195",
"Q184654"
],
"relations": [
"P641",
"P2869"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"athletics",
"decathlon world record progression",
"decathlon"
],
"relation_labels": [
"sport",
"record or record progression"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q184654 wdt:P641 ?ans_1 . wd:Q184654 wdt:P2869 ?ans_2 }
|
lcquad2-20082
|
What is the Soviet Union's main regulatory treaty?
|
[
"Belavezha Accords"
] |
{
"entities": [
"Q15180",
"Q76986",
"Q131569"
],
"relations": [
"P31",
"P92"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Soviet Union",
"Belavezha Accords",
"treaty"
],
"relation_labels": [
"instance of",
"main regulatory text"
]
}
|
select distinct ?obj where { wd:Q15180 wdt:P92 ?obj . ?obj wdt:P31 wd:Q131569 }
|
lcquad2-16595
|
Who is The Sims: Hot Date created and co-founded by?
|
[
"Will Wright"
] |
{
"entities": [
"Q1991302",
"Q220317",
"Q309493"
],
"relations": [
"P178",
"P112"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"The Sims: Hot Date",
"Maxis",
"Will Wright"
],
"relation_labels": [
"developer",
"founded by"
]
}
|
SELECT ?answer WHERE { wd:Q1991302 wdt:P178 ?X . ?X wdt:P112 ?answer}
|
lcquad2-24446
|
WHICH SOVEREIGN STATE STARTS WITH THE LETTER Y
|
[
"Yemen"
] |
{
"entities": [
"Q3624078",
"Q805"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"sovereign state",
"Yemen"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3624078 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'y')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-21532
|
main reason behind beginning of World War II?
|
[
"Edward Felix Norton"
] |
{
"entities": [
"Q5",
"Q958017",
"Q362"
],
"relations": [
"P31",
"P607"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"human",
"Edward Felix Norton",
"World War II"
],
"relation_labels": [
"instance of",
"conflict"
]
}
|
select distinct ?sbj where { ?sbj wdt:P607 wd:Q362 . ?sbj wdt:P31 wd:Q5 }
|
lcquad2-23208
|
WHICH IS THE STATE OF AUSTRALIA THAT CONTAINS THE WORDS VICTORIA IN THEIR NAME
|
[
"Victoria"
] |
{
"entities": [
"Q36687",
"Q5852411"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Victoria",
"state of Australia"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q5852411 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'victoria')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-20028
|
Rolling Stones magazine published which article?
|
[
"Rolling Stone's 100 Greatest Debut Albums of All Time"
] |
{
"entities": [
"Q25399738",
"Q13406463",
"Q33511"
],
"relations": [
"P31",
"P1433"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"Rolling Stone's 100 Greatest Debut Albums of All Time",
"Wikimedia list article",
"Rolling Stone"
],
"relation_labels": [
"instance of",
"published in"
]
}
|
select distinct ?sbj where { ?sbj wdt:P1433 wd:Q33511 . ?sbj wdt:P31 wd:Q13406463 }
|
lcquad2-13233
|
Title the privileged title given to Jack Kilby whose pioneer is Herwig Kogelnik?
|
[
"IEEE Medal of Honor"
] |
{
"entities": [
"Q1528517",
"Q182031",
"Q678414"
],
"relations": [
"P1346",
"P166"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Herwig Kogelnik",
"Jack Kilby",
"IEEE Medal of Honor"
],
"relation_labels": [
"winner",
"award received"
]
}
|
SELECT ?answer WHERE { wd:Q182031 wdt:P166 ?answer . ?answer wdt:P1346 wd:Q1528517}
|
lcquad2-14246
|
What is the Christian title of James Hetfield that is the same as Jacques?
|
[
"James"
] |
{
"entities": [
"Q484302",
"Q941049",
"Q677191"
],
"relations": [
"P735",
"P460"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"James Hetfield",
"Jacques",
"James"
],
"relation_labels": [
"given name",
"said to be the same as"
]
}
|
SELECT ?answer WHERE { wd:Q484302 wdt:P735 ?answer . ?answer wdt:P460 wd:Q941049}
|
lcquad2-17635
|
what is the due to of the passing cause of Edwin Kagin?
|
[
"myocardial infarction"
] |
{
"entities": [
"Q181754",
"Q5346572",
"Q12152"
],
"relations": [
"P509",
"P828"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"heart failure",
"Edwin Kagin",
"myocardial infarction"
],
"relation_labels": [
"cause of death",
"has cause"
]
}
|
SELECT ?answer WHERE { wd:Q5346572 wdt:P509 ?X . ?X wdt:P828 ?answer}
|
lcquad2-9773
|
Who wrote The Merchant of Venice and what are the names of the characters?
|
[
"Shylock",
"William Shakespeare"
] |
{
"entities": [
"Q206400",
"Q692",
"Q2362952"
],
"relations": [
"P674",
"P50"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"The Merchant of Venice",
"William Shakespeare",
"Shylock"
],
"relation_labels": [
"characters",
"author"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q206400 wdt:P674 ?ans_1 . wd:Q206400 wdt:P50 ?ans_2 }
|
lcquad2-16184
|
Who is clinical psychology's doctoral supervisor and founder?
|
[
"James McKeen Cattell"
] |
{
"entities": [
"Q1399152",
"Q199906",
"Q545047"
],
"relations": [
"P112",
"P184"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Lightner Witmer",
"clinical psychology",
"James McKeen Cattell"
],
"relation_labels": [
"founded by",
"doctoral advisor"
]
}
|
SELECT ?answer WHERE { wd:Q199906 wdt:P112 ?X . ?X wdt:P184 ?answer}
|
lcquad2-25090
|
Name a female - dominated profession containing the word "dominatrix" in its name
|
[
"professional dominatrix"
] |
{
"entities": [
"Q28640",
"Q1404482",
"Q540391"
],
"relations": [
"P31",
"P1269"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"profession",
"female dominance",
"professional dominatrix"
],
"relation_labels": [
"instance of",
"facet of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q28640 . ?sbj wdt:P1269 wd:Q1404482 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'dominatrix')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-10024
|
Where and who discovered Tungsten?
|
[
"Spain",
"Fausto Elhuyar"
] |
{
"entities": [
"Q29",
"Q182745",
"Q743"
],
"relations": [
"P189",
"P61"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"Spain",
"Fausto Elhuyar",
"tungsten"
],
"relation_labels": [
"location of discovery",
"discoverer or inventor"
]
}
|
SELECT ?ans_1 ?ans_2 WHERE { wd:Q743 wdt:P189 ?ans_1 . wd:Q743 wdt:P61 ?ans_2 }
|
lcquad2-16986
|
Which film genre is pupil of Carl Reincke in?
|
[
"Hungarian folk music"
] |
{
"entities": [
"Q159569",
"Q722989",
"Q41309"
],
"relations": [
"P136",
"P1066"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Carl Reinecke",
"Hungarian folk music",
"Franz Liszt"
],
"relation_labels": [
"genre",
"student of"
]
}
|
SELECT ?answer WHERE { wd:Q159569 wdt:P1066 ?X . ?X wdt:P136 ?answer}
|
lcquad2-15020
|
What would be the interaction subject of the beat quark?
|
[
"general relativity"
] |
{
"entities": [
"Q6778",
"Q11452",
"Q11412"
],
"relations": [
"P1269",
"P517"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"top quark",
"general relativity",
"gravity"
],
"relation_labels": [
"facet of",
"interaction"
]
}
|
SELECT ?answer WHERE { wd:Q6778 wdt:P517 ?X . ?X wdt:P1269 ?answer}
|
lcquad2-13877
|
"Where is {grave at} of {James Bond}, which {accomplice town} is {Incheon} ?"
|
[
"Philadelphia"
] |
{
"entities": [
"Q241031",
"Q20934",
"Q1345"
],
"relations": [
"P119",
"P190"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"James Bond",
"Incheon",
"Philadelphia"
],
"relation_labels": [
"place of burial",
"twinned administrative body"
]
}
|
SELECT ?answer WHERE { wd:Q241031 wdt:P119 ?answer . ?answer wdt:P190 wd:Q20934}
|
lcquad2-17918
|
Which sport does Nina Dumbadze coach?
|
[
"decathlon"
] |
{
"entities": [
"Q1800416",
"Q50878",
"Q184654"
],
"relations": [
"P286",
"P2416"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Yuriy Dyachkov",
"Nina Dumbadze",
"decathlon"
],
"relation_labels": [
"head coach",
"sports discipline competed in"
]
}
|
SELECT ?answer WHERE { wd:Q50878 wdt:P286 ?X . ?X wdt:P2416 ?answer}
|
lcquad2-16485
|
record producer Vento del sudis married to who?
|
[
"Claudia Cardinale"
] |
{
"entities": [
"Q4009726",
"Q107006",
"Q2713078"
],
"relations": [
"P162",
"P26"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Vento del sud",
"Claudia Cardinale",
"Franco Cristaldi"
],
"relation_labels": [
"producer",
"spouse"
]
}
|
SELECT ?answer WHERE { wd:Q4009726 wdt:P162 ?X . ?X wdt:P26 ?answer}
|
lcquad2-23894
|
Let me know profoundly urbanized city whose title has the word valenzuela in it.
|
[
"Valenzuela"
] |
{
"entities": [
"Q1623",
"Q29946056"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Valenzuela",
"highly urbanized city"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q29946056 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'valenzuela')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-16768
|
What is the science that ponders the area of moveable objects in a cell cycle?
|
[
"cytology"
] |
{
"entities": [
"Q7868",
"Q3009579",
"Q188941"
],
"relations": [
"P276",
"P2579"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"cell",
"cytology",
"cell cycle"
],
"relation_labels": [
"location",
"studied by"
]
}
|
SELECT ?answer WHERE { wd:Q188941 wdt:P276 ?X . ?X wdt:P2579 ?answer}
|
lcquad2-16373
|
Where is the central station of Georg Rabuse?
|
[
"Munich"
] |
{
"entities": [
"Q1726",
"Q7320",
"Q1505690"
],
"relations": [
"P102",
"P159"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Munich",
"Nazi Party",
"Georg Rabuse"
],
"relation_labels": [
"member of political party",
"headquarters location"
]
}
|
SELECT ?answer WHERE { wd:Q1505690 wdt:P102 ?X . ?X wdt:P159 ?answer}
|
lcquad2-16340
|
What is the is being worked on the science of language?
|
[
"languoid"
] |
{
"entities": [
"Q17376908",
"Q8162",
"Q315"
],
"relations": [
"P2579",
"P2578"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"languoid",
"linguistics",
"language"
],
"relation_labels": [
"studied by",
"is the study of"
]
}
|
SELECT ?answer WHERE { wd:Q315 wdt:P2579 ?X . ?X wdt:P2578 ?answer}
|
lcquad2-23087
|
Which is the social district that is situated in Bilbao?
|
[
"Basque Country"
] |
{
"entities": [
"Q3502482",
"Q47588",
"Q8692"
],
"relations": [
"P31",
"P276"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"cultural region",
"Basque Country",
"Bilbao"
],
"relation_labels": [
"instance of",
"location"
]
}
|
select distinct ?obj where { wd:Q8692 wdt:P276 ?obj . ?obj wdt:P31 wd:Q3502482 }
|
lcquad2-15760
|
Who directs the clergy of Holy person Petersburg University? ?
|
[
"Karl Lugebil"
] |
{
"entities": [
"Q28729082",
"Q15071436",
"Q15081069"
],
"relations": [
"P184",
"P1075"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Imperial St. Petersburg University",
"Karl Lugebil",
"Ivan Pomyalovsky"
],
"relation_labels": [
"doctoral advisor",
"rector"
]
}
|
SELECT ?answer WHERE { wd:Q28729082 wdt:P1075 ?X . ?X wdt:P184 ?answer}
|
lcquad2-12414
|
What is the form of the compact flash with the rectangular base?
|
[
"rectangular cuboid"
] |
{
"entities": [
"Q209",
"Q678615",
"Q262959"
],
"relations": [
"P1419",
"P3263"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"rectangle",
"CompactFlash",
"rectangular cuboid"
],
"relation_labels": [
"shape",
"base"
]
}
|
SELECT ?answer WHERE { wd:Q678615 wdt:P1419 ?answer . ?answer wdt:P3263 wd:Q209}
|
lcquad2-14784
|
What did epoch of Selkirk Mountains bring?
|
[
"Paleozoic"
] |
{
"entities": [
"Q1420547",
"Q75507",
"Q83222"
],
"relations": [
"P2348",
"P155"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Selkirk Mountains",
"Paleozoic",
"Mesozoic"
],
"relation_labels": [
"time period",
"follows"
]
}
|
SELECT ?answer WHERE { wd:Q1420547 wdt:P2348 ?X . ?X wdt:P155 ?answer}
|
lcquad2-24961
|
WHat are the band that contain the word "Nightwish" in their title ?
|
[
"Nightwish"
] |
{
"entities": [
"Q215380",
"Q43510",
"Q960630"
],
"relations": [
"P31",
"P358"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"musical group",
"Nightwish",
"Nightwish discography"
],
"relation_labels": [
"instance of",
"discography"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q215380 . ?sbj wdt:P358 wd:Q960630 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'nightwish')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-20837
|
What is Thomas Aquinas' profession?
|
[
"theologian"
] |
{
"entities": [
"Q1234713",
"Q9438",
"Q28640"
],
"relations": [
"P106",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"theologian",
"Thomas Aquinas",
"profession"
],
"relation_labels": [
"occupation",
"instance of"
]
}
|
select distinct ?obj where { wd:Q9438 wdt:P106 ?obj . ?obj wdt:P31 wd:Q28640 }
|
lcquad2-20392
|
Notice the idea featured by Social Science subject
|
[
"society"
] |
{
"entities": [
"Q151885",
"Q8425",
"Q34749"
],
"relations": [
"P31",
"P2579"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"concept",
"society",
"social science"
],
"relation_labels": [
"instance of",
"studied by"
]
}
|
select distinct ?sbj where { ?sbj wdt:P2579 wd:Q34749 . ?sbj wdt:P31 wd:Q151885 }
|
lcquad2-14196
|
What is the title of the man with a effective career as a record maker and could be a cohabitant with on-screen character Courtney Cox?
|
[
"Johnny McDaid"
] |
{
"entities": [
"Q1702360",
"Q183945",
"Q58912"
],
"relations": [
"P106",
"P451"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Johnny McDaid",
"record producer",
"Courteney Cox"
],
"relation_labels": [
"occupation",
"unmarried partner"
]
}
|
SELECT ?answer WHERE { wd:Q58912 wdt:P451 ?answer . ?answer wdt:P106 wd:Q183945}
|
lcquad2-20410
|
root of individuals who talk japanese
|
[
"Australia"
] |
{
"entities": [
"Q6256",
"Q5287",
"Q408"
],
"relations": [
"P31",
"P2936"
],
"adjacency": [
[
2,
1,
1
],
[
2,
0,
0
]
],
"entity_labels": [
"country",
"Japanese",
"Australia"
],
"relation_labels": [
"instance of",
"language used"
]
}
|
select distinct ?sbj where { ?sbj wdt:P2936 wd:Q5287 . ?sbj wdt:P31 wd:Q6256 }
|
lcquad2-22636
|
What are the countries that speak Hungarian?
|
[
"United States of Greater Austria"
] |
{
"entities": [
"Q9067",
"Q666670",
"Q43702"
],
"relations": [
"P31",
"P2936"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Hungarian",
"United States of Greater Austria",
"federation"
],
"relation_labels": [
"instance of",
"language used"
]
}
|
select distinct ?sbj where { ?sbj wdt:P2936 wd:Q9067 . ?sbj wdt:P31 wd:Q43702 }
|
lcquad2-15676
|
What is crafted by innovator Lucy?
|
[
"university teacher"
] |
{
"entities": [
"Q1622272",
"Q503293",
"Q245388"
],
"relations": [
"P106",
"P61"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"university teacher",
"Donald Johanson",
"Lucy"
],
"relation_labels": [
"occupation",
"discoverer or inventor"
]
}
|
SELECT ?answer WHERE { wd:Q245388 wdt:P61 ?X . ?X wdt:P106 ?answer}
|
lcquad2-25212
|
Which psychoactive drug made of Papaver somniferum containing in its name the word "opium"
|
[
"opium"
] |
{
"entities": [
"Q131584",
"Q3706669",
"Q46452"
],
"relations": [
"P31",
"P1582"
],
"adjacency": [
[
2,
0,
1
],
[
2,
1,
0
]
],
"entity_labels": [
"Papaver somniferum",
"psychoactive drug",
"opium"
],
"relation_labels": [
"instance of",
"natural product of taxon"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3706669 . ?sbj wdt:P1582 wd:Q131584 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'opium')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-23877
|
What could be a computer show which employments the word zx81 in it's name
|
[
"Sinclair ZX81"
] |
{
"entities": [
"Q55990535",
"Q263250"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"computer model",
"Sinclair ZX81"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q55990535 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zx81')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-17308
|
who mediatised to supersedes the benefit tax?
|
[
"service tax in India"
] |
{
"entities": [
"Q27679782",
"Q7455814"
],
"relations": [
"P1366",
"P1365"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Goods and Services Tax",
"service tax in India"
],
"relation_labels": [
"replaced by",
"replaces"
]
}
|
SELECT ?answer WHERE { wd:Q7455814 wdt:P1366 ?X . ?X wdt:P1365 ?answer}
|
lcquad2-12864
|
What is that it has
|
[
"Padua"
] |
{
"entities": [
"Q58570",
"Q5681",
"Q617"
],
"relations": [
"P190",
"P937"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Handan",
"Andrea Mantegna",
"Padua"
],
"relation_labels": [
"twinned administrative body",
"work location"
]
}
|
SELECT ?answer WHERE { wd:Q5681 wdt:P937 ?answer . ?answer wdt:P190 wd:Q58570}
|
lcquad2-17296
|
Who worked for Charles mcLean's governing body andrews?
|
[
"Yale Corporation"
] |
{
"entities": [
"Q472498",
"Q2599066",
"Q49112"
],
"relations": [
"P797",
"P108"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Charles McLean Andrews",
"Yale Corporation",
"Yale University"
],
"relation_labels": [
"authority",
"employer"
]
}
|
SELECT ?answer WHERE { wd:Q472498 wdt:P108 ?X . ?X wdt:P797 ?answer}
|
lcquad2-25174
|
What state church has the word church in their name, and has workplace held by way of the head of the employer Archbishop of Canterbury?
|
[
"Church of England"
] |
{
"entities": [
"Q2325038",
"Q29282",
"Q82708"
],
"relations": [
"P31",
"P2388"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"state church",
"Archbishop of Canterbury",
"Church of England"
],
"relation_labels": [
"instance of",
"office held by head of the organization"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2325038 . ?sbj wdt:P2388 wd:Q29282 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'church')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-22351
|
What is the word for "portion of" in Hungarian?
|
[
"Hungarian vocabulary"
] |
{
"entities": [
"Q1162536",
"Q9067",
"Q6499736"
],
"relations": [
"P31",
"P1269"
],
"adjacency": [
[
0,
1,
1
],
[
0,
0,
2
]
],
"entity_labels": [
"Hungarian vocabulary",
"Hungarian",
"vocabulary"
],
"relation_labels": [
"instance of",
"facet of"
]
}
|
select distinct ?sbj where { ?sbj wdt:P1269 wd:Q9067 . ?sbj wdt:P31 wd:Q6499736 }
|
lcquad2-23237
|
Tell me religious denomination, the name of which contains the word unitarianism.
|
[
"Unitarianism"
] |
{
"entities": [
"Q106687",
"Q13414953"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Unitarianism",
"religious denomination"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q13414953 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'unitarianism')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-20768
|
Where is the Mona Lisa shown?
|
[
"Mona Lisa by Leonardo da Vinci"
] |
{
"entities": [
"Q14619895",
"Q667276",
"Q12418"
],
"relations": [
"P31",
"P608"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Mona Lisa by Leonardo da Vinci",
"art exhibition",
"Mona Lisa"
],
"relation_labels": [
"instance of",
"exhibition history"
]
}
|
select distinct ?obj where { wd:Q12418 wdt:P608 ?obj . ?obj wdt:P31 wd:Q667276 }
|
lcquad2-13793
|
From where did Richard von Weizsacker win the recognition title of 1st vicinity medalist of Medecins Sans Frontiers?
|
[
"Nansen Refugee Award"
] |
{
"entities": [
"Q663005",
"Q2567",
"Q49330"
],
"relations": [
"P1346",
"P166"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Nansen Refugee Award",
"Richard von Weizsäcker",
"Médecins Sans Frontières"
],
"relation_labels": [
"winner",
"award received"
]
}
|
SELECT ?answer WHERE { wd:Q49330 wdt:P166 ?answer . ?answer wdt:P1346 wd:Q2567}
|
lcquad2-23862
|
What are theeconomic policy which begin with the letter tripartism
|
[
"tripartism"
] |
{
"entities": [
"Q582577",
"Q3547600"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"economic policy",
"tripartism"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q582577 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'tripartism')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-20279
|
Which taxon produces silk?
|
[
"Bombyx mori"
] |
{
"entities": [
"Q37681",
"Q16521",
"Q134747"
],
"relations": [
"P31",
"P1582"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"silk",
"taxon",
"Bombyx mori"
],
"relation_labels": [
"instance of",
"natural product of taxon"
]
}
|
select distinct ?obj where { wd:Q37681 wdt:P1582 ?obj . ?obj wdt:P31 wd:Q16521 }
|
lcquad2-24048
|
What are the palace which begin with the letter o
|
[
"Örebro Castle"
] |
{
"entities": [
"Q23413",
"Q2757682"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"castle",
"Örebro Castle"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q23413 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'ö')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-21386
|
In ancient Romen culture why were amphitheater plays important?
|
[
"Amphitheatre of Serdica"
] |
{
"entities": [
"Q980970",
"Q1747689",
"Q7362268"
],
"relations": [
"P2596",
"P31"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Amphitheatre of Serdica",
"Ancient Rome",
"Roman amphitheatre"
],
"relation_labels": [
"culture",
"instance of"
]
}
|
select distinct ?sbj where { ?sbj wdt:P2596 wd:Q1747689 . ?sbj wdt:P31 wd:Q7362268 }
|
lcquad2-24295
|
What are the major academics beginning with letter T?
|
[
"theatre studies"
] |
{
"entities": [
"Q960543",
"Q4671286"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"theatre studies",
"academic major"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q4671286 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-12066
|
What nomination did Kiran Desai receive from David Mitchell but ultimately lose?
|
[
"Booker Prize"
] |
{
"entities": [
"Q40479",
"Q160082",
"Q228589"
],
"relations": [
"P1411",
"P1346"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"David Mitchell",
"Booker Prize",
"Kiran Desai"
],
"relation_labels": [
"nominated for",
"winner"
]
}
|
SELECT ?answer WHERE { wd:Q40479 wdt:P1411 ?answer . ?answer wdt:P1346 wd:Q228589}
|
lcquad2-24746
|
Name the mineral variety that starts the letter z.
|
[
"zeiringite"
] |
{
"entities": [
"Q429795",
"Q184955"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"mineral variety",
"zeiringite"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q429795 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-15206
|
What is the Alien prequel's genre?
|
[
"action film"
] |
{
"entities": [
"Q103569",
"Q188473",
"Q104814"
],
"relations": [
"P156",
"P136"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Alien",
"action film",
"Aliens"
],
"relation_labels": [
"followed by",
"genre"
]
}
|
SELECT ?answer WHERE { wd:Q103569 wdt:P156 ?X . ?X wdt:P136 ?answer}
|
lcquad2-20310
|
What is the monoanion of nitric acid?
|
[
"nitrate ion"
] |
{
"entities": [
"Q182168",
"Q55523986",
"Q83320"
],
"relations": [
"P31",
"P4147"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"nitrate ion",
"monoanion",
"nitric acid"
],
"relation_labels": [
"instance of",
"conjugate acid"
]
}
|
select distinct ?sbj where { ?sbj wdt:P4147 wd:Q83320 . ?sbj wdt:P31 wd:Q55523986 }
|
lcquad2-12519
|
What is the alma mater of John Sinclair with a parent company of the College of Michigan School of Music, Theater and Dance?
|
[
"University of Michigan"
] |
{
"entities": [
"Q7895775",
"Q706977",
"Q230492"
],
"relations": [
"P355",
"P69"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"University of Michigan School of Music, Theatre & Dance",
"John Sinclair",
"University of Michigan"
],
"relation_labels": [
"has subsidiary",
"educated at"
]
}
|
SELECT ?answer WHERE { wd:Q706977 wdt:P69 ?answer . ?answer wdt:P355 wd:Q7895775}
|
lcquad2-12425
|
What is the origin of Bradley Wiggins, and has the coat of arms of Ghent?
|
[
"Ghent"
] |
{
"entities": [
"Q193876",
"Q18286857",
"Q1296"
],
"relations": [
"P19",
"P237"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Bradley Wiggins",
"coat of arms of Ghent",
"Ghent"
],
"relation_labels": [
"place of birth",
"coat of arms"
]
}
|
SELECT ?answer WHERE { wd:Q193876 wdt:P19 ?answer . ?answer wdt:P237 wd:Q18286857}
|
lcquad2-13948
|
Alma Mater, creators of Suicide is at Leipzig College?
|
[
"Émile Durkheim"
] |
{
"entities": [
"Q154804",
"Q384404",
"Q15948"
],
"relations": [
"P50",
"P69"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"Leipzig University",
"Suicide",
"Émile Durkheim"
],
"relation_labels": [
"author",
"educated at"
]
}
|
SELECT ?answer WHERE { wd:Q384404 wdt:P50 ?answer . ?answer wdt:P69 wd:Q154804}
|
lcquad2-15066
|
What is proceeding to be created from HP-UX?
|
[
"Silicon Graphics International"
] |
{
"entities": [
"Q19923099",
"Q847593",
"Q17080768"
],
"relations": [
"P178",
"P1365"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Hewlett Packard Enterprise",
"HP-UX",
"Silicon Graphics International"
],
"relation_labels": [
"developer",
"replaces"
]
}
|
SELECT ?answer WHERE { wd:Q847593 wdt:P178 ?X . ?X wdt:P1365 ?answer}
|
lcquad2-12726
|
What subject of the history of Ridges has cities like Caerphilly District Borough as central areas?
|
[
"Wales"
] |
{
"entities": [
"Q1063608",
"Q748065",
"Q25"
],
"relations": [
"P1269",
"P150"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"history of Wales",
"Caerphilly County Borough",
"Wales"
],
"relation_labels": [
"facet of",
"contains the administrative territorial entity"
]
}
|
SELECT ?answer WHERE { wd:Q1063608 wdt:P1269 ?answer . ?answer wdt:P150 wd:Q748065}
|
lcquad2-14931
|
When was Magic 3 from the series Heroes of Might published?
|
[
"Microsoft Windows"
] |
{
"entities": [
"Q1406",
"Q216572",
"Q507074"
],
"relations": [
"P179",
"P400"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Microsoft Windows",
"Heroes of Might and Magic",
"Heroes of Might and Magic III: Armageddon's Blade"
],
"relation_labels": [
"part of the series",
"platform"
]
}
|
SELECT ?answer WHERE { wd:Q507074 wdt:P179 ?X . ?X wdt:P400 ?answer}
|
lcquad2-24117
|
What tv series starts with "z"?
|
[
"Zwei Herzen und zwölf Pfoten"
] |
{
"entities": [
"Q95993030",
"Q5398426"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Zwei Herzen und zwölf Pfoten",
"television series"
],
"relation_labels": [
"instance of"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q5398426 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-25204
|
Title a city that contains the word " manila" in its name
|
[
"Metro Manila"
] |
{
"entities": [
"Q13580",
"Q1907114",
"Q259278"
],
"relations": [
"P31",
"P126"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Metro Manila",
"metropolitan area",
"Metropolitan Manila Development Authority"
],
"relation_labels": [
"instance of",
"maintained by"
]
}
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1907114 . ?sbj wdt:P126 wd:Q259278 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'manila')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
lcquad2-15395
|
Where are the papers of the music by String Quartet No. 14 (Beethoven)?
|
[
"Staatsbibliothek Berlin"
] |
{
"entities": [
"Q255",
"Q188081",
"Q15630017"
],
"relations": [
"P86",
"P485"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Ludwig van Beethoven",
"String Quartet No. 14",
"Staatsbibliothek Berlin"
],
"relation_labels": [
"composer",
"archives at"
]
}
|
SELECT ?answer WHERE { wd:Q188081 wdt:P86 ?X . ?X wdt:P485 ?answer}
|
lcquad2-20008
|
Which is the conflation for the product or material produced?
|
[
"artefact"
] |
{
"entities": [
"Q14946528",
"Q5",
"Q3619132"
],
"relations": [
"P31",
"P1056"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"conflation",
"human",
"artefact"
],
"relation_labels": [
"instance of",
"product or material produced"
]
}
|
select distinct ?obj where { wd:Q5 wdt:P1056 ?obj . ?obj wdt:P31 wd:Q14946528 }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.