query-25367b2f9217e69e54f0b3cddd1874e5
request to find references for novalue statements in "spouse" (P26) (2021-10-31) Jura1: Request date: 31 October 2021, byTask description, these tend to get additional statements and identifiers fairly frequently.Wikidata:Database reports/top missing properties by number of sitelinks/P26 at (P26)spouse After creating new items for missing 12:57, 31 October 2021 (UTC) JuraThe proposed task is to find a suitable source and added references to such statements. --- Maybe there is a way to reference them with one or the other source. .(Q12325)James Buchanan for Q12325#P26This is less so for novalue statements. Sample: Discussion12:03, 27 November 2021 (UTC) Jura), but it's generally not filled. I think that for readers this is visible by the absence of spouse unknown (even if the person has no spouse). --- User:Lesko987aApparently Wikitree has a flag "no more marriages" for this (according to Request process(1) Query to find them:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT
?item ?itemLabel ?itemDescription
WHERE
{
?st a wdno:P26 .
?item p:P26 ?st .
OPTIONAL { ?st prov:wasDerivedFrom ?source .
FILTER NOT EXISTS { ?source pr:P143 [] }
}
FILTER(!bound(?source))
?item wdt:P31 wd:Q5 ; wdt:P570 ?d .
FILTER ( YEAR(?d) > 1600 )
FILTER NOT EXISTS { ?item wdt:P106 wd:Q1469535 }
FILTER NOT EXISTS { ?item wdt:P26 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100