Created
May 3, 2019 16:06
-
-
Save vladbatushkov/fb9a9b63f363d52d8e078c128f30b882 to your computer and use it in GitHub Desktop.
Create a Solar System.
This file contains hidden or 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
MERGE (sun:Star { name: "Sun", diameterKm: 1391000, sizeXEarth: 109, massXEarth: 333054, order: 0 }) | |
MERGE (me:Planet { name: "Mercury", diameterKm: 4879, sizeXEarth: 0.4, massXEarth: 0.06, order: 1 }) | |
MERGE (v:Planet { name: "Venus", diameterKm: 12104, sizeXEarth: 0.9, massXEarth: 0.82, order: 2 }) | |
MERGE (e:Planet { name: "Earth", diameterKm: 12756, sizeXEarth: 1, massXEarth: 1, mass: "5.972 × 10^24", order: 3 }) | |
MERGE (ma:Planet { name: "Mars", diameterKm: 6792, sizeXEarth: 0.5, massXEarth: 0.11, order: 4 }) | |
MERGE (j:Planet { name: "Jupiter", diameterKm: 142984, sizeXEarth: 11.2, massXEarth: 317.8, order: 5 }) | |
MERGE (s:Planet { name: "Saturn", diameterKm: 120536, sizeXEarth: 9.4, massXEarth: 95.16, order: 6 }) | |
MERGE (u:Planet { name: "Uranus", diameterKm: 51118, sizeXEarth: 4, massXEarth: 14.54, order: 7 }) | |
MERGE (n:Planet { name: "Neptune", diameterKm: 49528, sizeXEarth: 3.9, massXEarth: 17.15, order: 8 }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment