Handle write procedures in queries and update docs of properties iterator (#238)

This commit is contained in:
János Benjamin Antal
2021-09-30 15:11:51 +02:00
committed by Antonio Andelic
parent be9ed7e879
commit 721eefe263
9 changed files with 444 additions and 67 deletions

View File

@@ -192,6 +192,9 @@ class Properties:
"""
Iterate over the properties.
Doesnt return a dynamic view of the properties, but copies the
current properties.
Raise InvalidContextError.
Raise UnableToAllocateError if unable to allocate an iterator.
Raise DeletedObjectError if the object has been deleted.
@@ -210,6 +213,9 @@ class Properties:
"""
Iterate over property names.
Doesnt return a dynamic view of the property names, but copies the
name of the current properties.
Raise InvalidContextError.
Raise UnableToAllocateError if unable to allocate an iterator.
Raise DeletedObjectError if the object has been deleted.
@@ -223,6 +229,9 @@ class Properties:
"""
Iterate over property values.
Doesnt return a dynamic view of the property values, but copies the
value of the current properties.
Raise InvalidContextError.
Raise UnableToAllocateError if unable to allocate an iterator.
Raise DeletedObjectError if the object has been deleted.
@@ -543,6 +552,9 @@ class Vertex:
"""
Iterate over inbound edges of the vertex.
Doesnt return a dynamic view of the edges, but copies the
current inbound edges.
Raise InvalidContextError.
Raise UnableToAllocateError if unable to allocate an iterator.
Raise DeletedObjectError if `self` has been deleted.
@@ -562,6 +574,9 @@ class Vertex:
"""
Iterate over outbound edges of the vertex.
Doesnt return a dynamic view of the edges, but copies the
current outbound edges.
Raise InvalidContextError.
Raise UnableToAllocateError if unable to allocate an iterator.
Raise DeletedObjectError if `self` has been deleted.