├── LICENSE ├── README.md ├── section1 ├── 1.4.cql └── README.md ├── section2 ├── 2.1.cql ├── 2.2.cql ├── 2.3.cql ├── 2.4.cql ├── 2.5.cql ├── README.md └── dataset │ ├── README.md │ ├── out │ ├── nodes_ALL.csv │ └── relations_ALL.csv │ └── script.py ├── section3 ├── 3.1.cql ├── 3.2.cql ├── 3.3.cql ├── 3.4.cql ├── README.md └── dataset │ ├── README.md │ └── zkc.graph ├── section4 ├── 4.1.cql ├── 4.2.cql ├── 4.3.cqal ├── 4.4.cql └── README.md └── section5 ├── 5.1.cql ├── 5.2.cql └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/README.md -------------------------------------------------------------------------------- /section1/1.4.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section1/1.4.cql -------------------------------------------------------------------------------- /section1/README.md: -------------------------------------------------------------------------------- 1 | # Dive into Neo4j Graph Algorithms Llibrary 2 | -------------------------------------------------------------------------------- /section2/2.1.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/2.1.cql -------------------------------------------------------------------------------- /section2/2.2.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/2.2.cql -------------------------------------------------------------------------------- /section2/2.3.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/2.3.cql -------------------------------------------------------------------------------- /section2/2.4.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/2.4.cql -------------------------------------------------------------------------------- /section2/2.5.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/2.5.cql -------------------------------------------------------------------------------- /section2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/README.md -------------------------------------------------------------------------------- /section2/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/dataset/README.md -------------------------------------------------------------------------------- /section2/dataset/out/nodes_ALL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/dataset/out/nodes_ALL.csv -------------------------------------------------------------------------------- /section2/dataset/out/relations_ALL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/dataset/out/relations_ALL.csv -------------------------------------------------------------------------------- /section2/dataset/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section2/dataset/script.py -------------------------------------------------------------------------------- /section3/3.1.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/3.1.cql -------------------------------------------------------------------------------- /section3/3.2.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/3.2.cql -------------------------------------------------------------------------------- /section3/3.3.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/3.3.cql -------------------------------------------------------------------------------- /section3/3.4.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/3.4.cql -------------------------------------------------------------------------------- /section3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/README.md -------------------------------------------------------------------------------- /section3/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/dataset/README.md -------------------------------------------------------------------------------- /section3/dataset/zkc.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section3/dataset/zkc.graph -------------------------------------------------------------------------------- /section4/4.1.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section4/4.1.cql -------------------------------------------------------------------------------- /section4/4.2.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section4/4.2.cql -------------------------------------------------------------------------------- /section4/4.3.cqal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section4/4.3.cqal -------------------------------------------------------------------------------- /section4/4.4.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section4/4.4.cql -------------------------------------------------------------------------------- /section4/README.md: -------------------------------------------------------------------------------- 1 | # Detect similarities between nodes 2 | 3 | 4 | -------------------------------------------------------------------------------- /section5/5.1.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section5/5.1.cql -------------------------------------------------------------------------------- /section5/5.2.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Exploring-Graph-Algorithms-with-Neo4j/HEAD/section5/5.2.cql -------------------------------------------------------------------------------- /section5/README.md: -------------------------------------------------------------------------------- 1 | # Predicting relationships 2 | --------------------------------------------------------------------------------