id
stringlengths
11
13
question
stringlengths
11
8.64k
answers
sequence
subgraph
dict
sparql
stringlengths
49
483
lcquad2-22422
What Institute Grants was Ron Howard designated for?
[ "Academy Award for Best Picture" ]
{ "entities": [ "Q102427", "Q103646", "Q19020" ], "relations": [ "P1411", "P31" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Academy Award for Best Picture", "Ron Howard", "Academy Awards" ], "relation_labels": [ "nominated for", "instance of" ] }
select distinct ?obj where { wd:Q103646 wdt:P1411 ?obj . ?obj wdt:P31 wd:Q19020 }
lcquad2-14529
What is the head of state's nationality of Francisco Serrao?
[ "President of Portugal" ]
{ "entities": [ "Q554452", "Q322459", "Q45" ], "relations": [ "P1906", "P27" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Francisco Serrão", "President of Portugal", "Portugal" ], "relation_labels": [ "office held by head of state", "country of citizenship" ] }
SELECT ?answer WHERE { wd:Q554452 wdt:P27 ?X . ?X wdt:P1906 ?answer}
lcquad2-15690
Who is philosophy of part of party of Michel Pouzol ?
[ "social democracy" ]
{ "entities": [ "Q3310625", "Q121254", "Q170972" ], "relations": [ "P102", "P1142" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Michel Pouzol", "social democracy", "Socialist Party" ], "relation_labels": [ "member of political party", "political ideology" ] }
SELECT ?answer WHERE { wd:Q3310625 wdt:P102 ?X . ?X wdt:P1142 ?answer}
lcquad2-16399
Who is the child of the brother of Murray Guggenheim?
[ "Meyer Guggenheim" ]
{ "entities": [ "Q1702576", "Q124462", "Q1390581" ], "relations": [ "P3373", "P22" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Murry Guggenheim", "Meyer Guggenheim", "William Guggenheim" ], "relation_labels": [ "sibling", "father" ] }
SELECT ?answer WHERE { wd:Q1702576 wdt:P3373 ?X . ?X wdt:P22 ?answer}
lcquad2-21375
Who is the {human} for {composer} of {My Reasonable Woman}
[ "Frederick Loewe" ]
{ "entities": [ "Q5", "Q551678", "Q591943" ], "relations": [ "P31", "P86" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "human", "Frederick Loewe", "My Fair Lady" ], "relation_labels": [ "instance of", "composer" ] }
select distinct ?obj where { wd:Q591943 wdt:P86 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-23999
What is the cryptide that begins with the letter y
[ "Yowie" ]
{ "entities": [ "Q772636", "Q964575" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "cryptid", "Yowie" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q772636 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'y')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-15645
What {sort of music} is {lyricist} {Princess Mononoke} ?
[ "film score" ]
{ "entities": [ "Q275900", "Q186572", "Q492264" ], "relations": [ "P86", "P136" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Joe Hisaishi", "Princess Mononoke", "film score" ], "relation_labels": [ "composer", "genre" ] }
SELECT ?answer WHERE { wd:Q186572 wdt:P86 ?X . ?X wdt:P136 ?answer}
lcquad2-24597
What's the primary human that begins with the letter "p"?
[ "Pandora" ]
{ "entities": [ "Q4349921", "Q131346" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "first human", "Pandora" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q4349921 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'p')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-17052
Which individuals are related with the civilisation of Hadrian's Divider?
[ "Category:Ancient Romans" ]
{ "entities": [ "Q5652564", "Q1747689", "Q57357" ], "relations": [ "P2596", "P1792" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "Category:Ancient Romans", "Ancient Rome", "Hadrian's Wall" ], "relation_labels": [ "culture", "category of associated people" ] }
SELECT ?answer WHERE { wd:Q57357 wdt:P2596 ?X . ?X wdt:P1792 ?answer}
lcquad2-15910
What city and division did James, child of Alphaeus pass on?
[ "Aswan Governorate" ]
{ "entities": [ "Q44047", "Q79", "Q29937" ], "relations": [ "P150", "P20" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "James, son of Alphaeus", "Egypt", "Aswan Governorate" ], "relation_labels": [ "contains the administrative territorial entity", "place of death" ] }
SELECT ?answer WHERE { wd:Q44047 wdt:P20 ?X . ?X wdt:P150 ?answer}
lcquad2-23245
Disclose me archaeological site whose name has the word tripolis in it.
[ "Tripolis" ]
{ "entities": [ "Q839954", "Q117411" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "archaeological site", "Tripolis" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q839954 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'tripolis')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-12140
What is the formation of Zero Mostel in the U.S. Army Human Resources Command with a subsidiary?
[ "United States Army" ]
{ "entities": [ "Q191952", "Q7889484", "Q9212" ], "relations": [ "P241", "P355" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Zero Mostel", "United States Army Human Resources Command", "United States Army" ], "relation_labels": [ "military branch", "has subsidiary" ] }
SELECT ?answer WHERE { wd:Q191952 wdt:P241 ?answer . ?answer wdt:P355 wd:Q7889484}
lcquad2-24635
What could be a stage alter that begins with the letter s.
[ "sublimation" ]
{ "entities": [ "Q131800", "Q185357" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "sublimation", "phase change" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q185357 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-25065
Name a decimal classification that includes the word "classification " in its name
[ "Dewey Decimal Classification" ]
{ "entities": [ "Q15222117", "Q48460", "Q1207369" ], "relations": [ "P31", "P747" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "DDC 23", "Dewey Decimal Classification", "decimal classification" ], "relation_labels": [ "instance of", "has edition or translation" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1207369 . ?sbj wdt:P747 wd:Q15222117 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'classification')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21044
Who is David Spade's animated feature film?
[ "The Emperor's New Groove" ]
{ "entities": [ "Q29168811", "Q298658", "Q223163" ], "relations": [ "P31", "P2438" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "animated feature film", "David Spade", "The Emperor's New Groove" ], "relation_labels": [ "instance of", "narrator" ] }
select distinct ?sbj where { ?sbj wdt:P2438 wd:Q298658 . ?sbj wdt:P31 wd:Q29168811 }
lcquad2-25039
Tell me the historical language that contains the phrase 'ancient' in its identify and that has the grammatical feminine gender.
[ "Ancient Greek" ]
{ "entities": [ "Q1775415", "Q35497", "Q2315359" ], "relations": [ "P31", "P5109" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "feminine", "Ancient Greek", "historical language" ], "relation_labels": [ "instance of", "has grammatical gender" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2315359 . ?sbj wdt:P5109 wd:Q1775415 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'ancient')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-14323
When is {diplomatic relation} with {nationality} of {Usher} ?
[ "Gabon" ]
{ "entities": [ "Q1000", "Q30", "Q165911" ], "relations": [ "P27", "P530" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "Gabon", "United States of America", "Usher" ], "relation_labels": [ "country of citizenship", "diplomatic relation" ] }
SELECT ?answer WHERE { wd:Q165911 wdt:P27 ?X . ?X wdt:P530 ?answer}
lcquad2-15458
What is known author of Shakespeare's pieces ?
[ "A Midsummer Night's Dream" ]
{ "entities": [ "Q692", "Q662550", "Q104871" ], "relations": [ "P50", "P800" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "William Shakespeare", "Shakespeare's sonnets", "A Midsummer Night's Dream" ], "relation_labels": [ "author", "notable work" ] }
SELECT ?answer WHERE { wd:Q662550 wdt:P50 ?X . ?X wdt:P800 ?answer}
lcquad2-16354
What has a result of ethylene glycol?
[ "skin" ]
{ "entities": [ "Q1074", "Q194207", "Q21174292" ], "relations": [ "P1542", "P689" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "skin", "ethylene glycol", "ethylene glycol exposure" ], "relation_labels": [ "has effect", "afflicts" ] }
SELECT ?answer WHERE { wd:Q194207 wdt:P1542 ?X . ?X wdt:P689 ?answer}
lcquad2-20820
In which Chemistry branch would you study the peat properties?
[ "peat chemistry" ]
{ "entities": [ "Q11790203", "Q20097254", "Q184624" ], "relations": [ "P31", "P2578" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "branch of chemistry", "peat chemistry", "peat" ], "relation_labels": [ "instance of", "is the study of" ] }
select distinct ?sbj where { ?sbj wdt:P2578 wd:Q184624 . ?sbj wdt:P31 wd:Q11790203 }
lcquad2-14212
Title the scene in Romania that had discretionary relations in Israel amid World War I.
[ "Romania" ]
{ "entities": [ "Q553157", "Q801", "Q218" ], "relations": [ "P276", "P530" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Romania in World War I", "Israel", "Romania" ], "relation_labels": [ "location", "diplomatic relation" ] }
SELECT ?answer WHERE { wd:Q553157 wdt:P276 ?answer . ?answer wdt:P530 wd:Q801}
lcquad2-24997
Tell me which educate carrier that is operated with the aid of Compagnie Internationale des Wagons-Lits and that includes the word categorical in it is name?
[ "Orient Express" ]
{ "entities": [ "Q191985", "Q1121141", "Q15141321" ], "relations": [ "P31", "P137" ], "adjacency": [ [ 0, 0, 2 ], [ 0, 1, 1 ] ], "entity_labels": [ "Orient Express", "Compagnie Internationale des Wagons-Lits", "train service" ], "relation_labels": [ "instance of", "operator" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15141321 . ?sbj wdt:P137 wd:Q1121141 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'express')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-21971
What scholarly work takes after the book of Exodus?
[ "Book of Genesis" ]
{ "entities": [ "Q7725634", "Q9184", "Q9190" ], "relations": [ "P31", "P155" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "literary work", "Book of Genesis", "Exodus" ], "relation_labels": [ "instance of", "follows" ] }
select distinct ?obj where { wd:Q9190 wdt:P155 ?obj . ?obj wdt:P31 wd:Q7725634 }
lcquad2-24424
which institution that begins with the letter r
[ "Raëlian Foundation" ]
{ "entities": [ "Q7299707", "Q178706" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Raëlian Foundation", "institution" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q178706 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'r')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-22061
What is the PTSD treatment medicine?
[ "topiramate" ]
{ "entities": [ "Q202387", "Q11173", "Q221174" ], "relations": [ "P31", "P2176" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "post-traumatic stress disorder", "chemical compound", "topiramate" ], "relation_labels": [ "instance of", "drug or therapy used for treatment" ] }
select distinct ?obj where { wd:Q202387 wdt:P2176 ?obj . ?obj wdt:P31 wd:Q11173 }
lcquad2-17099
Which was the discovery or invention of Nick Faldo?
[ "El trece" ]
{ "entities": [ "Q531520", "Q1032473", "Q23702848" ], "relations": [ "P793", "P61" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Nick Faldo", "El trece", "Panama Papers" ], "relation_labels": [ "significant event", "discoverer or inventor" ] }
SELECT ?answer WHERE { wd:Q531520 wdt:P793 ?X . ?X wdt:P61 ?answer}
lcquad2-16568
Which location was Harambe (the gorilla) kept in?
[ "Damaliscus pygargus" ]
{ "entities": [ "Q1009881", "Q26388682", "Q5566451" ], "relations": [ "P1990", "P551" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "Damaliscus pygargus", "Harambe", "Gladys Porter Zoo" ], "relation_labels": [ "species kept", "residence" ] }
SELECT ?answer WHERE { wd:Q26388682 wdt:P551 ?X . ?X wdt:P1990 ?answer}
lcquad2-23532
Disclose me biblical place whose name has the word zorah in it.
[ "Zorah" ]
{ "entities": [ "Q2916162", "Q12404340" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Zorah", "biblical place" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q12404340 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zorah')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-11799
What did Jose "Dichter" Marti do for work?
[ "poet" ]
{ "entities": [ "Q49757", "Q1293108", "Q103285" ], "relations": [ "P106", "P460" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "poet", "Dichter", "José Martí" ], "relation_labels": [ "occupation", "said to be the same as" ] }
SELECT ?answer WHERE { wd:Q103285 wdt:P106 ?answer . ?answer wdt:P460 wd:Q1293108}
lcquad2-12996
Who is the {life stance} of {Zhuang people} who has {formed in} {Bodh Gaya} ?
[ "Buddhism" ]
{ "entities": [ "Q176767", "Q748", "Q36692" ], "relations": [ "P140", "P740" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "Bodh Gaya", "Buddhism", "Zhuang people" ], "relation_labels": [ "religion or worldview", "location of formation" ] }
SELECT ?answer WHERE { wd:Q36692 wdt:P140 ?answer . ?answer wdt:P740 wd:Q176767}
lcquad2-19890
Who is the employer of J.R.R. Tolkien?
[ "Robert Havard" ]
{ "entities": [ "Q5", "Q4250312", "Q892" ], "relations": [ "P108", "P31" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "human", "Robert Havard", "J. R. R. Tolkien" ], "relation_labels": [ "employer", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P108 wd:Q892 . ?sbj wdt:P31 wd:Q5 }
lcquad2-9978
In Blade Runner, who are the directory and the directory of photography?
[ "Jordan Cronenweth", "Ridley Scott" ]
{ "entities": [ "Q184843", "Q56005", "Q715198" ], "relations": [ "P344", "P57" ], "adjacency": [ [ 0, 0, 2 ], [ 0, 1, 1 ] ], "entity_labels": [ "Blade Runner", "Ridley Scott", "Jordan Cronenweth" ], "relation_labels": [ "director of photography", "director" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q184843 wdt:P344 ?ans_1 . wd:Q184843 wdt:P57 ?ans_2 }
lcquad2-24882
What are the world day which begin with the letter n
[ "Neighbours' Day" ]
{ "entities": [ "Q2558684", "Q599470" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "world day", "Neighbours' Day" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2558684 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'n')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-13083
Who has a tomb in All Saints' Church and wrote "Ninety-five Theses"?
[ "Martin Luther" ]
{ "entities": [ "Q661752", "Q157506", "Q9554" ], "relations": [ "P119", "P50" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "All Saints' Church, Lutherstadt Wittenberg", "Ninety-five Theses", "Martin Luther" ], "relation_labels": [ "place of burial", "author" ] }
SELECT ?answer WHERE { wd:Q157506 wdt:P50 ?answer . ?answer wdt:P119 wd:Q661752}
lcquad2-13718
What are the requirements creating business enterprise of IEEE 1394, that have subsidiary entities of IEEE Nuclear and Plasma Sciences Society?
[ "Institute of Electrical and Electronics Engineers" ]
{ "entities": [ "Q131566", "Q3639101", "Q181693" ], "relations": [ "P1462", "P355" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "Institute of Electrical and Electronics Engineers", "IEEE Nuclear and Plasma Sciences Society", "IEEE 1394" ], "relation_labels": [ "standards body", "has subsidiary" ] }
SELECT ?answer WHERE { wd:Q181693 wdt:P1462 ?answer . ?answer wdt:P355 wd:Q3639101}
lcquad2-17704
Which result has a place to AT&T Research facilities?
[ "broadband Internet access" ]
{ "entities": [ "Q35476", "Q4654538", "Q15057100" ], "relations": [ "P127", "P1056" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "AT&T", "AT&T Laboratories", "broadband Internet access" ], "relation_labels": [ "owned by", "product or material produced" ] }
SELECT ?answer WHERE { wd:Q4654538 wdt:P127 ?X . ?X wdt:P1056 ?answer}
lcquad2-19780
Qantas is lead by who?
[ "Lenox Hewitt" ]
{ "entities": [ "Q5", "Q6523167", "Q32491" ], "relations": [ "P108", "P31" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "human", "Lenox Hewitt", "Qantas" ], "relation_labels": [ "employer", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P108 wd:Q32491 . ?sbj wdt:P31 wd:Q5 }
lcquad2-20156
Which world war did the Treaty of Versailles take place after?
[ "World War II" ]
{ "entities": [ "Q103495", "Q362", "Q8736" ], "relations": [ "P31", "P828" ], "adjacency": [ [ 1, 1, 2 ], [ 1, 0, 0 ] ], "entity_labels": [ "world war", "World War II", "Treaty of Versailles" ], "relation_labels": [ "instance of", "has cause" ] }
select distinct ?sbj where { ?sbj wdt:P828 wd:Q8736 . ?sbj wdt:P31 wd:Q103495 }
lcquad2-20652
What is the authentic angle of cryptography point history?
[ "history of cryptography" ]
{ "entities": [ "Q17524420", "Q467928", "Q8789" ], "relations": [ "P31", "P2184" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "aspect of history", "history of cryptography", "cryptography" ], "relation_labels": [ "instance of", "history of topic" ] }
select distinct ?obj where { wd:Q8789 wdt:P2184 ?obj . ?obj wdt:P31 wd:Q17524420 }
lcquad2-25031
Which is the bridge that is positioned in the administrative territorial entity of London Borough of Southwark and whose name carries the phrase bridge?
[ "Southern Abutment To Former West Blackfriars And St Pauls Rail Bridge" ]
{ "entities": [ "Q12280", "Q26657140", "Q730706" ], "relations": [ "P31", "P131" ], "adjacency": [ [ 1, 0, 0 ], [ 1, 1, 2 ] ], "entity_labels": [ "bridge", "Southern Abutment To Former West Blackfriars And St Pauls Rail Bridge", "London Borough of Southwark" ], "relation_labels": [ "instance of", "located in the administrative territorial entity" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q12280 . ?sbj wdt:P131 wd:Q730706 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'bridge')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-25676
WHICH IS THE MANTRA THAT IS THE FACET OF HINDUISM AND WHICH STARTS WITH G
[ "Gayatri Mantra" ]
{ "entities": [ "Q9089", "Q131510", "Q728880" ], "relations": [ "P31", "P1269" ], "adjacency": [ [ 2, 0, 1 ], [ 2, 1, 0 ] ], "entity_labels": [ "Hinduism", "mantra", "Gayatri Mantra" ], "relation_labels": [ "instance of", "facet of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q131510 . ?sbj wdt:P1269 wd:Q9089 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'g')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-9954
Who is Bono's owner and member?
[ "Clarence Hotel", "U2" ]
{ "entities": [ "Q396", "Q834621", "Q13046758" ], "relations": [ "P1830", "P463" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "U2", "Bono", "Clarence Hotel" ], "relation_labels": [ "owner of", "member of" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q834621 wdt:P1830 ?ans_1 . wd:Q834621 wdt:P463 ?ans_2 }
lcquad2-19920
Who is the mother of Jesus Christ
[ "Virgin Mary" ]
{ "entities": [ "Q345", "Q302", "Q20643955" ], "relations": [ "P25", "P31" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Virgin Mary", "Jesus", "human biblical figure" ], "relation_labels": [ "mother", "instance of" ] }
select distinct ?obj where { wd:Q302 wdt:P25 ?obj . ?obj wdt:P31 wd:Q20643955 }
lcquad2-24664
what basic emotion begins with the letter"t"?
[ "trust" ]
{ "entities": [ "Q659974", "Q16748867" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "trust", "basic emotion" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q16748867 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-17159
Which person handed over the mallet used in croquet at the garden party.
[ "rope" ]
{ "entities": [ "Q855289", "Q102843", "Q31029" ], "relations": [ "P641", "P2283" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "tug of war at the 1904 Summer Olympics", "tug of war", "rope" ], "relation_labels": [ "sport", "uses" ] }
SELECT ?answer WHERE { wd:Q855289 wdt:P641 ?X . ?X wdt:P2283 ?answer}
lcquad2-9477
Where was Jane Austen born and where did she die?
[ "Steventon", "Winchester" ]
{ "entities": [ "Q1231836", "Q36322", "Q172157" ], "relations": [ "P19", "P20" ], "adjacency": [ [ 1, 0, 0 ], [ 1, 1, 2 ] ], "entity_labels": [ "Steventon", "Jane Austen", "Winchester" ], "relation_labels": [ "place of birth", "place of death" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q36322 wdt:P19 ?ans_1 . wd:Q36322 wdt:P20 ?ans_2 }
lcquad2-20332
What is the record name that 50 Cent has a place to called
[ "Caroline Records" ]
{ "entities": [ "Q2608849", "Q264137", "Q6060" ], "relations": [ "P31", "P264" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "imprint", "Caroline Records", "50 Cent" ], "relation_labels": [ "instance of", "record label" ] }
select distinct ?obj where { wd:Q6060 wdt:P264 ?obj . ?obj wdt:P31 wd:Q2608849 }
lcquad2-21949
In which major city is Urdu the official language?
[ "Karachi" ]
{ "entities": [ "Q8660", "Q1617", "Q174844" ], "relations": [ "P37", "P31" ], "adjacency": [ [ 0, 0, 1 ], [ 0, 1, 2 ] ], "entity_labels": [ "Karachi", "Urdu", "megacity" ], "relation_labels": [ "official language", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P37 wd:Q1617 . ?sbj wdt:P31 wd:Q174844 }
lcquad2-15159
What government was responsible for the sentence of Hosni Mubarak?
[ "Libya" ]
{ "entities": [ "Q34105", "Q1016", "Q1434602" ], "relations": [ "P607", "P710" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Hosni Mubarak", "Libya", "Libyan–Egyptian War" ], "relation_labels": [ "conflict", "participant" ] }
SELECT ?answer WHERE { wd:Q34105 wdt:P607 ?X . ?X wdt:P710 ?answer}
lcquad2-15112
What is time zone of subitem of of history of Lithuania?
[ "UTC+02:00" ]
{ "entities": [ "Q37", "Q6723", "Q215063" ], "relations": [ "P421", "P1269" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Lithuania", "UTC+02:00", "history of Lithuania" ], "relation_labels": [ "located in time zone", "facet of" ] }
SELECT ?answer WHERE { wd:Q215063 wdt:P1269 ?X . ?X wdt:P421 ?answer}
lcquad2-22436
Which island nation has "God Save The Queen" for its national anthem?
[ "Antigua and Barbuda" ]
{ "entities": [ "Q112099", "Q40807", "Q781" ], "relations": [ "P31", "P85" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "island nation", "God Save the King", "Antigua and Barbuda" ], "relation_labels": [ "instance of", "anthem" ] }
select distinct ?sbj where { ?sbj wdt:P85 wd:Q40807 . ?sbj wdt:P31 wd:Q112099 }
lcquad2-15783
who minister of works for georg simmel ?
[ "Julia Blumenthal" ]
{ "entities": [ "Q1711939", "Q76849", "Q152087" ], "relations": [ "P108", "P1075" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Julia Blumenthal", "Georg Simmel", "Humboldt University of Berlin" ], "relation_labels": [ "employer", "rector" ] }
SELECT ?answer WHERE { wd:Q76849 wdt:P108 ?X . ?X wdt:P1075 ?answer}
lcquad2-12074
What group within the Durrani Realm features a history in Islam?
[ "Islam" ]
{ "entities": [ "Q467627", "Q432", "Q642379" ], "relations": [ "P140", "P2184" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Durrani Empire", "Islam", "history of Islam" ], "relation_labels": [ "religion or worldview", "history of topic" ] }
SELECT ?answer WHERE { wd:Q467627 wdt:P140 ?answer . ?answer wdt:P2184 wd:Q642379}
lcquad2-21283
What impact did the Enormous Blast have on the universe?
[ "universe" ]
{ "entities": [ "Q1", "Q36906466", "Q323" ], "relations": [ "P31", "P1542" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "universe", "universe", "Big Bang" ], "relation_labels": [ "instance of", "has effect" ] }
select distinct ?obj where { wd:Q323 wdt:P1542 ?obj . ?obj wdt:P31 wd:Q36906466 }
lcquad2-25525
Name a borough of New York City closed to water that starts offevolved with letter M
[ "Manhattan" ]
{ "entities": [ "Q1064776", "Q11299", "Q408804" ], "relations": [ "P31", "P206" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "Upper New York Bay", "Manhattan", "borough of New York City" ], "relation_labels": [ "instance of", "located in or next to body of water" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q408804 . ?sbj wdt:P206 wd:Q1064776 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'm')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-9809
Tell me R.L.Stine's place of birth and current employer.
[ "Columbus", "New York City" ]
{ "entities": [ "Q333123", "Q16567", "Q60" ], "relations": [ "P19", "P937" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "R. L. Stine", "Columbus", "New York City" ], "relation_labels": [ "place of birth", "work location" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q333123 wdt:P937 ?ans_1 . wd:Q333123 wdt:P19 ?ans_2 }
lcquad2-20321
Currently, which country is leading the African Union ?
[ "Brazil" ]
{ "entities": [ "Q155", "Q3624078", "Q7159" ], "relations": [ "P31", "P530" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "Brazil", "sovereign state", "African Union" ], "relation_labels": [ "instance of", "diplomatic relation" ] }
select distinct ?sbj where { ?sbj wdt:P530 wd:Q7159 . ?sbj wdt:P31 wd:Q3624078 }
lcquad2-9947
Who is the Society of Jesus' parent organization and chief executive officer?
[ "Catholic Church", "Arturo Sosa Abascal" ]
{ "entities": [ "Q9592", "Q27258137", "Q36380" ], "relations": [ "P169", "P749" ], "adjacency": [ [ 2, 1, 0 ], [ 2, 0, 1 ] ], "entity_labels": [ "Catholic Church", "Arturo Sosa Abascal", "Society of Jesus" ], "relation_labels": [ "chief executive officer", "parent organization" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q36380 wdt:P749 ?ans_1 . wd:Q36380 wdt:P169 ?ans_2 }
lcquad2-9646
What does Derek Hough do and where does he live?
[ "Salt Lake City", "television actor" ]
{ "entities": [ "Q10798782", "Q23337", "Q1189327" ], "relations": [ "P106", "P551" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "television actor", "Salt Lake City", "Derek Hough" ], "relation_labels": [ "occupation", "residence" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q1189327 wdt:P551 ?ans_1 . wd:Q1189327 wdt:P106 ?ans_2 }
lcquad2-15229
According to the creator tea house is made of which particle?
[ "sugar" ]
{ "entities": [ "Q1072166", "Q6097", "Q11002" ], "relations": [ "P1056", "P186" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "tea house", "tea", "sugar" ], "relation_labels": [ "product or material produced", "made from material" ] }
SELECT ?answer WHERE { wd:Q1072166 wdt:P1056 ?X . ?X wdt:P186 ?answer}
lcquad2-20743
who honorific for honorific prefix of Salman of Saudi Arabia?
[ "Custodian of the Two Holy Mosques" ]
{ "entities": [ "Q2375533", "Q1326966", "Q367825" ], "relations": [ "P31", "P511" ], "adjacency": [ [ 2, 1, 0 ], [ 0, 0, 1 ] ], "entity_labels": [ "Custodian of the Two Holy Mosques", "honorific", "Salman bin Abdulaziz Al Saud" ], "relation_labels": [ "instance of", "honorific prefix" ] }
select distinct ?obj where { wd:Q367825 wdt:P511 ?obj . ?obj wdt:P31 wd:Q1326966 }
lcquad2-23167
Tell me park theme whose name contains the word woman.
[ "Astrid Lindgren's World" ]
{ "entities": [ "Q2416723", "Q750684" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "theme park", "Astrid Lindgren's World" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2416723 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'world')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-14568
Who is the executive director at Christopher Wylie's company?
[ "Alexander Nix" ]
{ "entities": [ "Q50675211", "Q50845422", "Q24083484" ], "relations": [ "P108", "P169" ], "adjacency": [ [ 1, 0, 2 ], [ 2, 1, 0 ] ], "entity_labels": [ "Alexander Nix", "Christopher Wylie", "Cambridge Analytica" ], "relation_labels": [ "employer", "chief executive officer" ] }
SELECT ?answer WHERE { wd:Q50845422 wdt:P108 ?X . ?X wdt:P169 ?answer}
lcquad2-14600
What is Robert D. Russ's Service Branch's Fleet?
[ "C-27J Spartan" ]
{ "entities": [ "Q11223", "Q7343340", "Q1161870" ], "relations": [ "P241", "P121" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "United States Air Force", "Robert D. Russ", "C-27J Spartan" ], "relation_labels": [ "military branch", "item operated" ] }
SELECT ?answer WHERE { wd:Q7343340 wdt:P241 ?X . ?X wdt:P121 ?answer}
lcquad2-14767
WHO IS THE Slant Part Show OF BUCKMINSTER More full?
[ "analytic philosophy" ]
{ "entities": [ "Q33760", "Q102289", "Q183216" ], "relations": [ "P737", "P135" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Bertrand Russell", "Buckminster Fuller", "analytic philosophy" ], "relation_labels": [ "influenced by", "movement" ] }
SELECT ?answer WHERE { wd:Q102289 wdt:P737 ?X . ?X wdt:P135 ?answer}
lcquad2-13372
What is the key written in Symphony No. 40 that was F - sharp minor in the past?
[ "G minor" ]
{ "entities": [ "Q283910", "Q231390", "Q283895" ], "relations": [ "P155", "P826" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "F-sharp minor", "Symphony No. 40", "G minor" ], "relation_labels": [ "follows", "tonality" ] }
SELECT ?answer WHERE { wd:Q231390 wdt:P826 ?answer . ?answer wdt:P155 wd:Q283910}
lcquad2-14386
What sort of taxon is Xynenon?
[ "family" ]
{ "entities": [ "Q15872518", "Q35409", "Q205295" ], "relations": [ "P105", "P171" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Xynenon", "family", "Cerambycidae" ], "relation_labels": [ "taxon rank", "parent taxon" ] }
SELECT ?answer WHERE { wd:Q15872518 wdt:P171 ?X . ?X wdt:P105 ?answer}
lcquad2-20998
Which portion of the Book of scriptures takes put some time recently Departure ?
[ "Book of Genesis" ]
{ "entities": [ "Q9184", "Q29154430", "Q9190" ], "relations": [ "P156", "P31" ], "adjacency": [ [ 0, 0, 2 ], [ 0, 1, 1 ] ], "entity_labels": [ "Book of Genesis", "book of the Bible", "Exodus" ], "relation_labels": [ "followed by", "instance of" ] }
select distinct ?sbj where { ?sbj wdt:P156 wd:Q9190 . ?sbj wdt:P31 wd:Q29154430 }
lcquad2-12027
"What is the hereditary affiliation of lung cancer, that has otology as imperative?"
[ "VTI1A" ]
{ "entities": [ "Q47912", "Q18051065", "Q29782872" ], "relations": [ "P684", "P2293" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "lung cancer", "VTI1A", "vti1a" ], "relation_labels": [ "ortholog", "genetic association" ] }
SELECT ?answer WHERE { wd:Q47912 wdt:P2293 ?answer . ?answer wdt:P684 wd:Q29782872}
lcquad2-24331
What are the women's activist development which begin with the letter w
[ "Wereldvrouwenmars (WVM)" ]
{ "entities": [ "Q49965060", "Q15580856" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "Wereldvrouwenmars (WVM)", "feminist movement" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15580856 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-13422
Which girl of Apollo encompasses a male son?
[ "Pythaeus" ]
{ "entities": [ "Q6581097", "Q109802111", "Q37340" ], "relations": [ "P21", "P40" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "male", "Pythaeus", "Apollo" ], "relation_labels": [ "sex or gender", "child" ] }
SELECT ?answer WHERE { wd:Q37340 wdt:P40 ?answer . ?answer wdt:P21 wd:Q6581097}
lcquad2-19913
Who is Hadrian's mother?
[ "Domitia Paulina" ]
{ "entities": [ "Q1427", "Q452705", "Q5" ], "relations": [ "P25", "P31" ], "adjacency": [ [ 0, 0, 1 ], [ 1, 1, 2 ] ], "entity_labels": [ "Hadrian", "Domitia Paulina", "human" ], "relation_labels": [ "mother", "instance of" ] }
select distinct ?obj where { wd:Q1427 wdt:P25 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-15693
William Shakespeare is the well-known for writing's in the Sonnet seventy two
[ "A Midsummer Night's Dream" ]
{ "entities": [ "Q3490580", "Q104871", "Q692" ], "relations": [ "P50", "P800" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Sonnet 72", "A Midsummer Night's Dream", "William Shakespeare" ], "relation_labels": [ "author", "notable work" ] }
SELECT ?answer WHERE { wd:Q3490580 wdt:P50 ?X . ?X wdt:P800 ?answer}
lcquad2-25240
Let me know the heptalogy that takes put within the anecdotal universe of Harry Potter universe and contains the word harry in it's name?
[ "Harry Potter" ]
{ "entities": [ "Q614101", "Q5410773", "Q8337" ], "relations": [ "P1434", "P31" ], "adjacency": [ [ 2, 1, 0 ], [ 2, 0, 1 ] ], "entity_labels": [ "heptalogy", "Harry Potter universe", "Harry Potter" ], "relation_labels": [ "takes place in fictional universe", "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q614101 . ?sbj wdt:P1434 wd:Q5410773 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'harry')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-23142
Let Me know PHYSICAL Steady WHOSE Title HAS THE WORD WAVELENGTH IN IT.
[ "electron Compton wavelength" ]
{ "entities": [ "Q173227", "Q97967308" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "physical constant", "electron Compton wavelength" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q173227 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wavelength')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-22370
Which is the position that George Weah held as position?
[ "Genesis flood narrative" ]
{ "entities": [ "Q5532837", "Q81422", "Q1406161" ], "relations": [ "P31", "P3342" ], "adjacency": [ [ 0, 1, 1 ], [ 0, 0, 2 ] ], "entity_labels": [ "Genesis flood narrative", "Noah", "artistic theme" ], "relation_labels": [ "instance of", "significant person" ] }
select distinct ?sbj where { ?sbj wdt:P3342 wd:Q81422 . ?sbj wdt:P31 wd:Q1406161 }
lcquad2-25358
what is comics character of mickey mouse universe from the anecdotal universe additionally which begins with letter t
[ "Trudy Van Tubb" ]
{ "entities": [ "Q2247742", "Q1114461", "Q3260246" ], "relations": [ "P31", "P1080" ], "adjacency": [ [ 0, 0, 1 ], [ 0, 1, 2 ] ], "entity_labels": [ "Trudy Van Tubb", "comics character", "Mickey Mouse universe" ], "relation_labels": [ "instance of", "from narrative universe" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1114461 . ?sbj wdt:P1080 wd:Q3260246 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-22553
Which is the site subsidiary with Harvard University?
[ "Comédie-Française Registers Project" ]
{ "entities": [ "Q13371", "Q62570765", "Q35127" ], "relations": [ "P31", "P1416" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Harvard University", "Comédie-Française Registers Project", "website" ], "relation_labels": [ "instance of", "affiliation" ] }
select distinct ?sbj where { ?sbj wdt:P1416 wd:Q13371 . ?sbj wdt:P31 wd:Q35127 }
lcquad2-15795
What is the antonym of Pol Pot?
[ "theism" ]
{ "entities": [ "Q39464", "Q620805", "Q7066" ], "relations": [ "P140", "P461" ], "adjacency": [ [ 0, 0, 2 ], [ 2, 1, 1 ] ], "entity_labels": [ "Pol Pot", "theism", "atheism" ], "relation_labels": [ "religion or worldview", "opposite of" ] }
SELECT ?answer WHERE { wd:Q39464 wdt:P140 ?X . ?X wdt:P461 ?answer}
lcquad2-25419
What what is property measured by Wechsler Insights Scale for Children which that begins with letters i
[ "intelligence" ]
{ "entities": [ "Q1572850", "Q83500", "Q937228" ], "relations": [ "P31", "P1880" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "Wechsler Intelligence Scale for Children", "intelligence", "property" ], "relation_labels": [ "instance of", "measurement scale" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q937228 . ?sbj wdt:P1880 wd:Q1572850 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'i')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-17729
Which is the source of motivation for the characters of The Lion King?
[ "Osric" ]
{ "entities": [ "Q11801381", "Q36479", "Q41567" ], "relations": [ "P674", "P941" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "Osric", "The Lion King", "Hamlet" ], "relation_labels": [ "characters", "inspired by" ] }
SELECT ?answer WHERE { wd:Q36479 wdt:P941 ?X . ?X wdt:P674 ?answer}
lcquad2-20023
Who holds the office of the pope?
[ "Pope Francis" ]
{ "entities": [ "Q450675", "Q19546", "Q5" ], "relations": [ "P31", "P1308" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "Pope Francis", "pope", "human" ], "relation_labels": [ "instance of", "officeholder" ] }
select distinct ?obj where { wd:Q19546 wdt:P1308 ?obj . ?obj wdt:P31 wd:Q5 }
lcquad2-12350
Title the local German speaker and lyricist who composed "Leck mich im Arsch."
[ "Wolfgang Amadeus Mozart" ]
{ "entities": [ "Q1373720", "Q188", "Q254" ], "relations": [ "P103", "P86" ], "adjacency": [ [ 0, 1, 2 ], [ 2, 0, 1 ] ], "entity_labels": [ "Leck mich im Arsch", "German", "Wolfgang Amadeus Mozart" ], "relation_labels": [ "native language", "composer" ] }
SELECT ?answer WHERE { wd:Q1373720 wdt:P86 ?answer . ?answer wdt:P103 wd:Q188}
lcquad2-20466
Who is the {individual} for {put of birth} in {Chicago}?
[ "Tony Klimek" ]
{ "entities": [ "Q1297", "Q95742269", "Q5" ], "relations": [ "P31", "P19" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Chicago", "Tony Klimek", "human" ], "relation_labels": [ "instance of", "place of birth" ] }
select distinct ?sbj where { ?sbj wdt:P19 wd:Q1297 . ?sbj wdt:P31 wd:Q5 }
lcquad2-21929
Who is the {music class} for {based on} of {nation music}
[ "swamp rock" ]
{ "entities": [ "Q675553", "Q188451", "Q83440" ], "relations": [ "P31", "P144" ], "adjacency": [ [ 0, 1, 2 ], [ 0, 0, 1 ] ], "entity_labels": [ "swamp rock", "music genre", "country music" ], "relation_labels": [ "instance of", "based on" ] }
select distinct ?sbj where { ?sbj wdt:P144 wd:Q83440 . ?sbj wdt:P31 wd:Q188451 }
lcquad2-14103
What are the conciliatory relations of the Kam individuals living in South Sudan?
[ "People's Republic of China" ]
{ "entities": [ "Q148", "Q958", "Q216096" ], "relations": [ "P172", "P530" ], "adjacency": [ [ 1, 1, 0 ], [ 0, 0, 2 ] ], "entity_labels": [ "People's Republic of China", "South Sudan", "Kam people" ], "relation_labels": [ "ethnic group", "diplomatic relation" ] }
SELECT ?answer WHERE { wd:Q958 wdt:P530 ?answer . ?answer wdt:P172 wd:Q216096}
lcquad2-11803
What uses the German language and was once co-founded by way of the Gestapo?
[ "Hermann Göring" ]
{ "entities": [ "Q47906", "Q188", "Q43250" ], "relations": [ "P112", "P1412" ], "adjacency": [ [ 2, 0, 0 ], [ 0, 1, 1 ] ], "entity_labels": [ "Hermann Göring", "German", "Gestapo" ], "relation_labels": [ "founded by", "languages spoken, written or signed" ] }
SELECT ?answer WHERE { wd:Q43250 wdt:P112 ?answer . ?answer wdt:P1412 wd:Q188}
lcquad2-23442
Which is the annexation that consists of the phrase fighting in it's name?
[ "Iran–Iraq War" ]
{ "entities": [ "Q194465", "Q82664" ], "relations": [ "P31" ], "adjacency": [ [ 1, 0, 0 ] ], "entity_labels": [ "annexation", "Iran–Iraq War" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q194465 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'war')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-10106
What's the influence and genre of Joy Division's?
[ "proto-punk", "Can" ]
{ "entities": [ "Q27190", "Q172763", "Q170132" ], "relations": [ "P737", "P136" ], "adjacency": [ [ 1, 0, 2 ], [ 1, 1, 0 ] ], "entity_labels": [ "proto-punk", "Joy Division", "Can" ], "relation_labels": [ "influenced by", "genre" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q172763 wdt:P737 ?ans_1 . wd:Q172763 wdt:P136 ?ans_2 }
lcquad2-9697
What is the gender and religion of Mira Sorvino?
[ "female", "Christian" ]
{ "entities": [ "Q106039", "Q6581072", "Q212026" ], "relations": [ "P21", "P140" ], "adjacency": [ [ 2, 0, 1 ], [ 2, 1, 0 ] ], "entity_labels": [ "Christian", "female", "Mira Sorvino" ], "relation_labels": [ "sex or gender", "religion or worldview" ] }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q212026 wdt:P21 ?ans_1 . wd:Q212026 wdt:P140 ?ans_2 }
lcquad2-12020
What is the namesake of Corridor impact whose create is college educator?
[ "Edwin Hall" ]
{ "entities": [ "Q1622272", "Q535860", "Q10656" ], "relations": [ "P106", "P138" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "university teacher", "Edwin Hall", "Hall effect" ], "relation_labels": [ "occupation", "named after" ] }
SELECT ?answer WHERE { wd:Q10656 wdt:P138 ?answer . ?answer wdt:P106 wd:Q1622272}
lcquad2-15120
What role does Vivelle play as an active ingredient?
[ "estrogen" ]
{ "entities": [ "Q277954", "Q12415847", "Q48826042" ], "relations": [ "P3781", "P2868" ], "adjacency": [ [ 2, 0, 1 ], [ 1, 1, 0 ] ], "entity_labels": [ "estrogen", "17α/β-estradiol", "Vivelle" ], "relation_labels": [ "has active ingredient", "subject has role" ] }
SELECT ?answer WHERE { wd:Q48826042 wdt:P3781 ?X . ?X wdt:P2868 ?answer}
lcquad2-19785
What are some examples of HTML5 creative works?
[ "HyperText Markup Language" ]
{ "entities": [ "Q17537576", "Q2053", "Q8811" ], "relations": [ "P31", "P747" ], "adjacency": [ [ 2, 1, 1 ], [ 2, 0, 0 ] ], "entity_labels": [ "creative work", "HTML5", "HyperText Markup Language" ], "relation_labels": [ "instance of", "has edition or translation" ] }
select distinct ?sbj where { ?sbj wdt:P747 wd:Q2053 . ?sbj wdt:P31 wd:Q17537576 }
lcquad2-17340
who to begin with dialect of official control headed by of North Rhine-Westphalia?
[ "German" ]
{ "entities": [ "Q1198", "Q1387541", "Q188" ], "relations": [ "P103", "P6" ], "adjacency": [ [ 0, 1, 1 ], [ 1, 0, 2 ] ], "entity_labels": [ "North Rhine-Westphalia", "Hendrik Wüst", "German" ], "relation_labels": [ "native language", "head of government" ] }
SELECT ?answer WHERE { wd:Q1198 wdt:P6 ?X . ?X wdt:P103 ?answer}
lcquad2-11896
Where was once Henri Poincare born, who has the shire of Meurthe-et-Moselle?
[ "Nancy" ]
{ "entities": [ "Q40898", "Q81082", "Q12626" ], "relations": [ "P19", "P131" ], "adjacency": [ [ 1, 0, 0 ], [ 0, 1, 2 ] ], "entity_labels": [ "Nancy", "Henri Poincaré", "Meurthe-et-Moselle" ], "relation_labels": [ "place of birth", "located in the administrative territorial entity" ] }
SELECT ?answer WHERE { wd:Q81082 wdt:P19 ?answer . ?answer wdt:P131 wd:Q12626}
lcquad2-24431
What are specialized detail which begin with the letter w
[ "WARC Format 1.0 specification" ]
{ "entities": [ "Q84037677", "Q20819677" ], "relations": [ "P31" ], "adjacency": [ [ 0, 0, 1 ] ], "entity_labels": [ "WARC Format 1.0 specification", "technical specification" ], "relation_labels": [ "instance of" ] }
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q20819677 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
lcquad2-20598
Which river runs through Shanghai?
[ "Yangtze" ]
{ "entities": [ "Q4022", "Q5413", "Q8686" ], "relations": [ "P31", "P206" ], "adjacency": [ [ 2, 1, 1 ], [ 1, 0, 0 ] ], "entity_labels": [ "river", "Yangtze", "Shanghai" ], "relation_labels": [ "instance of", "located in or next to body of water" ] }
select distinct ?obj where { wd:Q8686 wdt:P206 ?obj . ?obj wdt:P31 wd:Q4022 }
lcquad2-20317
Who is the {human} for {understudy} of {Francis Bacon}
[ "John Whitgift" ]
{ "entities": [ "Q37388", "Q473302", "Q5" ], "relations": [ "P31", "P802" ], "adjacency": [ [ 1, 1, 0 ], [ 1, 0, 2 ] ], "entity_labels": [ "Francis Bacon", "John Whitgift", "human" ], "relation_labels": [ "instance of", "student" ] }
select distinct ?sbj where { ?sbj wdt:P802 wd:Q37388 . ?sbj wdt:P31 wd:Q5 }
lcquad2-15904
What is the expected set of responsibilities of occupation posting 225088?
[ "astronomer" ]
{ "entities": [ "Q11063", "Q6587", "Q12036333" ], "relations": [ "P106", "P61" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "astronomer", "Gonggong", "Meg Schwamb" ], "relation_labels": [ "occupation", "discoverer or inventor" ] }
SELECT ?answer WHERE { wd:Q6587 wdt:P61 ?X . ?X wdt:P106 ?answer}
lcquad2-12243
What is the song of Symphony No. 2 whose L1 speaker is Swedish?
[ "Jean Sibelius" ]
{ "entities": [ "Q9027", "Q210577", "Q45682" ], "relations": [ "P103", "P86" ], "adjacency": [ [ 1, 1, 2 ], [ 2, 0, 0 ] ], "entity_labels": [ "Swedish", "Symphony No. 2", "Jean Sibelius" ], "relation_labels": [ "native language", "composer" ] }
SELECT ?answer WHERE { wd:Q210577 wdt:P86 ?answer . ?answer wdt:P103 wd:Q9027}