Note: For some reason, neo4j may return ids as objects with values { low: <int>, high: <int> }
.
The pertinent value is stored in the low
attribute.
{
title: <string>,
isbn: [<string>],
date: <int>,
id: <int>,
authors: [
{
name: <string>,
id: <int>
},
...
],
publishers: [
{
name: <string>,
id: <int>
},
...
],
places: [
{
name: <string>,
id: <int>
},
...
],
relationships: {
wrote: [
[ <origin_id>, <terminal_id> ],
...
],
published: [
[ <origin_id>, <terminal_id> ],
...
],
publishes_in: [
[ <origin_id>, <terminal_id> ],
...
]
}
}