query-3442922cf755d36a820b093bf8ae8755

rq turtle/ttl

The Peerage and gender is a female (F) and uses the pronoun "she", but also that Fuller is "son of" and appointed "Knight Grand Cross". This is highly unlikely. There are other cases where The Peerage states that a male took a married family name from a female. Here's a query to find suspicious cases: (Q75931107)Sir Joseph Fuller . For example, the source states that (P4638)The Peerage person ID sourced from (P21)sex or gender I'm doing some work on fixing misgendering and stumbled upon a huge amount of items that, apparently, have incorrect

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item
WHERE {
  ?item wdt:P4638 ?thepeerageid .
  {
    ?item wdt:P21 wd:Q6581097 .
    ?item wdt:P735/wdt:P31 wd:Q11879590 .
  }
  UNION
  {
    ?item wdt:P21 wd:Q6581072 .
    ?item wdt:P735/wdt:P31 wd:Q12308941 .
  }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?thepeerageid") a1((" ")) a2((" ")) c8(["wd:Q12308941"]):::iri c6(["wd:Q11879590"]):::iri c3(["wd:Q6581097"]):::iri c7(["wd:Q6581072"]):::iri v1 --"wdt:P4638"--> v2 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P21"--> c7 v1 --"wdt:P735"--> a2 a2 --"wdt:P31"--> c8 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P21"--> c3 v1 --"wdt:P735"--> a1 a1 --"wdt:P31"--> c6 end union0r <== or ==> union0l end