Created
February 26, 2014 23:33
-
-
Save versae/9241069 to your computer and use it in GitHub Desktop.
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
{ | |
"patterns":[ | |
{ | |
"source":{ | |
"alias":"n3_0", | |
"type":"node", | |
"type_id":3 | |
}, | |
"relation":{ | |
"alias":"r2_0", | |
"type":"relationship", | |
"type_id":2 | |
}, | |
"target":{ | |
"alias":"n4_0", | |
"type":"node", | |
"type_id":4 | |
} | |
} | |
], | |
"conditions":[ | |
[ | |
"istartswith", | |
[ | |
"property", | |
"n4_0", | |
"Title" | |
], | |
"el" | |
] | |
], | |
"results":[ | |
{ | |
"alias":"n3_0", | |
"properties":[ | |
"Name" | |
] | |
}, | |
{ | |
"alias":"r2_0", | |
"properties":[ | |
] | |
}, | |
{ | |
"alias":"n4_0", | |
"properties":null | |
} | |
], | |
"origins":[ | |
{ | |
"alias":"n3_0", | |
"type":"node", | |
"type_id":3 | |
}, | |
{ | |
"alias":"r2_0", | |
"type":"relationship", | |
"type_id":2 | |
}, | |
{ | |
"alias":"n4_0", | |
"type":"node", | |
"type_id":4 | |
} | |
] | |
} |
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
{'conditions': [('istartswith', ('property', 'n4_0', u'Title'), u'el')], | |
'origins': [{'alias': 'n3_0', 'type': 'node', 'type_id': 3}, | |
{'alias': 'r2_0', 'type': 'relationship', 'type_id': 2}, | |
{'alias': 'n4_0', 'type': 'node', 'type_id': 4}], | |
'patterns': [{'relation': {'alias': 'r2_0', | |
'type': 'relationship', | |
'type_id': 2}, | |
'source': {'alias': 'n3_0', 'type': 'node', 'type_id': 3}, | |
'target': {'alias': 'n4_0', 'type': 'node', 'type_id': 4}}], | |
'results': [{'alias': 'n3_0', 'properties': [u'Name']}, | |
{'alias': 'r2_0', 'properties': []}, | |
{'alias': 'n4_0', 'properties': None}]} |
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
Name of the Person that writes a Book with a Title that starts with el |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment