File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ class GraphDict(UserDict[str, Any]):
108108 stores the attributes in a collection with the graph name as the document key.
109109
110110 The default collection is called `_graphs`. However, if the
111- `DATABASE_GRAPH_COLLECTION_NAME ` environment variable is specified,
111+ `DATABASE_GRAPH_COLLECTION ` environment variable is specified,
112112 then that collection will be used. This variable is useful when the
113113 database user does not have permission to access the `_graphs`
114114 system collection.
@@ -144,7 +144,7 @@ def __init__(
144144 self .adb_graph = graph
145145 self .graph_name = graph .name
146146 self .collection_name = os .environ .get (
147- "DATABASE_GRAPHS_COLLECTION_NAME " , "_graphs"
147+ "DATABASE_GRAPH_COLLECTION " , "_graphs"
148148 )
149149
150150 self .graph_id = f"{ self .collection_name } /{ self .graph_name } "
You can’t perform that action at this time.
0 commit comments