query-8fc279947086c4b696ac8e4072c76f12

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?value ?result (STRLEN(STR(?value)) AS ?stringlength)  ?snak ?rank
WHERE
{
    {
        SELECT ?item ?value ?result ?snak ?rank
        WHERE
        {
            {
                ?item p:P5696 [ ps:P5696 ?value; wikibase:rank ?rank ] .
                BIND("mainsnak" AS ?snak) .
            } UNION {
                ?statement1 pq:P5696 ?value;
                    wikibase:rank ?rank .
                ?item ?p1 ?statement1 .
                BIND("qualifier" AS ?snak) .
            } UNION {
                ?ref pr:P5696 ?value .
                ?statement2 prov:wasDerivedFrom ?ref;
                    wikibase:rank ?rank .
                ?item ?p2 ?statement2 .
                BIND("reference" AS ?snak) .
            } .
            BIND( REGEX( STR( ?value ), "^([A-Z]{1,5})$" ) AS ?regexresult ) .
            FILTER( ?regexresult = false ) .
            BIND( IF( ?regexresult = true, "pass", "fail" ) AS ?result ) .
            FILTER( ?item NOT IN ( wd:Q4115189, wd:Q13406268, wd:Q15397819 ) ) .
        } 
        LIMIT 100
    } .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en" } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v7("?p1") v10("?p2") v4("?rank"):::projected v8("?ref") v11("?regexresult") v11("?result"):::projected v11("?snak"):::projected v6("?statement1") v9("?statement2") v12("?stringlength") v3("?value"):::projected a1((" ")) c12(["bd:serviceParam"]):::iri c14(["fr,en"]):::literal f0[["?item != 'wd:Q4115189'?item != 'wd:Q13406268'?item != 'wd:Q15397819'"]] f0 --> v1 f1[["?regexresult = 'false^^xsd:boolean'"]] f1 --> v11 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; v8 --"p:reference/P5696"--> v3 v9 --"prov:wasDerivedFrom"--> v8 v9 --"wikibase:rank"--> v4 v1 -->v10--> v9 bind2[/"'reference'"/] bind2 --as--o v11 end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v6 --"p:qualifier/P5696"--> v3 v6 --"wikibase:rank"--> v4 v1 -->v7--> v6 bind3[/"'qualifier'"/] bind3 --as--o v11 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; a1 --"p:statement/P5696"--> v3 a1 --"wikibase:rank"--> v4 v1 --"p:P5696"--> a1 bind4[/"'mainsnak'"/] bind4 --as--o v11 end union0r <== or ==> union0l end bind5[/"regex(str(?value),'^(#91;A-Z#93;{1,5})$')"/] v3 --o bind5 bind5 --as--o v11 bind6[/"if(?regexresult = 'true^^xsd:boolean','pass','fail')"/] v11 --o bind6 bind6 --as--o v11 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end bind7[/"string-length(str(?value))"/] v3 --o bind7 bind7 --as--o v12