From 7bdb74bba80b19336d8423f3e0d55a7c934ff8a1 Mon Sep 17 00:00:00 2001 From: Joerg Schad Date: Thu, 2 Feb 2023 08:35:42 +0000 Subject: [PATCH] Added EnterpriseGraph example. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2a8f2c81..f57a1fad 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,11 @@ db = client.db("test", username="root", password="passwd") # Create a new graph named "school". graph = db.create_graph("school") +# Create a new EnterpriseGraph [Enterprise Edition] +eegraph = db.create_graph( + name="school", + smart=True) + # Create vertex collections for the graph. students = graph.create_vertex_collection("students") lectures = graph.create_vertex_collection("lectures")