Last active
June 26, 2019 08:17
-
-
Save mhoangvslev/9a44c87f45bf5a24a3afe1f9d6f84faf to your computer and use it in GitHub Desktop.
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
module.exports = { | |
kittyId: { | |
type: 'number', | |
primary: true, | |
}, | |
genes: { | |
type: 'string', | |
}, | |
generation: { | |
type: 'number' | |
}, | |
owner: { | |
type: 'string' | |
}, | |
avatar: { | |
type: 'string', | |
unique: true | |
}, | |
child: { | |
type: 'relationship', | |
relationship: 'CHILD', | |
direction: 'out', | |
target: 'Kitty', | |
cascade: 'delete', | |
properties: { | |
birthTime: "datetime", | |
blockheight: "integer" | |
}, | |
eager: true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment