Neo4J
Unwrapping Results
MATCH (nineties:Movie)
WHERE nineties.released >= 1990 AND nineties.released < 2000
RETURN nineties.title, nineties.tagline[
{
keys: [ 'nineties.title', 'nineties.tagline' ],
length: 2,
_fields: [ 'The Matrix', 'Welcome to the Real World' ],
_fieldLookup: { 'nineties.title': 0, 'nineties.tagline': 1 }
},
{
keys: [ 'nineties.title', 'nineties.tagline' ],
length: 2,
_fields: [ "The Devil's Advocate", 'Evil has its winning ways' ],
_fieldLookup: { 'nineties.title': 0, 'nineties.tagline': 1 }
},
{
keys: [ 'nineties.title', 'nineties.tagline' ],
length: 2,
_fields: [
'A Few Good Men',
"In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth."
],
_fieldLookup: { 'nineties.title': 0, 'nineties.tagline': 1 }
},
{
keys: [ 'nineties.title', 'nineties.tagline' ],
length: 2,
_fields: [
'As Good as It Gets',
'A comedy from the heart that goes for the throat.'
],
_fieldLookup: { 'nineties.title': 0, 'nineties.tagline': 1 }
},
{
keys: [ 'nineties.title', 'nineties.tagline' ],
length: 2,
_fields: [
'What Dreams May Come',
'After life there is more. The end is just the beginning.'
],
_fieldLookup: { 'nineties.title': 0, 'nineties.tagline': 1 }
}
]Last updated
Was this helpful?