File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ def response_handler(resp: Response) -> bool:
107
107
return self ._execute (request , response_handler )
108
108
109
109
def vertex_collections (self ) -> Result [List [str ]]:
110
- """Return vertex collections in the graph that are not orphaned .
110
+ """Return vertex collections in the graph.
111
111
112
- :return: Names of vertex collections that are not orphaned .
112
+ :return: Names of vertex collections in Edge Definitions and Orphan Collections .
113
113
:rtype: [str]
114
114
:raise arango.exceptions.VertexCollectionListError: If retrieval fails.
115
115
"""
Original file line number Diff line number Diff line change @@ -330,6 +330,7 @@ def test_create_graph_with_edge_definition(db):
330
330
orphan_collections = [ovcol_name ],
331
331
)
332
332
assert edge_definition in new_graph .edge_definitions ()
333
+ assert ovcol_name in new_graph .vertex_collections ()
333
334
334
335
335
336
def test_vertex_management (fvcol , bad_fvcol , fvdocs ):
You can’t perform that action at this time.
0 commit comments