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
[source,cypher] | |
---- | |
CREATE (node:TestThing1)-[:rel1]->(node2)-[:rel2]->(node3) | |
---- | |
== Working | |
[source,cypher] | |
---- | |
MATCH (n:TestThing1) | |
OPTIONAL MATCH n-[:rel1]->x |
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
// | |
// SecondViewController.m | |
// c8h10n4o2 | |
// | |
// Created by Håkon Sørensen on 10.11.11. | |
// Copyright (c) 2011 SorensenWeb. All rights reserved. | |
// | |
#import "SecondViewController.h" | |
#import "ASIHTTPRequest.h" |
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
SC.Object.extend | |
name: SC.attr 'string', { option: 'foo' } |