Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed incomplete create index command and added semi colons #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions cypher/import.cypher
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
// Create indexes for faster lookup
CREATE INDEX ON :Category(categoryName);
CREATE INDEX Category_categoryName FOR (c:Category) ON (c.categoryName)
CREATE INDEX SubCategory_subCategoryName FOR (s:SubCategory) ON (s.subCategoryName)
CREATE INDEX Vendor_vendorName FOR (v:Vendor) ON (v.vendorName)
CREATE INDEX Product_productName FOR (p:Product) ON (p.productName)
CREATE INDEX Category_categoryName FOR (c:Category) ON (c.categoryName);
CREATE INDEX SubCategory_subCategoryName FOR (s:SubCategory) ON (s.subCategoryName);
CREATE INDEX Vendor_vendorName FOR (v:Vendor) ON (v.vendorName);
CREATE INDEX Product_productName FOR (p:Product) ON (p.productName);

// Create constraints
CREATE CONSTRAINT Order_orderId IF NOT EXISTS FOR (o:Order) REQUIRE o.orderId IS NODE KEY;
Expand All @@ -27,7 +26,7 @@ CALL {
LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/sfrechette/adventureworks-neo4j/master/data/vendors.csv" as row
CALL {
WITH row
CREATE (:Vendor {vendorName: row.VendorName, vendorNumber: row.AccountNumber, vendorId: row.VendorID, creditRating: row.CreditRating, activeFlag: row.ActiveFlag});
CREATE (:Vendor {vendorName: row.VendorName, vendorNumber: row.AccountNumber, vendorId: row.VendorID, creditRating: row.CreditRating, activeFlag: row.ActiveFlag})
} IN TRANSACTIONS OF 1000 ROWS

// Create employees
Expand Down