query-8a59a8d0b533b94fffd3225438a33409
Ways to reduce multiplicity. Wikidata properties and edgesSources of multiplicity are explained in but in different years. Let's see how to deal with this in queries same competitionWe will start with an example about two competitors and their rewards. It is natural to win
Use at
- https://query.wikidata.org/sparql
SELECT ?e ?value WHERE {
VALUES (?e ?value ?date) {
("James" "Belgium" "70")
("Mary" "worldwide" "71")
("Mary" "worldwide" "72")
("Mary" "worldwide" "73")
("Mary" "France" "76")
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?date")
v1("?e"):::projected
v2("?value"):::projected
bind0[/VALUES ?date ?e ?value/]
bind0-->v1
bind0-->v2
bind0-->v3
bind00(["James"])
bind00 --> bind0
bind01(["Belgium"])
bind01 --> bind0
bind02(["70"])
bind02 --> bind0
bind03(["Mary"])
bind03 --> bind0
bind04(["worldwide"])
bind04 --> bind0
bind05(["71"])
bind05 --> bind0
bind06(["Mary"])
bind06 --> bind0
bind07(["worldwide"])
bind07 --> bind0
bind08(["72"])
bind08 --> bind0
bind09(["Mary"])
bind09 --> bind0
bind010(["worldwide"])
bind010 --> bind0
bind011(["73"])
bind011 --> bind0
bind012(["Mary"])
bind012 --> bind0
bind013(["France"])
bind013 --> bind0
bind014(["76"])
bind014 --> bind0