query-95a40ef42ae9dcb05a950f8b6e405845
S.A. Julio
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?EU_Football_info_player_ID
WHERE
{
?item wdt:P3726 ?EU_Football_info_player_ID .
BIND (xsd:integer(?EU_Football_info_player_ID) AS ?int)
FILTER (?int < 3 || ?int > 30932)
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("?EU_Football_info_player_ID"):::projected
v4("?int")
v2("?item"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["(?int < '3^^xsd:integer' || ?int > '30932^^xsd:integer')"]]
f0 --> v4
v2 --"wdt:P3726"--> v3
bind1[/"http://www.w3.org/2001/XMLSchema#integer(?EU_Football_info_player_ID)"/]
v3 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end