Last active
May 18, 2023 13:43
-
-
Save Ignition/9c2f3bf5f74d7d6e4ac1d7425390c213 to your computer and use it in GitHub Desktop.
eurovision2023
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE (:Country {name: "Croatia"}); | |
CREATE (:Country {name: "Belgium"}); | |
CREATE (:Country {name: "Czech Republic"}); | |
CREATE (:Country {name: "Sweden"}); | |
CREATE (:Country {name: "Greece"}); | |
CREATE (:Country {name: "Malta"}); | |
CREATE (:Country {name: "Albania"}); | |
CREATE (:Country {name: "Latvia"}); | |
CREATE (:Country {name: "United Kingdom"}); | |
CREATE (:Country {name: "Italy"}); | |
CREATE (:Country {name: "Israel"}); | |
CREATE (:Country {name: "Georgia"}); | |
CREATE (:Country {name: "Lithuania"}); | |
CREATE (:Country {name: "Moldova"}); | |
CREATE (:Country {name: "Spain"}); | |
CREATE (:Country {name: "Romania"}); | |
CREATE (:Country {name: "Serbia"}); | |
CREATE (:Country {name: "Germany"}); | |
CREATE (:Country {name: "Poland"}); | |
CREATE (:Country {name: "Azerbaijan"}); | |
CREATE (:Country {name: "Netherlands"}); | |
CREATE (:Country {name: "Austria"}); | |
CREATE (:Country {name: "Australia"}); | |
CREATE (:Country {name: "San Marino"}); | |
CREATE (:Country {name: "Armenia"}); | |
CREATE (:Country {name: "Ukraine"}); | |
CREATE (:Country {name: "Switzerland"}); | |
CREATE (:Country {name: "Cyprus"}); | |
CREATE (:Country {name: "Estonia"}); | |
CREATE (:Country {name: "Portugal"}); | |
CREATE (:Country {name: "Finland"}); | |
CREATE (:Country {name: "Denmark"}); | |
CREATE (:Country {name: "Slovenia"}); | |
CREATE (:Country {name: "Norway"}); | |
CREATE (:Country {name: "Rest of the World"}); | |
CREATE (:Country {name: "Ireland"}); | |
CREATE (:Country {name: "Iceland"}); | |
CREATE (:Country {name: "France"}); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Germany"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Germany"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_JURY_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Austria"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Portugal"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Switzerland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Poland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Serbia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "France"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Cyprus"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Spain"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Sweden"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Albania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Italy"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Estonia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Finland"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Czech Republic"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Australia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Belgium"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Armenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Moldova"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Ukraine"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Denmark"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Norway"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Germany"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Germany"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Germany"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Lithuania"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Netherlands"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Moldova"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "San Marino"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "France"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Belgium"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Portugal"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Armenia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Cyprus"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Norway"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Spain"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Greece"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "United Kingdom"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Israel"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Azerbaijan"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 7}]->(dst); | |
MATCH (src:Country {name: "Croatia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Estonia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Romania"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Slovenia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Italy"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Latvia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Ireland"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 2}]->(dst); | |
MATCH (src:Country {name: "Austria"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Finland"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Germany"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Poland"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Iceland"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Serbia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 10}]->(dst); | |
MATCH (src:Country {name: "Switzerland"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Australia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Israel"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 6}]->(dst); | |
MATCH (src:Country {name: "Sweden"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Georgia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 1}]->(dst); | |
MATCH (src:Country {name: "Czech Republic"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Slovenia"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 12}]->(dst); | |
MATCH (src:Country {name: "Albania"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 8}]->(dst); | |
MATCH (src:Country {name: "Lithuania"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); | |
MATCH (src:Country {name: "Rest of the World"}), (dst:Country {name: "Croatia"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 3}]->(dst); | |
MATCH (src:Country {name: "Ukraine"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 5}]->(dst); | |
MATCH (src:Country {name: "Malta"}), (dst:Country {name: "United Kingdom"}) | |
CREATE (src)-[:GAVE_TELE_VOTE {score: 4}]->(dst); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment