"PREFIX wd: \nPREFIX wdt: \nPREFIX skos: \nPREFIX rdfs: \nPREFIX av: \nPREFIX browser: \nCONSTRUCT {\n ?father a av:personality ;\n rdfs:label ?fatherLabel ;\n browser:class \"personality\" .\n \n ?mother a av:personality ;\n rdfs:label ?motherLabel ;\n browser:class \"personality\" .\n\n ?childOfFather a av:personality ;\n rdfs:label ?childOfFatherLabel ;\n browser:class \"personality\" .\n \n ?childOfMother a av:personality ;\n rdfs:label ?childOfMotherLabel ;\n browser:class \"personality\" .\n\n ?spouse a av:personality ;\n rdfs:label ?spouseLabel ;\n browser:class \"personality\" .\n\n ?sibling a av:personality ;\n rdfs:label ?siblingLabel ;\n browser:class \"personality\" .\n \n ?node av:father ?father ;\n av:mother ?mother ;\n av:spouse ?spouse ;\n av:sibling ?sibling .\n\n ?childOfFather av:father ?node .\n ?childOfMother av:mother ?node .\n \n av:father browser:class ?fatherClass . \n av:mother browser:class ?motherClass . \n av:spouse browser:class ?spouseClass .\n av:sibling browser:class ?siblingClass . \n} WHERE {\n {\n ?node wdt:P22 ?father .\n BIND(\"father\" AS ?fatherClass)\n } UNION {\n ?node wdt:P25 ?mother .\n BIND(\"mother\" AS ?motherClass)\n } UNION {\n ?childOfFather wdt:P22 ?node .\n BIND(\"father\" AS ?fatherClass)\n } UNION {\n ?childOfMother wdt:P25 ?node .\n BIND(\"mother\" AS ?motherClass)\n } UNION {\n ?node wdt:P26 ?spouse .\n BIND(\"spouse\" AS ?spouseClass)\n } UNION {\n ?node wdt:P3373 ?sibling .\n BIND(\"sibling\" AS ?siblingClass)\n }\n\n SERVICE wikibase:label { bd:serviceParam wikibase:language \"en\". }\n \n}" . . "Family"@en . .