query-4417e2d81400180eec86a55d26911b1d

rq turtle/ttl

Artist of Black Lunch Table. Changing a bit the query we can found a lot of other items in the same condition. (Q28781198)Black Lunch Table =(P972)catalog and (P21)sex or gender , (Q5)human =(P31)instance of , now I have some doubt about notability of item that are in Wikidata only because they are artists of "Black Lunch Table". I prefere ask to see if community think that partecipation to Black Lunch Table is enough for notability. The following query is a first group of items without sitelink, backlink reference and the only property are: User:Heathart after some edit of User:GerardM in user page discussion of User:SjoerddebruinAfter discussion with So the question is: Are these items notable because they are in "Black Lunch Table" or "Black Lunch Table" isn't a sufficient condition to make notable these item and item like these (see the query result) must be deleted?

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel
WHERE{
  ?item wikibase:sitelinks 0 .
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P972 wd:Q28781198 .
  ?item wdt:P21 ?sex .

  ?item wikibase:statements ?statementCount.
  FILTER(?statementCount = 3).

  OPTIONAL{
    ?backlink ?p1 ?item .
  }
  FILTER(!bound(?backlink))  

  OPTIONAL{
    ?item ?p2 [prov:wasDerivedFrom ?ref] .
    ?ref ?pr [] .
    FILTER (?pr != pr:P143) #no source
  }  
  FILTER(!bound(?ref))

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?backlink") v5("?item"):::projected v7("?p1") v8("?p2") v3("?pr") v1("?ref") v6("?sex") v4("?statementCount") a2((" ")) a1((" ")) c8(["wd:Q28781198"]):::iri c4(["0^^xsd:integer"]):::literal c13(["bd:serviceParam"]):::iri c6(["wd:Q5"]):::iri c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not bound(?ref)"]] f0 --> v1 f1[["not bound(?backlink)"]] f1 --> v2 f2[["?statementCount = '3^^xsd:integer'"]] f2 --> v4 v5 --"wikibase:sitelinks"--> c4 v5 --"wdt:P31"--> c6 v5 --"wdt:P972"--> c8 v5 --"wdt:P21"--> v6 v5 --"wikibase:statements"--> v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -->v7--> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; a1 -."prov:wasDerivedFrom".-> v1 v5 -->v8--> a1 v1 -->v3--> a2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end