We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 144c487 + 37d593b commit 33db456Copy full SHA for 33db456
examples/createSocialGraph.py
@@ -36,10 +36,10 @@ def __init__(self):
36
if self.db.hasGraph('social'):
37
raise Exception("The social graph was already provisioned! remove it first")
38
39
- self.female = self.db.createCollection("female")
40
- self.male = self.db.createCollection("male")
+ self.female = self.db.createCollection('Collection', "female")
+ self.male = self.db.createCollection('Collection', "male")
41
42
- self.relation = self.db.createCollection("relation")
+ self.relation = self.db.createCollection('Edges', "relation")
43
44
g = self.db.createGraph("social")
45
0 commit comments