Handle write procedures in queries and update docs of properties iterator (#238)
This commit is contained in:
committed by
Antonio Andelic
parent
be9ed7e879
commit
721eefe263
@@ -192,6 +192,9 @@ class Properties:
|
||||
"""
|
||||
Iterate over the properties.
|
||||
|
||||
Doesn’t 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.
|
||||
|
||||
Doesn’t 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.
|
||||
|
||||
Doesn’t 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.
|
||||
|
||||
Doesn’t 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.
|
||||
|
||||
Doesn’t 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.
|
||||
|
||||
Reference in New Issue
Block a user