query-1fce5231fbd2086e2c47cb85ffe3c660

rq turtle/ttl

PetscanĪ® Propertiessports season of league or competition (P3450)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT 
    ?item ?itemLabel 
{
    ?item wdt:P3450 ?val1 .
    ?item wdt:P3450 ?val2 . 
    FILTER (?val1 != ?val2 )  
    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; v3("?item"):::projected v1("?val1") v2("?val2") c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?val1 != ?val2"]] f0 --> v1 f0 --> v2 v3 --"wdt:P3450"--> v1 v3 --"wdt:P3450"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end