Created
December 3, 2018 20:07
-
-
Save ruvan83/a66f9ee12b70fc5050d1eafde466c0c9 to your computer and use it in GitHub Desktop.
resp
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
parentItems = [ | |
{ | |
name: 'Parent-1', | |
modified: new Date().getTime(), | |
childItems: [ | |
{ | |
name: 'P[1] Child-1', | |
childItems: [ | |
{ name: 'P[1] C[1] GrandChild-1'}, | |
{ name: 'P[1] C[1] GrandChild-2'}, | |
{ name: 'P[1] C[1] GrandChild-3'} | |
] | |
}, | |
{ | |
name: 'P[1] Child-2', | |
childItems: [ | |
{ name: 'P[1] C[2] GrandChild-1'}, | |
{ name: 'P[1] C[2] GrandChild-2'}, | |
{ name: 'P[1] C[2] GrandChild-3'} | |
] | |
} | |
] | |
}, | |
{ | |
name: 'Parent-2', | |
modified: new Date().getTime(), | |
childItems: [ | |
{ | |
name: 'P[2] Child-1', | |
childItems: [ | |
{ name: 'P[2] C[1] GrandChild-1'}, | |
{ name: 'P[2] C[1] GrandChild-2'}, | |
{ name: 'P[2] C[1] GrandChild-3'} | |
] | |
}, | |
{ | |
name: 'P[2] Child-2', | |
childItems: [ | |
{ name: 'P[2] C[2] GrandChild-1'}, | |
{ name: 'P[2] C[2] GrandChild-2'}, | |
{ name: 'P[2] C[2] GrandChild-3'} | |
] | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment