question
stringlengths
13
144
query
stringlengths
45
1.27k
Which spouse of M2 was influenced by M0 and M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?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 ) }
Which spouse of M6 was influenced by M0 , influenced by M1 , and influenced by M2 , M3 , M4 , and M5
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?x0 ns:influence.influence_node.influenced_by M5 . ?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 M6 . FILTER ( ?x0 != M6 ) }
Which spouse of M0 was a film editor 's spouse
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.editor . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of M3 influenced M0 , influenced a character , married M2 , and was influenced by M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced ?x1 . ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?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 . ?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 . ?x1 a ns:fictional_universe.fictional_character . FILTER ( ?x0 != M2 ) . FILTER ( ?x0 != M3 ) }
Which spouse of M0 was employed by a company
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?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 M0 . ?x1 a ns:business.employer . FILTER ( ?x0 != M0 ) }
Which spouse of M0 was a child of a screenwriter
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?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 M0 . ?x1 a ns:film.writer . FILTER ( ?x0 != M0 ) }
Which spouse of M0 did M1 and M2 marry and M3 , M4 , and M5 marry
SELECT DISTINCT ?x0 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 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 M1 . ?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 . ?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 . ?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 M4 . ?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 M5 . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) . FILTER ( ?x0 != M2 ) . FILTER ( ?x0 != M3 ) . FILTER ( ?x0 != M4 ) . FILTER ( ?x0 != M5 ) }
Which spouse of M1 was employed by a company and employed by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company 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 M1 . ?x1 a ns:business.employer . FILTER ( ?x0 != M1 ) }
Which spouse of M0 married a film director
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.director . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of M2 did M0 and M1 influence and M3 , M4 , M5 , and M6 marry
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?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 . ?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 . ?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 M4 . ?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 M5 . ?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 M6 . FILTER ( ?x0 != M2 ) . FILTER ( ?x0 != M3 ) . FILTER ( ?x0 != M4 ) . FILTER ( ?x0 != M5 ) . FILTER ( ?x0 != M6 ) }
Which spouse of M0 did M1 marry and a character influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by ?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 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 M1 . ?x1 a ns:fictional_universe.fictional_character . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) }
Which spouse of M0 was a costume designer 's child
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?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 M0 . ?x1 a ns:film.film_costumer_designer . FILTER ( ?x0 != M0 ) }
Which spouse of M0 did M1 , M2 , and M3 marry and a film director influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by ?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 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 M1 . ?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 . ?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 . ?x1 a ns:film.director . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) . FILTER ( ?x0 != M2 ) . FILTER ( ?x0 != M3 ) }
Which spouse of M0 was a person 's actor
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character ?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 M0 . ?x1 a ns:people.person . FILTER ( ?x0 != M0 ) }
Which spouse of M1 founded M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:organization.organization_founder.organizations_founded 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M0 was a film 's art director
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.film_art_director.films_art_directed ?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 M0 . ?x1 a ns:film.film . FILTER ( ?x0 != M0 ) }
Which spouse of M0 was a film producer 's child
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?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 M0 . ?x1 a ns:film.producer . FILTER ( ?x0 != M0 ) }
Which spouse of M2 was influenced by a film editor and married M0 and M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by ?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 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 M1 . ?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 . ?x1 a ns:film.editor . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) . FILTER ( ?x0 != M2 ) }
Which spouse of M3 was M2 's Canadian Chinese producer
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.film|ns:film.production_company.films M2 . ?x0 ns:people.person.nationality ns:m.0d05w3 . ?x0 ns:people.person.nationality ns:m.0d060g . ?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 ) }
Which spouse of M0 was a screenwriter 's actor
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character ?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 M0 . ?x1 a ns:film.writer . FILTER ( ?x0 != M0 ) }
Which spouse of M3 edited , wrote , directed , and produced M0 , M1 , and M2
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.director.film M0 . ?x0 ns:film.director.film M1 . ?x0 ns:film.director.film M2 . ?x0 ns:film.editor.film M0 . ?x0 ns:film.editor.film M1 . ?x0 ns:film.editor.film M2 . ?x0 ns:film.producer.film|ns:film.production_company.films M0 . ?x0 ns:film.producer.film|ns:film.production_company.films M1 . ?x0 ns:film.producer.film|ns:film.production_company.films M2 . ?x0 ns:film.writer.film M0 . ?x0 ns:film.writer.film M1 . ?x0 ns:film.writer.film 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 M3 . FILTER ( ?x0 != M3 ) }
Which spouse of M0 married a character
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:fictional_universe.fictional_character . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of M1 was influenced by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M6 was influenced by M0 , M1 , and M2 , influenced by M3 and M4 , and influenced by M5
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?x0 ns:influence.influence_node.influenced_by M5 . ?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 M6 . FILTER ( ?x0 != M6 ) }
Which spouse of M5 was influenced by M0 , was influenced by M1 , M2 , and M3 , and was influenced by M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?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 M5 . FILTER ( ?x0 != M5 ) }
Which spouse of M0 did M1 marry
SELECT DISTINCT ?x0 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 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 M1 . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) }
Which spouse of M0 was a person 's parent
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?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 M0 . ?x1 a ns:people.person . FILTER ( ?x0 != M0 ) }
Which spouse of M0 did a film editor marry
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.editor . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of M1 played M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M0 was a production company 's employee
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?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 M0 . ?x1 a ns:film.production_company . FILTER ( ?x0 != M0 ) }
Which spouse of M0 influenced a character
SELECT DISTINCT ?x0 WHERE { ?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 M0 . ?x1 a ns:fictional_universe.fictional_character . FILTER ( ?x0 != M0 ) }
Which spouse of M0 was influenced by a cinematographer
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by ?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 M0 . ?x1 a ns:film.cinematographer . FILTER ( ?x0 != M0 ) }
Which spouse of M0 was a film 's producer
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.film|ns:film.production_company.films ?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 M0 . ?x1 a ns:film.film . FILTER ( ?x0 != M0 ) }
Which spouse of M1 was M0 's parent
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M1 was M0 's actor
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M0 did a person marry
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:people.person . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of M1 did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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 M1 . FILTER ( ?x0 != M1 ) }
Which spouse of M1 married a person and was influenced by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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 . ?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 . ?x1 a ns:people.person . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M1 ) }
Which spouse of M0 did a film director marry
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.director . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a character did M0 marry
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:fictional_universe.fictional_character . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a character did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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:fictional_universe.fictional_character . FILTER ( ?x0 != ?x1 ) }
Which spouse of a cinematographer did M0 marry and influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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 . ?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 M0 . ?x1 a ns:film.cinematographer . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a cinematographer was a female German child of M2
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.gender ns:m.02zsn . ?x0 ns:people.person.nationality ns:m.0345h . ?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent 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 ?x1 . ?x1 a ns:film.cinematographer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a cinematographer wrote and executive produced M0 and M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:film.producer.films_executive_produced M1 . ?x0 ns:film.writer.film M0 . ?x0 ns:film.writer.film M1 . ?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 ) }
Which spouse of a costume designer was a spouse of M0
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.film_costumer_designer . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a costume designer was influenced by M0 , M1 , M2 , and M3 and influenced by M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?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_costumer_designer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a costume designer was influenced by M0 and M1 and influenced by M2 , M3 , and M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?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_costumer_designer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film director was influenced by M0 , M1 , and M2 , influenced by M3 , and influenced by M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?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.director . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film editor did M0 marry
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:film.editor . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a film editor influenced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced 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.editor . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film editor played M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character 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.editor . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film editor was influenced by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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.editor . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film editor was influenced by M0 and M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?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.editor . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film producer did M0 star
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.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.producer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a film producer did M0 and M1 marry
SELECT DISTINCT ?x0 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 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 M1 . ?x1 a ns:film.producer . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) }
Which spouse of a film producer influenced M0 and M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced M1 . ?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.producer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a person did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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:people.person . FILTER ( ?x0 != ?x1 ) }
Which spouse of a person executive produced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.films_executive_produced 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:people.person . FILTER ( ?x0 != ?x1 ) }
Which spouse of a person was a spouse of M0
SELECT DISTINCT ?x0 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 M0 . ?x1 a ns:people.person . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse of a person was influenced by and influenced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced_by 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:people.person . FILTER ( ?x0 != ?x1 ) }
Which spouse of a screenwriter did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:influence.influence_node.influenced_by 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.writer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a screenwriter executive produced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.films_executive_produced 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.writer . FILTER ( ?x0 != ?x1 ) }
Which spouse of a actor played M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character 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.actor . FILTER ( ?x0 != ?x1 ) }
Which spouse of a art director edited M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.editor.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.film_art_director . FILTER ( ?x0 != ?x1 ) }
Which spouse of a art director executive produced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.producer.films_executive_produced 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.film_art_director . FILTER ( ?x0 != ?x1 ) }
Which spouse of a art director was M0 's founder
SELECT DISTINCT ?x0 WHERE { ?x0 ns:organization.organization_founder.organizations_founded 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.film_art_director . FILTER ( ?x0 != ?x1 ) }
Which spouse of a art director was a sibling of M0
SELECT DISTINCT ?x0 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 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.film_art_director . FILTER ( ?x0 != ?x1 ) . FILTER ( ?x0 != M0 ) }
Which spouse , parent , and sibling of M0 married M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M0 . ?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 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 M1 . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) }
Which spouse , sibling , and parent of M0 did M1 and M2 marry
SELECT DISTINCT ?x0 WHERE { ?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M0 . ?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 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 M1 . ?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 != M0 ) . FILTER ( ?x0 != M0 ) . FILTER ( ?x0 != M1 ) . FILTER ( ?x0 != M2 ) }
Which star and cinematographer of M1 , M2 , and M3 produced M0 and directed M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.cinematographer.film M1 . ?x0 ns:film.cinematographer.film M2 . ?x0 ns:film.cinematographer.film M3 . ?x0 ns:film.director.film M4 . ?x0 ns:film.producer.film|ns:film.production_company.films M0 }
Which star and editor of M1 , M2 , and M3 was M0 's editor , writer , star , and art director
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.editor.film M0 . ?x0 ns:film.editor.film M1 . ?x0 ns:film.editor.film M2 . ?x0 ns:film.editor.film M3 . ?x0 ns:film.film_art_director.films_art_directed M0 . ?x0 ns:film.writer.film M0 }
Which star and editor of M5 was influenced by M0 , M1 , M2 , M3 , and M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:film.editor.film M5 . ?x0 ns:influence.influence_node.influenced_by M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 }
Which star and editor of M1 , M2 , and M3 was a art director and writer of M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.editor.film M1 . ?x0 ns:film.editor.film M2 . ?x0 ns:film.editor.film M3 . ?x0 ns:film.film_art_director.films_art_directed M0 . ?x0 ns:film.writer.film M0 }
Which star and executive producer of M0 , M1 , and M2 was a British spouse of M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:film.producer.films_executive_produced M1 . ?x0 ns:film.producer.films_executive_produced M2 . ?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 M4 . FILTER ( ?x0 != M4 ) }
Which star and executive producer of M0 and M1 was influenced by M2 and was influenced by M3 , M4 , and M5
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:film.producer.films_executive_produced M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?x0 ns:influence.influence_node.influenced_by M5 }
Which star and executive producer of M0 was influenced by M1 , M2 , and M3 and influenced by M4
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:influence.influence_node.influenced_by M2 . ?x0 ns:influence.influence_node.influenced_by M3 . ?x0 ns:influence.influence_node.influenced_by M4 }
Which star and writer of M0 , M1 , M2 , and M3 did M4 star
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.writer.film M0 . ?x0 ns:film.writer.film M1 . ?x0 ns:film.writer.film M2 . ?x0 ns:film.writer.film M3 }
Which star and writer of M1 , M2 , M3 , M4 , M5 , and M6 was a Canadian person
SELECT DISTINCT ?x0 WHERE { ?x0 a ns:people.person . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:film.actor.film/ns:film.performance.film M6 . ?x0 ns:film.writer.film M1 . ?x0 ns:film.writer.film M2 . ?x0 ns:film.writer.film M3 . ?x0 ns:film.writer.film M4 . ?x0 ns:film.writer.film M5 . ?x0 ns:film.writer.film M6 . ?x0 ns:people.person.nationality ns:m.0d060g }
Which star of M1 was employed by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 }
Which star of M0 was a person 's sibling
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?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:people.person . FILTER ( ?x0 != ?x1 ) }
Which star of M4 married M5 , influenced M0 , M1 , and M2 , and influenced M3
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced M1 . ?x0 ns:influence.influence_node.influenced M2 . ?x0 ns:influence.influence_node.influenced M3 . ?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 M5 . FILTER ( ?x0 != M5 ) }
Which star of M6 was influenced by M4 and M5 , influenced M0 , M1 , and M2 , and influenced M3
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M6 . ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced M1 . ?x0 ns:influence.influence_node.influenced M2 . ?x0 ns:influence.influence_node.influenced M3 . ?x0 ns:influence.influence_node.influenced_by M4 . ?x0 ns:influence.influence_node.influenced_by M5 }
Which star of M1 did M0 employ
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 }
Which star of M1 , M2 , and M3 was a cinematographer 's Chinese spouse
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?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.cinematographer . FILTER ( ?x0 != ?x1 ) }
Which star of M0 and M1 did M2 , M3 , M4 , and M5 star and M6 star
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:film.actor.film/ns:film.performance.film M6 }
Which star of M0 did a screenwriter influence and marry
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:influence.influence_node.influenced_by ?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 ?x1 . ?x1 a ns:film.writer . FILTER ( ?x0 != ?x1 ) }
Which star of M1 , M2 , and M3 was M4 's Dutch spouse
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:people.person.nationality ns:m.059j2 . ?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 M4 . FILTER ( ?x0 != M4 ) }
Which star of M1 influenced M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:influence.influence_node.influenced M0 }
Which star of M1 did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:influence.influence_node.influenced_by M0 }
Which star of M3 , M4 , and M5 influenced M0 and M1 , married M6 , and influenced M2
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:influence.influence_node.influenced M0 . ?x0 ns:influence.influence_node.influenced M1 . ?x0 ns:influence.influence_node.influenced 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 M6 . FILTER ( ?x0 != M6 ) }
Which star of M0 , M1 , and M2 did a screenwriter influence and marry
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:influence.influence_node.influenced_by ?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 ?x1 . ?x1 a ns:film.writer . FILTER ( ?x0 != ?x1 ) }
Which star of M0 married M1
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.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 M1 . FILTER ( ?x0 != M1 ) }
Which star of M1 , M2 , and M3 was a Japanese actor of M4 and M5
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character M4 . ?x0 ns:film.actor.film/ns:film.performance.character M5 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:people.person.nationality ns:m.03_3d }
Which star of M4 was employed by M0 , M1 , M2 , and M3 and employed by a film distributor
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M1 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M2 . ?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M3 . ?x1 a ns:film.film_distributor }
Which star of M0 did a cinematographer influence and marry
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:influence.influence_node.influenced_by ?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 ?x1 . ?x1 a ns:film.cinematographer . FILTER ( ?x0 != ?x1 ) }
Which star of M3 , M4 , and M5 founded M0 , founded a company , and founded M1 and M2
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:organization.organization_founder.organizations_founded ?x1 . ?x0 ns:organization.organization_founder.organizations_founded M0 . ?x0 ns:organization.organization_founder.organizations_founded M1 . ?x0 ns:organization.organization_founder.organizations_founded M2 . ?x1 a ns:business.employer }
Which star of M0 , M1 , M2 , and M3 played a film
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.character ?x1 . ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x1 a ns:film.film }
Which star of M1 , M2 , M3 , M4 , and M5 was M0 's star , writer , director , and cinematographer
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.actor.film/ns:film.performance.film M2 . ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.actor.film/ns:film.performance.film M4 . ?x0 ns:film.actor.film/ns:film.performance.film M5 . ?x0 ns:film.cinematographer.film M0 . ?x0 ns:film.director.film M0 . ?x0 ns:film.writer.film M0 }
Which star of M1 was influenced by M0
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:influence.influence_node.influenced_by M0 }
Which star of a film did M0 influence
SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.actor.film/ns:film.performance.film ?x1 . ?x0 ns:influence.influence_node.influenced_by M0 . ?x1 a ns:film.film }