├── .gitignore ├── .startup ├── fraud ├── northwind └── startup.order ├── LICENSE ├── README.md ├── documentation-examples ├── CSV │ ├── authorBook │ │ ├── author.csv │ │ ├── authorBook.csv │ │ ├── authorBookMappingCSV.groovy │ │ ├── book.csv │ │ ├── readme.md │ │ ├── runDGL.sh │ │ └── schema.groovy │ ├── edgeProperty │ │ ├── edgePropertyMapping.groovy │ │ ├── person.csv │ │ ├── personKnowsEdges.csv │ │ ├── runDGL.sh │ │ └── schema.groovy │ ├── fridgeItemCOMPKEY │ │ ├── fridgeItem.csv │ │ ├── fridgeItemEdges.csv │ │ ├── fridgeItemMappingCOMPKEY.groovy │ │ ├── ingredients.csv │ │ ├── readme.md │ │ ├── runDGL.sh │ │ └── schema.groovy │ ├── gzip_test │ │ ├── gzipMapping.groovy │ │ ├── readme.md │ │ ├── recipes.csv.gz │ │ └── runDGL.sh │ ├── meals.csv │ ├── readme.md │ └── reviewerRating │ │ ├── readme.md │ │ ├── recipes.csv.gz │ │ ├── recipes_complete.csv │ │ ├── reviewerRatingMapping.groovy │ │ ├── reviewerRatings.csv.gz │ │ ├── reviewers.csv.gz │ │ ├── runDGL.sh │ │ └── schema.groovy ├── GEO │ └── 5.1 │ │ ├── data │ │ └── geodetic.csv │ │ ├── geodetic-data.groovy │ │ ├── geodetic-map-script.groovy │ │ ├── geodetic-queries.groovy │ │ ├── geodetic-schema.groovy │ │ ├── graphloader_command.txt │ │ ├── readme.md │ │ └── verify.groovy ├── JSON │ ├── authorBookMap_JSON.groovy │ ├── data │ │ ├── edges │ │ │ └── authorBook.json │ │ ├── loader.log │ │ └── vertices │ │ │ ├── author.json │ │ │ └── book.json │ ├── graphloader_command.txt │ ├── readme.md │ ├── schema.groovy │ └── verify.groovy ├── MISC │ ├── filePattern │ │ ├── filePatternCSVMap.groovy │ │ ├── filePatternJSONMap.groovy │ │ ├── filePatternMULTMap.groovy │ │ ├── filePatternQUESTMap.groovy │ │ ├── filePatternRANGEMap.groovy │ │ ├── queries.groovy │ │ ├── readme.md │ │ ├── runDGL.sh │ │ └── schema.groovy │ ├── filter_map_flatmap │ │ ├── filterData.csv │ │ ├── filterMap.groovy │ │ ├── filterQueries.groovy │ │ ├── filterSchema.groovy │ │ ├── flatmapData.csv │ │ ├── flatmapMap.groovy │ │ ├── flatmapQueries.groovy │ │ ├── flatmapSchema.groovy │ │ ├── graphloaderFilter.txt │ │ ├── graphloaderFlatmap.txt │ │ ├── mapData.csv │ │ ├── mapMap.groovy │ │ ├── mapQueries.groovy │ │ ├── mapSchema.csv │ │ └── readme.md │ ├── metaProperty │ │ ├── data.groovy │ │ ├── queries.groovy │ │ ├── readme.md │ │ └── schema.groovy │ ├── multiCard │ │ ├── authorCity.csv │ │ ├── multiCardMap.groovy │ │ ├── query.groovy │ │ ├── readme.md │ │ ├── runDGL.sh │ │ └── schema.groovy │ └── readme.md └── readme.md ├── dse-graph-frame ├── README.md ├── Spark-shell-notes.scala ├── build.sbt ├── friends-graph.groovy └── src │ └── main │ └── scala │ └── com │ └── datastax │ └── bdp │ └── graphframe │ └── example │ ├── RandomReceiver.scala │ └── StreamingExample.scala ├── entity-resolution ├── README.md ├── build.sbt ├── data │ ├── add_1.csv │ ├── add_2.csv │ └── initial.csv ├── schema.groovy └── src │ └── main │ └── scala │ └── com │ └── datastax │ └── bdp │ └── er │ ├── EntityRecognitionExample.scala │ └── streaming │ ├── RandomReceiver.scala │ └── StreamingExample.scala ├── fraud ├── JavaFluentAPI │ ├── README.md │ ├── build-example.sh │ ├── pom.xml │ ├── run-example.sh │ └── src │ │ └── main │ │ └── java │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── com │ │ └── datastax │ │ └── fraud │ │ └── FraudSample.java ├── README.md ├── data │ ├── chargebacks.csv │ ├── creditCards.csv │ ├── customerAddresses.csv │ ├── customerAddresses.json │ ├── customerChargebacks.csv │ ├── customerOrders.csv │ ├── customerSessions.csv │ ├── customers.csv │ ├── devices.csv │ ├── orderChargebacks.csv │ ├── orders.csv │ └── sessions.csv ├── fraud-mapping.groovy ├── fraud-mapping.groovy.config ├── mysql-import-data.sql ├── mysql-schema.sql ├── pom.xml ├── schema.groovy ├── src │ └── main │ │ └── scala │ │ └── com │ │ └── datastax │ │ └── fraud │ │ └── DataImport.scala └── studio │ ├── 1_of_4_Creating_DSE_Graph_and_Graph_Schema.studio-nb.tar │ ├── 1_of_4_Creating_DSE_Graph_and_Graph_Schema_2018-11-20_18_23_12.studio-nb.tar │ ├── 2_of_4_Populating_and_Traversing_the_Graph.studio-nb.tar │ ├── 2_of_4_Populating_and_Traversing_the_Graph_2018-11-20_18_23_15.studio-nb.tar │ ├── 3_of_4_Indexing_and_Traversing_Graph_Data.studio-nb.tar │ ├── 3_of_4_Indexing_and_Traversing_Graph_Data_2018-11-20_18_23_06.studio-nb.tar │ ├── 4_of_4_Fraud_Scenarios.studio-nb.tar │ └── 4_of_4_Fraud_Scenarios_2018-11-20_18_23_04.studio-nb.tar ├── killrvideo ├── .gitignore ├── README.md ├── data │ ├── friendship.dat │ ├── genres.dat │ ├── movies.dat │ ├── persons.dat │ ├── ratings.dat │ └── users.dat ├── dsl │ ├── dotnet │ │ ├── KillrVideo.sln │ │ ├── KillrVideo │ │ │ ├── App │ │ │ │ └── App.cs │ │ │ ├── Dsl │ │ │ │ ├── Enrichment.cs │ │ │ │ ├── Genre.cs │ │ │ │ ├── KillrVideoGraphTraversalExtensions.cs │ │ │ │ ├── KillrVideoGraphTraversalSourceExtensions.cs │ │ │ │ ├── Kv.cs │ │ │ │ ├── Recommender.cs │ │ │ │ └── __KillrVideo.cs │ │ │ └── KillrVideo.csproj │ │ └── README.asciidoc │ ├── java │ │ ├── README.asciidoc │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── killrvideo │ │ │ │ ├── Enrichment.java │ │ │ │ ├── Genre.java │ │ │ │ ├── KV.java │ │ │ │ ├── KillrVideoApp.java │ │ │ │ ├── KillrVideoTraversalDsl.java │ │ │ │ ├── KillrVideoTraversalSourceDsl.java │ │ │ │ └── Recommender.java │ │ │ └── resources │ │ │ └── log4j.properties │ └── python │ │ ├── .gitignore │ │ ├── README.asciidoc │ │ ├── app.py │ │ ├── killrvideo_dsl │ │ ├── __init__.py │ │ ├── dsl.py │ │ ├── genre.py │ │ └── kv.py │ │ └── setup.py ├── killrvideo-mapping.groovy ├── killrvideo-mapping.groovy.config ├── schema.groovy └── verify.csv ├── london-tube ├── README.md ├── Schema.png ├── london-tube-map.pdf ├── london_edges.csv ├── london_tube.gryo ├── london_tube_mapping.groovy ├── london_vertices.csv └── schema.groovy ├── northwind ├── Northwind_Schema.png ├── README.md ├── code │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── datastax │ │ └── examples │ │ └── northwind │ │ └── Northwind.java ├── data │ ├── facebook_members.csv │ ├── identity_c2fb.csv │ ├── isFriendsWith.csv │ ├── isRelatedTo.csv │ ├── northwind.kryo │ └── rated.csv ├── datamodel-screenshot.png ├── northwind-mapping.groovy ├── northwind-mapping.groovy.config ├── schema.groovy ├── supplemental-data-mapping.groovy ├── supplemental-data-mapping.groovy.config └── verify.csv ├── paging-graph-results ├── .gitignore ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── datastax │ └── graphpractice │ └── example │ └── App.java ├── pokemon ├── README.md ├── data │ ├── edges │ │ ├── category_has_pocket_type.csv │ │ ├── item_has_category.csv │ │ ├── location_belongs_to_region.csv │ │ ├── pokemon_can_use_item.csv │ │ ├── pokemon_evolves_to.csv │ │ ├── pokemon_has_abilities.csv │ │ ├── pokemon_has_egg_groups.csv │ │ ├── pokemon_has_location_index.csv │ │ ├── pokemon_has_moves.csv │ │ ├── pokemon_has_stats.csv │ │ └── pokemon_has_type.csv │ └── vertices │ │ ├── abilities.csv │ │ ├── egg_groups.csv │ │ ├── genders.csv │ │ ├── item_categories.csv │ │ ├── item_pockets.csv │ │ ├── items.csv │ │ ├── locations.csv │ │ ├── moves.csv │ │ ├── pokemon.csv │ │ ├── regions.csv │ │ ├── stats.csv │ │ └── types.csv ├── graphloader_command.txt ├── poke_mapper.groovy ├── poke_mapper.groovy.config ├── schema.groovy └── verify.csv ├── startup └── traversal-builder ├── README.md ├── bin ├── run.sh └── traversal-builder.jar ├── pom.xml └── src └── main ├── java └── com │ └── datastax │ └── examples │ └── builder │ ├── App.java │ ├── AppState.java │ ├── Commands.java │ ├── ShortestPathTraversals.java │ └── shortestPath │ └── ShortestPathQueryBuilder.java └── resources ├── graph.groovy ├── graph.txt └── schema.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.startup/fraud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/.startup/fraud -------------------------------------------------------------------------------- /.startup/northwind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/.startup/northwind -------------------------------------------------------------------------------- /.startup/startup.order: -------------------------------------------------------------------------------- 1 | northwind 2 | fraud -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/README.md -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/author.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/author.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/authorBook.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/authorBook.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/authorBookMappingCSV.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/authorBookMappingCSV.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/book.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/book.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/readme.md -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/CSV/authorBook/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/authorBook/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/edgeProperty/edgePropertyMapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/edgeProperty/edgePropertyMapping.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/edgeProperty/person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/edgeProperty/person.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/edgeProperty/personKnowsEdges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/edgeProperty/personKnowsEdges.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/edgeProperty/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/edgeProperty/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/CSV/edgeProperty/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/edgeProperty/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItem.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItemEdges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItemEdges.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItemMappingCOMPKEY.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/fridgeItemMappingCOMPKEY.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/ingredients.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/ingredients.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/readme.md -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/CSV/fridgeItemCOMPKEY/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/fridgeItemCOMPKEY/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/gzip_test/gzipMapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/gzip_test/gzipMapping.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/gzip_test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/gzip_test/readme.md -------------------------------------------------------------------------------- /documentation-examples/CSV/gzip_test/recipes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/gzip_test/recipes.csv.gz -------------------------------------------------------------------------------- /documentation-examples/CSV/gzip_test/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/gzip_test/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/CSV/meals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/meals.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/readme.md -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/readme.md -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/recipes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/recipes.csv.gz -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/recipes_complete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/recipes_complete.csv -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/reviewerRatingMapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/reviewerRatingMapping.groovy -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/reviewerRatings.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/reviewerRatings.csv.gz -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/reviewers.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/reviewers.csv.gz -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/CSV/reviewerRating/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/CSV/reviewerRating/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/data/geodetic.csv: -------------------------------------------------------------------------------- 1 | name|point 2 | Paris|POINT(2.352222, 48.856614) 3 | -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/geodetic-data.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/geodetic-data.groovy -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/geodetic-map-script.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/geodetic-map-script.groovy -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/geodetic-queries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/geodetic-queries.groovy -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/geodetic-schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/geodetic-schema.groovy -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/graphloader_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/graphloader_command.txt -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/GEO/5.1/readme.md -------------------------------------------------------------------------------- /documentation-examples/GEO/5.1/verify.groovy: -------------------------------------------------------------------------------- 1 | g.V().count()|1 2 | -------------------------------------------------------------------------------- /documentation-examples/JSON/authorBookMap_JSON.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/authorBookMap_JSON.groovy -------------------------------------------------------------------------------- /documentation-examples/JSON/data/edges/authorBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/data/edges/authorBook.json -------------------------------------------------------------------------------- /documentation-examples/JSON/data/loader.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/data/loader.log -------------------------------------------------------------------------------- /documentation-examples/JSON/data/vertices/author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/data/vertices/author.json -------------------------------------------------------------------------------- /documentation-examples/JSON/data/vertices/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/data/vertices/book.json -------------------------------------------------------------------------------- /documentation-examples/JSON/graphloader_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/graphloader_command.txt -------------------------------------------------------------------------------- /documentation-examples/JSON/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/readme.md -------------------------------------------------------------------------------- /documentation-examples/JSON/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/JSON/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/JSON/verify.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/filePatternCSVMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/filePatternCSVMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/filePatternJSONMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/filePatternJSONMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/filePatternMULTMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/filePatternMULTMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/filePatternQUESTMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/filePatternQUESTMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/filePatternRANGEMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/filePatternRANGEMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/queries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/queries.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/readme.md -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/MISC/filePattern/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filePattern/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/filterData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/filterData.csv -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/filterMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/filterMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/filterQueries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/filterQueries.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/filterSchema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/filterSchema.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/flatmapData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/flatmapData.csv -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/flatmapMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/flatmapMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/flatmapQueries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/flatmapQueries.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/flatmapSchema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/flatmapSchema.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/graphloaderFilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/graphloaderFilter.txt -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/graphloaderFlatmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/graphloaderFlatmap.txt -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/mapData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/mapData.csv -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/mapMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/mapMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/mapQueries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/mapQueries.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/mapSchema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/mapSchema.csv -------------------------------------------------------------------------------- /documentation-examples/MISC/filter_map_flatmap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/filter_map_flatmap/readme.md -------------------------------------------------------------------------------- /documentation-examples/MISC/metaProperty/data.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/metaProperty/data.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/metaProperty/queries.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/metaProperty/queries.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/metaProperty/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/metaProperty/readme.md -------------------------------------------------------------------------------- /documentation-examples/MISC/metaProperty/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/metaProperty/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/authorCity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/authorCity.csv -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/multiCardMap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/multiCardMap.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/query.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/query.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/readme.md -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/runDGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/runDGL.sh -------------------------------------------------------------------------------- /documentation-examples/MISC/multiCard/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/multiCard/schema.groovy -------------------------------------------------------------------------------- /documentation-examples/MISC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/MISC/readme.md -------------------------------------------------------------------------------- /documentation-examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/documentation-examples/readme.md -------------------------------------------------------------------------------- /dse-graph-frame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/README.md -------------------------------------------------------------------------------- /dse-graph-frame/Spark-shell-notes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/Spark-shell-notes.scala -------------------------------------------------------------------------------- /dse-graph-frame/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/build.sbt -------------------------------------------------------------------------------- /dse-graph-frame/friends-graph.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/friends-graph.groovy -------------------------------------------------------------------------------- /dse-graph-frame/src/main/scala/com/datastax/bdp/graphframe/example/RandomReceiver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/src/main/scala/com/datastax/bdp/graphframe/example/RandomReceiver.scala -------------------------------------------------------------------------------- /dse-graph-frame/src/main/scala/com/datastax/bdp/graphframe/example/StreamingExample.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/dse-graph-frame/src/main/scala/com/datastax/bdp/graphframe/example/StreamingExample.scala -------------------------------------------------------------------------------- /entity-resolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/README.md -------------------------------------------------------------------------------- /entity-resolution/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/build.sbt -------------------------------------------------------------------------------- /entity-resolution/data/add_1.csv: -------------------------------------------------------------------------------- 1 | 4,d 2 | 5,e 3 | 6,f 4 | 10,J 5 | 11,K 6 | 12,L 7 | 1,A 8 | 2,B 9 | 3,C -------------------------------------------------------------------------------- /entity-resolution/data/add_2.csv: -------------------------------------------------------------------------------- 1 | 7,j 2 | 8,h 3 | 9,i 4 | 1,A 5 | 2,B 6 | 3,C -------------------------------------------------------------------------------- /entity-resolution/data/initial.csv: -------------------------------------------------------------------------------- 1 | 1,A 2 | 2,B 3 | 3,C 4 | 4,D 5 | 5,E 6 | 6,F 7 | 7,G 8 | 8,H 9 | 9,I -------------------------------------------------------------------------------- /entity-resolution/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/schema.groovy -------------------------------------------------------------------------------- /entity-resolution/src/main/scala/com/datastax/bdp/er/EntityRecognitionExample.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/src/main/scala/com/datastax/bdp/er/EntityRecognitionExample.scala -------------------------------------------------------------------------------- /entity-resolution/src/main/scala/com/datastax/bdp/er/streaming/RandomReceiver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/src/main/scala/com/datastax/bdp/er/streaming/RandomReceiver.scala -------------------------------------------------------------------------------- /entity-resolution/src/main/scala/com/datastax/bdp/er/streaming/StreamingExample.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/entity-resolution/src/main/scala/com/datastax/bdp/er/streaming/StreamingExample.scala -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/JavaFluentAPI/README.md -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/build-example.sh: -------------------------------------------------------------------------------- 1 | mvn clean package 2 | -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/JavaFluentAPI/pom.xml -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/JavaFluentAPI/run-example.sh -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/src/main/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/JavaFluentAPI/src/main/java/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /fraud/JavaFluentAPI/src/main/java/com/datastax/fraud/FraudSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/JavaFluentAPI/src/main/java/com/datastax/fraud/FraudSample.java -------------------------------------------------------------------------------- /fraud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/README.md -------------------------------------------------------------------------------- /fraud/data/chargebacks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/chargebacks.csv -------------------------------------------------------------------------------- /fraud/data/creditCards.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/creditCards.csv -------------------------------------------------------------------------------- /fraud/data/customerAddresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customerAddresses.csv -------------------------------------------------------------------------------- /fraud/data/customerAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customerAddresses.json -------------------------------------------------------------------------------- /fraud/data/customerChargebacks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customerChargebacks.csv -------------------------------------------------------------------------------- /fraud/data/customerOrders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customerOrders.csv -------------------------------------------------------------------------------- /fraud/data/customerSessions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customerSessions.csv -------------------------------------------------------------------------------- /fraud/data/customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/customers.csv -------------------------------------------------------------------------------- /fraud/data/devices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/devices.csv -------------------------------------------------------------------------------- /fraud/data/orderChargebacks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/orderChargebacks.csv -------------------------------------------------------------------------------- /fraud/data/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/orders.csv -------------------------------------------------------------------------------- /fraud/data/sessions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/data/sessions.csv -------------------------------------------------------------------------------- /fraud/fraud-mapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/fraud-mapping.groovy -------------------------------------------------------------------------------- /fraud/fraud-mapping.groovy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/fraud-mapping.groovy.config -------------------------------------------------------------------------------- /fraud/mysql-import-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/mysql-import-data.sql -------------------------------------------------------------------------------- /fraud/mysql-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/mysql-schema.sql -------------------------------------------------------------------------------- /fraud/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/pom.xml -------------------------------------------------------------------------------- /fraud/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/schema.groovy -------------------------------------------------------------------------------- /fraud/src/main/scala/com/datastax/fraud/DataImport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/src/main/scala/com/datastax/fraud/DataImport.scala -------------------------------------------------------------------------------- /fraud/studio/1_of_4_Creating_DSE_Graph_and_Graph_Schema.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/1_of_4_Creating_DSE_Graph_and_Graph_Schema.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/1_of_4_Creating_DSE_Graph_and_Graph_Schema_2018-11-20_18_23_12.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/1_of_4_Creating_DSE_Graph_and_Graph_Schema_2018-11-20_18_23_12.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/2_of_4_Populating_and_Traversing_the_Graph.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/2_of_4_Populating_and_Traversing_the_Graph.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/2_of_4_Populating_and_Traversing_the_Graph_2018-11-20_18_23_15.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/2_of_4_Populating_and_Traversing_the_Graph_2018-11-20_18_23_15.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/3_of_4_Indexing_and_Traversing_Graph_Data.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/3_of_4_Indexing_and_Traversing_Graph_Data.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/3_of_4_Indexing_and_Traversing_Graph_Data_2018-11-20_18_23_06.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/3_of_4_Indexing_and_Traversing_Graph_Data_2018-11-20_18_23_06.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/4_of_4_Fraud_Scenarios.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/4_of_4_Fraud_Scenarios.studio-nb.tar -------------------------------------------------------------------------------- /fraud/studio/4_of_4_Fraud_Scenarios_2018-11-20_18_23_04.studio-nb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/fraud/studio/4_of_4_Fraud_Scenarios_2018-11-20_18_23_04.studio-nb.tar -------------------------------------------------------------------------------- /killrvideo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/.gitignore -------------------------------------------------------------------------------- /killrvideo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/README.md -------------------------------------------------------------------------------- /killrvideo/data/friendship.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/friendship.dat -------------------------------------------------------------------------------- /killrvideo/data/genres.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/genres.dat -------------------------------------------------------------------------------- /killrvideo/data/movies.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/movies.dat -------------------------------------------------------------------------------- /killrvideo/data/persons.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/persons.dat -------------------------------------------------------------------------------- /killrvideo/data/ratings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/ratings.dat -------------------------------------------------------------------------------- /killrvideo/data/users.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/data/users.dat -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo.sln -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/App/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/App/App.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/Enrichment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/Enrichment.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/Genre.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/KillrVideoGraphTraversalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/KillrVideoGraphTraversalExtensions.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/KillrVideoGraphTraversalSourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/KillrVideoGraphTraversalSourceExtensions.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/Kv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/Kv.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/Recommender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/Recommender.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/Dsl/__KillrVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/Dsl/__KillrVideo.cs -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/KillrVideo/KillrVideo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/KillrVideo/KillrVideo.csproj -------------------------------------------------------------------------------- /killrvideo/dsl/dotnet/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/dotnet/README.asciidoc -------------------------------------------------------------------------------- /killrvideo/dsl/java/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/README.asciidoc -------------------------------------------------------------------------------- /killrvideo/dsl/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/pom.xml -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/Enrichment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/Enrichment.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/Genre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/Genre.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/KV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/KV.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoApp.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoTraversalDsl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoTraversalDsl.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoTraversalSourceDsl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/KillrVideoTraversalSourceDsl.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/java/com/killrvideo/Recommender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/java/com/killrvideo/Recommender.java -------------------------------------------------------------------------------- /killrvideo/dsl/java/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/java/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /killrvideo/dsl/python/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | env 3 | *.pyc 4 | -------------------------------------------------------------------------------- /killrvideo/dsl/python/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/README.asciidoc -------------------------------------------------------------------------------- /killrvideo/dsl/python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/app.py -------------------------------------------------------------------------------- /killrvideo/dsl/python/killrvideo_dsl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /killrvideo/dsl/python/killrvideo_dsl/dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/killrvideo_dsl/dsl.py -------------------------------------------------------------------------------- /killrvideo/dsl/python/killrvideo_dsl/genre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/killrvideo_dsl/genre.py -------------------------------------------------------------------------------- /killrvideo/dsl/python/killrvideo_dsl/kv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/killrvideo_dsl/kv.py -------------------------------------------------------------------------------- /killrvideo/dsl/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/dsl/python/setup.py -------------------------------------------------------------------------------- /killrvideo/killrvideo-mapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/killrvideo-mapping.groovy -------------------------------------------------------------------------------- /killrvideo/killrvideo-mapping.groovy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/killrvideo-mapping.groovy.config -------------------------------------------------------------------------------- /killrvideo/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/schema.groovy -------------------------------------------------------------------------------- /killrvideo/verify.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/killrvideo/verify.csv -------------------------------------------------------------------------------- /london-tube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/README.md -------------------------------------------------------------------------------- /london-tube/Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/Schema.png -------------------------------------------------------------------------------- /london-tube/london-tube-map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/london-tube-map.pdf -------------------------------------------------------------------------------- /london-tube/london_edges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/london_edges.csv -------------------------------------------------------------------------------- /london-tube/london_tube.gryo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/london_tube.gryo -------------------------------------------------------------------------------- /london-tube/london_tube_mapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/london_tube_mapping.groovy -------------------------------------------------------------------------------- /london-tube/london_vertices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/london_vertices.csv -------------------------------------------------------------------------------- /london-tube/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/london-tube/schema.groovy -------------------------------------------------------------------------------- /northwind/Northwind_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/Northwind_Schema.png -------------------------------------------------------------------------------- /northwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/README.md -------------------------------------------------------------------------------- /northwind/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/code/pom.xml -------------------------------------------------------------------------------- /northwind/code/src/main/java/com/datastax/examples/northwind/Northwind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/code/src/main/java/com/datastax/examples/northwind/Northwind.java -------------------------------------------------------------------------------- /northwind/data/facebook_members.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/facebook_members.csv -------------------------------------------------------------------------------- /northwind/data/identity_c2fb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/identity_c2fb.csv -------------------------------------------------------------------------------- /northwind/data/isFriendsWith.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/isFriendsWith.csv -------------------------------------------------------------------------------- /northwind/data/isRelatedTo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/isRelatedTo.csv -------------------------------------------------------------------------------- /northwind/data/northwind.kryo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/northwind.kryo -------------------------------------------------------------------------------- /northwind/data/rated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/data/rated.csv -------------------------------------------------------------------------------- /northwind/datamodel-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/datamodel-screenshot.png -------------------------------------------------------------------------------- /northwind/northwind-mapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/northwind-mapping.groovy -------------------------------------------------------------------------------- /northwind/northwind-mapping.groovy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/northwind-mapping.groovy.config -------------------------------------------------------------------------------- /northwind/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/schema.groovy -------------------------------------------------------------------------------- /northwind/supplemental-data-mapping.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/supplemental-data-mapping.groovy -------------------------------------------------------------------------------- /northwind/supplemental-data-mapping.groovy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/supplemental-data-mapping.groovy.config -------------------------------------------------------------------------------- /northwind/verify.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/northwind/verify.csv -------------------------------------------------------------------------------- /paging-graph-results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/paging-graph-results/.gitignore -------------------------------------------------------------------------------- /paging-graph-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/paging-graph-results/README.md -------------------------------------------------------------------------------- /paging-graph-results/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/paging-graph-results/pom.xml -------------------------------------------------------------------------------- /paging-graph-results/src/main/java/com/datastax/graphpractice/example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/paging-graph-results/src/main/java/com/datastax/graphpractice/example/App.java -------------------------------------------------------------------------------- /pokemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/README.md -------------------------------------------------------------------------------- /pokemon/data/edges/category_has_pocket_type.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/category_has_pocket_type.csv -------------------------------------------------------------------------------- /pokemon/data/edges/item_has_category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/item_has_category.csv -------------------------------------------------------------------------------- /pokemon/data/edges/location_belongs_to_region.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/location_belongs_to_region.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_can_use_item.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_can_use_item.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_evolves_to.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_evolves_to.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_abilities.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_egg_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_egg_groups.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_location_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_location_index.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_moves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_moves.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_stats.csv -------------------------------------------------------------------------------- /pokemon/data/edges/pokemon_has_type.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/edges/pokemon_has_type.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/abilities.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/egg_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/egg_groups.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/genders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/genders.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/item_categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/item_categories.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/item_pockets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/item_pockets.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/items.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/locations.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/moves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/moves.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/pokemon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/pokemon.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/regions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/regions.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/stats.csv -------------------------------------------------------------------------------- /pokemon/data/vertices/types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/data/vertices/types.csv -------------------------------------------------------------------------------- /pokemon/graphloader_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/graphloader_command.txt -------------------------------------------------------------------------------- /pokemon/poke_mapper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/poke_mapper.groovy -------------------------------------------------------------------------------- /pokemon/poke_mapper.groovy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/poke_mapper.groovy.config -------------------------------------------------------------------------------- /pokemon/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/schema.groovy -------------------------------------------------------------------------------- /pokemon/verify.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/pokemon/verify.csv -------------------------------------------------------------------------------- /startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/startup -------------------------------------------------------------------------------- /traversal-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/README.md -------------------------------------------------------------------------------- /traversal-builder/bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/bin/run.sh -------------------------------------------------------------------------------- /traversal-builder/bin/traversal-builder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/bin/traversal-builder.jar -------------------------------------------------------------------------------- /traversal-builder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/pom.xml -------------------------------------------------------------------------------- /traversal-builder/src/main/java/com/datastax/examples/builder/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/java/com/datastax/examples/builder/App.java -------------------------------------------------------------------------------- /traversal-builder/src/main/java/com/datastax/examples/builder/AppState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/java/com/datastax/examples/builder/AppState.java -------------------------------------------------------------------------------- /traversal-builder/src/main/java/com/datastax/examples/builder/Commands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/java/com/datastax/examples/builder/Commands.java -------------------------------------------------------------------------------- /traversal-builder/src/main/java/com/datastax/examples/builder/ShortestPathTraversals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/java/com/datastax/examples/builder/ShortestPathTraversals.java -------------------------------------------------------------------------------- /traversal-builder/src/main/java/com/datastax/examples/builder/shortestPath/ShortestPathQueryBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/java/com/datastax/examples/builder/shortestPath/ShortestPathQueryBuilder.java -------------------------------------------------------------------------------- /traversal-builder/src/main/resources/graph.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/resources/graph.groovy -------------------------------------------------------------------------------- /traversal-builder/src/main/resources/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/resources/graph.txt -------------------------------------------------------------------------------- /traversal-builder/src/main/resources/schema.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/graph-examples/HEAD/traversal-builder/src/main/resources/schema.groovy --------------------------------------------------------------------------------