question
stringlengths 12
150
| query
stringlengths 51
1.28k
|
---|---|
Who was influenced by a film 's costume designer and editor and was influenced by M1 's producer | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x1 ns:film.producer.film|ns:film.production_company.films M1 .
?x2 ns:film.editor.film ?x3 .
?x2 ns:film.film_costumer_designer.costume_design_for_film ?x3 .
?x3 a ns:film.film
} |
Was M1 produced by a film 's director and executive producer , distributed by M2 and M3 , and distributed by M4 | SELECT count(*) WHERE {
?x0 ns:film.director.film ?x1 .
?x0 ns:film.producer.films_executive_produced ?x1 .
?x1 a ns:film.film .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M2 .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M3 .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M4 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0
} |
Did a actor 's spouse found M0 's producer | SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x1 ns:film.producer.film|ns:film.production_company.films M0 .
?x2 a ns:film.actor .
FILTER ( ?x0 != ?x2 )
} |
Did a Italian film director 's spouse marry M0 's producer | SELECT count(*) WHERE {
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x1 ns:film.producer.film|ns:film.production_company.films M0 .
?x2 a ns:film.director .
?x2 ns:people.person.nationality ns:m.03rjj .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x0 != ?x2 )
} |
What did a Swedish actor of M1 edit and M2 's director direct | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.edited_by ?x2 .
?x1 ns:film.director.film M2 .
?x2 ns:film.actor.film/ns:film.performance.character M1 .
?x2 ns:people.person.nationality ns:m.0d0vqn
} |
Was M3 edited by a screenwriter whose spouse founded M2 , written by a cinematographer , and edited by M4 | SELECT count(*) WHERE {
?x0 a ns:film.cinematographer .
?x1 a ns:film.writer .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x2 ns:organization.organization_founder.organizations_founded M2 .
FILTER ( ?x1 != ?x2 ) .
M3 ns:film.film.edited_by ?x1 .
M3 ns:film.film.edited_by M4 .
M3 ns:film.film.written_by ?x0
} |
Was M3 a Japanese screenwriter 's female sibling 's female parent | SELECT count(*) WHERE {
?x0 ns:people.person.gender ns:m.02zsn .
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 a ns:film.writer .
?x1 ns:people.person.nationality ns:m.03_3d .
FILTER ( ?x0 != ?x1 ) .
M3 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x0 .
M3 ns:people.person.gender ns:m.02zsn
} |
Was a film producer whose spouse produced M2 a costume designer | SELECT count(*) WHERE {
?x0 a ns:film.film_costumer_designer .
?x0 a ns:film.producer .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:film.producer.film|ns:film.production_company.films M2 .
FILTER ( ?x0 != ?x1 )
} |
Were M3 and M5 influenced by M4 , influenced by a person , and influenced by a male founder of M0 | SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded M0 .
?x0 ns:people.person.gender ns:m.05zppz .
?x1 a ns:people.person .
M3 ns:influence.influence_node.influenced_by ?x0 .
M3 ns:influence.influence_node.influenced_by ?x1 .
M3 ns:influence.influence_node.influenced_by M4 .
M5 ns:influence.influence_node.influenced_by ?x0 .
M5 ns:influence.influence_node.influenced_by ?x1 .
M5 ns:influence.influence_node.influenced_by M4
} |
What film producer was a person that influenced , was influenced by , and married M2 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced M2 .
?x0 ns:influence.influence_node.influenced_by M2 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x0 != M2 )
} |
Was M1 a Chinese spouse of a film editor | SELECT count(*) WHERE {
?x0 a ns:film.editor .
FILTER ( M1 != ?x0 ) .
M1 ns:people.person.nationality ns:m.0d05w3 .
M1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
} |
What was distributed by a screenwriter 's employer and produced by M2 's Dutch parent | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x2 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person ?x3 .
?x2 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M2 .
?x2 ns:people.person.nationality ns:m.059j2 .
?x3 a ns:film.writer
} |
Who was a screenwriter whose sibling played M2 and played M3 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.writer .
?x0 a ns:people.person .
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 ns:film.actor.film/ns:film.performance.character M2 .
?x1 ns:film.actor.film/ns:film.performance.character M3 .
FILTER ( ?x0 != ?x1 )
} |
Was M1 M0 's star 's sibling | SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film M0 .
FILTER ( M1 != ?x0 ) .
M1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x0
} |
Was M1 executive produced by M2 and directed by M0 's executive producer , art director , and producer | SELECT count(*) WHERE {
?x0 ns:film.film_art_director.films_art_directed M0 .
?x0 ns:film.producer.films_executive_produced M0 .
?x0 ns:film.producer.film|ns:film.production_company.films M0 .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.executive_produced_by M2
} |
Was M1 a actor of a child of M0 | SELECT count(*) WHERE {
?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent M0 .
M1 ns:film.actor.film/ns:film.performance.character ?x0
} |
Was M1 a film 's writer 's parent | SELECT count(*) WHERE {
?x0 ns:film.writer.film ?x1 .
?x1 a ns:film.film .
M1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x0
} |
Were M2 and M3 executive produced by a cinematographer that M1 married | SELECT count(*) WHERE {
?x0 a ns:film.cinematographer .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M1 .
FILTER ( ?x0 != M1 ) .
M2 ns:film.film.executive_produced_by ?x0 .
M3 ns:film.film.executive_produced_by ?x0
} |
Did a Canadian art director edit and produce M1 | SELECT count(*) WHERE {
?x0 a ns:film.film_art_director .
?x0 ns:film.editor.film M1 .
?x0 ns:film.producer.film|ns:film.production_company.films M1 .
?x0 ns:people.person.nationality ns:m.0d060g
} |
Did a Canadian male film producer found M1 | SELECT count(*) WHERE {
?x0 a ns:film.producer .
?x0 ns:organization.organization_founder.organizations_founded M1 .
?x0 ns:people.person.gender ns:m.05zppz .
?x0 ns:people.person.nationality ns:m.0d060g
} |
Did a Spanish screenwriter executive produce and produce M1 | SELECT count(*) WHERE {
?x0 a ns:film.writer .
?x0 ns:film.producer.films_executive_produced M1 .
?x0 ns:film.producer.film|ns:film.production_company.films M1 .
?x0 ns:people.person.nationality ns:m.06mkj
} |
Which male person did a cinematographer influence and marry | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.gender ns:m.05zppz .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.cinematographer .
FILTER ( ?x0 != ?x1 )
} |
Was M1 founded by M0 's star and costume designer and founded by M2 | SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film M0 .
?x0 ns:film.film_costumer_designer.costume_design_for_film M0 .
M1 ns:organization.organization.founders ?x0 .
M1 ns:organization.organization.founders M2
} |
What film distributor was acquired by M1 's distributor | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_distributor .
?x0 ns:organization.organization.acquired_by/ns:business.acquisition.acquiring_company ?x1 .
?x1 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M1
} |
Did a Swedish art director marry M3 and influence M1 | SELECT count(*) WHERE {
?x0 a ns:film.film_art_director .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:people.person.nationality ns:m.0d0vqn .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M3 .
FILTER ( ?x0 != M3 )
} |
Were M1 and M2 executive produced , written , edited , directed , and produced by a film director | SELECT count(*) WHERE {
?x0 a ns:film.director .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.written_by ?x0 .
M2 ns:film.film.directed_by ?x0 .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.executive_produced_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M2 ns:film.film.written_by ?x0
} |
Which actor directed and wrote M1 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.actor .
?x0 ns:film.director.film M1 .
?x0 ns:film.writer.film M1
} |
Was M2 influenced by a character and influenced by a film 's producer and editor | SELECT count(*) WHERE {
?x0 a ns:fictional_universe.fictional_character .
?x1 ns:film.editor.film ?x2 .
?x1 ns:film.producer.film|ns:film.production_company.films ?x2 .
?x2 a ns:film.film .
M2 ns:influence.influence_node.influenced_by ?x0 .
M2 ns:influence.influence_node.influenced_by ?x1
} |
Was M0 a Canadian German writer of M1 and M2 | SELECT count(*) WHERE {
M0 ns:film.writer.film M1 .
M0 ns:film.writer.film M2 .
M0 ns:people.person.nationality ns:m.0345h .
M0 ns:people.person.nationality ns:m.0d060g
} |
Who produced and directed M1 's prequel | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:film.director.film ?x1 .
?x0 ns:film.producer.film|ns:film.production_company.films ?x1 .
?x1 ns:film.film.sequel M1
} |
Who founded M1 , founded M2 , and founded a character 's employer | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x0 ns:organization.organization_founder.organizations_founded M1 .
?x0 ns:organization.organization_founder.organizations_founded M2 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person ?x2 .
?x2 a ns:fictional_universe.fictional_character
} |
Was M2 a Swedish actor whose Italian sibling married a person | SELECT count(*) WHERE {
?x0 ns:people.person.nationality ns:m.03rjj .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:people.person .
FILTER ( ?x0 != ?x1 ) .
FILTER ( M2 != ?x0 ) .
M2 a ns:film.actor .
M2 ns:people.person.nationality ns:m.0d0vqn .
M2 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x0
} |
Which film producer was influenced by M1 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 ns:influence.influence_node.influenced_by M1
} |
Did a cinematographer 's parent produce M0 's prequel | SELECT count(*) WHERE {
?x0 ns:film.producer.film|ns:film.production_company.films ?x1 .
?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x2 .
?x1 ns:film.film.sequel M0 .
?x2 a ns:film.cinematographer
} |
Did M2 employ a sibling of M1 and employ M0 's editor | SELECT count(*) WHERE {
?x0 ns:film.editor.film M0 .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M1 .
FILTER ( ?x1 != M1 ) .
M2 ns:business.employer.employees/ns:business.employment_tenure.person ?x0 .
M2 ns:business.employer.employees/ns:business.employment_tenure.person ?x1
} |
Was M0 a Canadian costume designer that M2 was executive produced by and M4 starred | SELECT count(*) WHERE {
M0 a ns:film.film_costumer_designer .
M0 ns:film.actor.film/ns:film.performance.film M4 .
M0 ns:film.producer.films_executive_produced M2 .
M0 ns:people.person.nationality ns:m.0d060g
} |
Was M1 produced by M0 's editor and art director , produced by M3 and M4 , and distributed by M2 | SELECT count(*) WHERE {
?x0 ns:film.editor.film M0 .
?x0 ns:film.film_art_director.films_art_directed M0 .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M2 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies M3 .
M1 ns:film.film.produced_by|ns:film.film.production_companies M4
} |
Did a Italian writer of M1 write and edit M0 | SELECT count(*) WHERE {
?x0 ns:film.editor.film M0 .
?x0 ns:film.writer.film M0 .
?x0 ns:film.writer.film M1 .
?x0 ns:people.person.nationality ns:m.03rjj
} |
Did M2 influence a person , marry a cinematographer , and marry M3 | SELECT count(*) WHERE {
?x0 a ns:people.person .
?x1 a ns:film.cinematographer .
FILTER ( M2 != ?x1 ) .
FILTER ( M2 != M3 ) .
M2 ns:influence.influence_node.influenced ?x0 .
M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M3
} |
Who was a Chinese costume designer that M2 and M3 were edited by | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_costumer_designer .
?x0 a ns:people.person .
?x0 ns:film.editor.film M2 .
?x0 ns:film.editor.film M3 .
?x0 ns:people.person.nationality ns:m.0d05w3
} |
Was M2 influenced by M3 and M4 and influenced by a Mexican spouse of M1 | SELECT count(*) WHERE {
?x0 ns:people.person.nationality ns:m.0b90_r .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M1 .
FILTER ( ?x0 != M1 ) .
M2 ns:influence.influence_node.influenced_by ?x0 .
M2 ns:influence.influence_node.influenced_by M3 .
M2 ns:influence.influence_node.influenced_by M4
} |
What did a founder of M0 edit | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x1 ns:organization.organization_founder.organizations_founded M0
} |
What film did M2 's Swedish parent executive produce | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film .
?x0 ns:film.film.executive_produced_by ?x1 .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M2 .
?x1 ns:people.person.nationality ns:m.0d0vqn
} |
Who edited , wrote , and directed M1 's sequel | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:film.director.film ?x1 .
?x0 ns:film.editor.film ?x1 .
?x0 ns:film.writer.film ?x1 .
?x1 ns:film.film.prequel M1
} |
Was M1 distributed by M2 , produced by M0 's executive producer 's sibling , and distributed by M3 | SELECT count(*) WHERE {
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 ns:film.producer.films_executive_produced M0 .
FILTER ( ?x0 != ?x1 ) .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M2 .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor M3 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0
} |
Who influenced a costume designer and influenced M1 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced M1 .
?x1 a ns:film.film_costumer_designer
} |
Which company did M1 's director found | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:business.employer .
?x0 ns:organization.organization.founders ?x1 .
?x1 ns:film.director.film M1
} |
What film was executive produced by M1 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film .
?x0 ns:film.film.executive_produced_by M1
} |
Which Chinese film producer did a art director marry | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 ns:people.person.nationality ns:m.0d05w3 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.film_art_director .
FILTER ( ?x0 != ?x1 )
} |
Were M2 and M3 directed by a Swedish film producer | SELECT count(*) WHERE {
?x0 a ns:film.producer .
?x0 ns:people.person.nationality ns:m.0d0vqn .
M2 ns:film.film.directed_by ?x0 .
M3 ns:film.film.directed_by ?x0
} |
Were M1 and M2 founded by M0 's executive producer | SELECT count(*) WHERE {
?x0 ns:film.producer.films_executive_produced M0 .
M1 ns:organization.organization.founders ?x0 .
M2 ns:organization.organization.founders ?x0
} |
What was directed by and executive produced by a Dutch art director | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.executive_produced_by ?x1 .
?x1 a ns:film.film_art_director .
?x1 ns:people.person.nationality ns:m.059j2
} |
What did M0 's art director , writer , and costume designer produce , edit , and write | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x0 ns:film.film.written_by ?x1 .
?x1 ns:film.film_art_director.films_art_directed M0 .
?x1 ns:film.film_costumer_designer.costume_design_for_film M0 .
?x1 ns:film.writer.film M0
} |
Did a cinematographer influence M1 's executive producer | SELECT count(*) WHERE {
?x0 a ns:film.cinematographer .
?x0 ns:influence.influence_node.influenced ?x1 .
?x1 ns:film.producer.films_executive_produced M1
} |
What was directed by M1 's art director and directed by a parent of M0 | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.directed_by ?x2 .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M0 .
?x2 ns:film.film_art_director.films_art_directed M1
} |
What did M0 executive produce , M1 edit , and a film producer produce | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by M1 .
?x0 ns:film.film.executive_produced_by M0 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 a ns:film.producer
} |
Who married M2 's French costume designer and influenced M1 's spouse | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M1 .
?x2 ns:film.film_costumer_designer.costume_design_for_film M2 .
?x2 ns:people.person.nationality ns:m.0f8l9c .
FILTER ( ?x0 != ?x2 ) .
FILTER ( ?x1 != M1 )
} |
Who did M1 's German executive producer 's sibling marry | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x2 .
?x2 ns:film.producer.films_executive_produced M1 .
?x2 ns:people.person.nationality ns:m.0345h .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x1 != ?x2 )
} |
What did M0 edit , M1 edit , and a producer of M2 direct | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.edited_by M0 .
?x0 ns:film.film.edited_by M1 .
?x1 ns:film.producer.film|ns:film.production_company.films M2
} |
What was executive produced by , edited by , and produced by M0 's cinematographer , art director , and costume designer | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.executive_produced_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 ns:film.cinematographer.film M0 .
?x1 ns:film.film_art_director.films_art_directed M0 .
?x1 ns:film.film_costumer_designer.costume_design_for_film M0
} |
Was M2 produced by M3 and produced by a film editor that a character was influenced by and influenced | SELECT count(*) WHERE {
?x0 a ns:film.editor .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x1 a ns:fictional_universe.fictional_character .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies M3
} |
Which British male film editor influenced M1 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.editor .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:people.person.gender ns:m.05zppz .
?x0 ns:people.person.nationality ns:m.07ssc
} |
Was M1 directed by , executive produced by , produced by , written by , and edited by a company 's founder | SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x1 a ns:business.employer .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.written_by ?x0
} |
What Swedish costume designer produced M2 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_costumer_designer .
?x0 ns:film.producer.film|ns:film.production_company.films M2 .
?x0 ns:people.person.nationality ns:m.0d0vqn
} |
Was M0 a Spanish star of M2 | SELECT count(*) WHERE {
M0 ns:film.actor.film/ns:film.performance.film M2 .
M0 ns:people.person.nationality ns:m.06mkj
} |
Did M0 's sibling marry M3 's sibling and influence M1 and M2 | SELECT count(*) WHERE {
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:influence.influence_node.influenced M2 .
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M0 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M3 .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x0 != M0 ) .
FILTER ( ?x1 != M3 )
} |
What was a film whose costume designer and writer produced M1 and M2 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film .
?x0 ns:film.film.costume_design_by ?x1 .
?x0 ns:film.film.written_by ?x1 .
?x1 ns:film.producer.film|ns:film.production_company.films M1 .
?x1 ns:film.producer.film|ns:film.production_company.films M2
} |
Was M1 executive produced by , produced by , written by , directed by , and edited by a actor | SELECT count(*) WHERE {
?x0 a ns:film.actor .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.written_by ?x0
} |
Which actor was a Dutch costume designer | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.actor .
?x0 a ns:film.film_costumer_designer .
?x0 ns:people.person.nationality ns:m.059j2
} |
Was a American person influenced by M1 | SELECT count(*) WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by M1 .
?x0 ns:people.person.nationality ns:m.09c7w0
} |
Did M2 and M3 influence M0 's actor and influence a film 's executive producer | SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.character M0 .
?x1 ns:film.producer.films_executive_produced ?x2 .
?x2 a ns:film.film .
M2 ns:influence.influence_node.influenced ?x0 .
M2 ns:influence.influence_node.influenced ?x1 .
M3 ns:influence.influence_node.influenced ?x0 .
M3 ns:influence.influence_node.influenced ?x1
} |
Who was influenced by M1 's director and art director | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x1 ns:film.director.film M1 .
?x1 ns:film.film_art_director.films_art_directed M1
} |
Did M0 's cinematographer marry a cinematographer | SELECT count(*) WHERE {
?x0 ns:film.cinematographer.film M0 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.cinematographer .
FILTER ( ?x0 != ?x1 )
} |
Who was employed by M1 , employed by a film editor 's country of nationality , and employed by M2 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M2 .
?x1 ^ns:people.person.nationality ?x2 .
?x2 a ns:film.editor
} |
Were M1 and M3 directed by M0 's producer , writer , and art director and executive produced by M2 | SELECT count(*) WHERE {
?x0 ns:film.film_art_director.films_art_directed M0 .
?x0 ns:film.producer.film|ns:film.production_company.films M0 .
?x0 ns:film.writer.film M0 .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.executive_produced_by M2 .
M3 ns:film.film.directed_by ?x0 .
M3 ns:film.film.executive_produced_by M2
} |
Was a actor that M2 's sequel was edited by and starred a cinematographer | SELECT count(*) WHERE {
?x0 a ns:film.actor .
?x0 a ns:film.cinematographer .
?x0 ns:film.actor.film/ns:film.performance.film ?x1 .
?x0 ns:film.editor.film ?x1 .
?x1 ns:film.film.prequel M2
} |
What film editor edited M1 's prequel | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.editor .
?x0 ns:film.editor.film ?x1 .
?x1 ns:film.film.sequel M1
} |
What was founded by M0 and founded by a cinematographer | SELECT DISTINCT ?x0 WHERE {
?x0 ns:organization.organization.founders ?x1 .
?x0 ns:organization.organization.founders M0 .
?x1 a ns:film.cinematographer
} |
Did M1 and M2 influence a film 's director , cinematographer , writer , and star | SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film ?x1 .
?x0 ns:film.cinematographer.film ?x1 .
?x0 ns:film.director.film ?x1 .
?x0 ns:film.writer.film ?x1 .
?x1 a ns:film.film .
M1 ns:influence.influence_node.influenced ?x0 .
M2 ns:influence.influence_node.influenced ?x0
} |
Which cinematographer influenced M1 and M2 and was influenced by a French film producer | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.cinematographer .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:influence.influence_node.influenced M2 .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x1 a ns:film.producer .
?x1 ns:people.person.nationality ns:m.0f8l9c
} |
Were M3 and M5 directed by a British film editor that M2 married and written by M4 | SELECT count(*) WHERE {
?x0 a ns:film.editor .
?x0 ns:people.person.nationality ns:m.07ssc .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x0 != M2 ) .
M3 ns:film.film.directed_by ?x0 .
M3 ns:film.film.written_by M4 .
M5 ns:film.film.directed_by ?x0 .
M5 ns:film.film.written_by M4
} |
Was M1 executive produced by a actor 's sibling , directed by M3 , and executive produced by M2 | SELECT count(*) WHERE {
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 a ns:film.actor .
FILTER ( ?x0 != ?x1 ) .
M1 ns:film.film.directed_by M3 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.executive_produced_by M2
} |
What did M0 produce , write , and direct | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by M0 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies M0 .
?x0 ns:film.film.written_by M0
} |
Did M2 and M3 marry a Dutch sibling of M0 | SELECT count(*) WHERE {
?x0 ns:people.person.nationality ns:m.059j2 .
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M0 .
FILTER ( ?x0 != M0 ) .
FILTER ( M2 != ?x0 ) .
FILTER ( M3 != ?x0 ) .
M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0 .
M3 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
} |
What film producer did M1 found , M2 found , and M3 's writer found | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 ns:organization.organization.founders ?x1 .
?x0 ns:organization.organization.founders M1 .
?x0 ns:organization.organization.founders M2 .
?x1 ns:film.writer.film M3
} |
Was M1 a executive producer of M0 's sequel | SELECT count(*) WHERE {
?x0 ns:film.film.prequel M0 .
M1 ns:film.producer.films_executive_produced ?x0
} |
Who did M1 influence and a parent of a screenwriter influence | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:influence.influence_node.influenced_by M1 .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x2 .
?x2 a ns:film.writer
} |
Was a costume designer 's Mexican spouse M1 | SELECT count(*) WHERE {
?x0 a ns:film.film_costumer_designer .
FILTER ( M1 != ?x0 ) .
M1 ns:people.person.nationality ns:m.0b90_r .
M1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
} |
Was M1 a editor and cinematographer of M0 's prequel 's sequel | SELECT count(*) WHERE {
?x0 ns:film.film.prequel ?x1 .
?x1 ns:film.film.sequel M0 .
M1 ns:film.cinematographer.film ?x0 .
M1 ns:film.editor.film ?x0
} |
Did a character influence M1 's child and marry a costume designer | SELECT count(*) WHERE {
?x0 a ns:fictional_universe.fictional_character .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x1 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent M1 .
?x2 a ns:film.film_costumer_designer .
FILTER ( ?x0 != ?x2 )
} |
Did a film editor that M2 's producer and distributor employed executive produce and edit M1 | SELECT count(*) WHERE {
?x0 a ns:film.editor .
?x0 ns:film.editor.film M1 .
?x0 ns:film.producer.films_executive_produced M1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x1 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M2 .
?x1 ns:film.producer.film|ns:film.production_company.films M2
} |
Did a film star a film editor and star M1 | SELECT count(*) WHERE {
?x0 a ns:film.film .
?x0 ns:film.film.starring/ns:film.performance.actor ?x1 .
?x0 ns:film.film.starring/ns:film.performance.actor M1 .
?x1 a ns:film.editor
} |
Was M1 executive produced and written by M0 's producer | SELECT count(*) WHERE {
?x0 ns:film.producer.film|ns:film.production_company.films M0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.written_by ?x0
} |
What was written by M0 's founder and employee | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.written_by ?x1 .
?x1 ns:organization.organization_founder.organizations_founded M0 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company M0
} |
Was M1 influenced by M2 and M3 and influenced by M0 's prequel 's art director , director , cinematographer , and executive producer | SELECT count(*) WHERE {
?x0 ns:film.cinematographer.film ?x1 .
?x0 ns:film.director.film ?x1 .
?x0 ns:film.film_art_director.films_art_directed ?x1 .
?x0 ns:film.producer.films_executive_produced ?x1 .
?x1 ns:film.film.sequel M0 .
M1 ns:influence.influence_node.influenced_by ?x0 .
M1 ns:influence.influence_node.influenced_by M2 .
M1 ns:influence.influence_node.influenced_by M3
} |
Which film distributor employed M4 's actor , was founded by M1 and M2 , and employed M3 | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_distributor .
?x0 ns:business.employer.employees/ns:business.employment_tenure.person ?x1 .
?x0 ns:business.employer.employees/ns:business.employment_tenure.person M3 .
?x0 ns:organization.organization.founders M1 .
?x0 ns:organization.organization.founders M2 .
?x1 ns:film.actor.film/ns:film.performance.character M4
} |
Were M1 , M2 , M3 , M4 , M5 , and M6 produced and edited by M0 's executive producer and star | SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film M0 .
?x0 ns:film.producer.films_executive_produced M0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M3 ns:film.film.edited_by ?x0 .
M3 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M4 ns:film.film.edited_by ?x0 .
M4 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M5 ns:film.film.edited_by ?x0 .
M5 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M6 ns:film.film.edited_by ?x0 .
M6 ns:film.film.produced_by|ns:film.film.production_companies ?x0
} |
What film producer was influenced by M3 's producer and writer and influenced a Chinese film editor | SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x1 a ns:film.editor .
?x1 ns:people.person.nationality ns:m.0d05w3 .
?x2 ns:film.producer.film|ns:film.production_company.films M3 .
?x2 ns:film.writer.film M3
} |
What was written by M0 , directed by M1 , and written by M3 's Canadian actor | SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by M1 .
?x0 ns:film.film.written_by ?x1 .
?x0 ns:film.film.written_by M0 .
?x1 ns:film.actor.film/ns:film.performance.character M3 .
?x1 ns:people.person.nationality ns:m.0d060g
} |
Was M1 a film director 's employer 's parent 's founder | SELECT count(*) WHERE {
?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x1 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person ?x2 .
?x2 a ns:film.director .
M1 ns:organization.organization_founder.organizations_founded ?x0
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.