Skip to content

Commit bdde0dd

Browse files
committed
Version 1.0.4
* Update documentation in README.md. Added missing key "order" in result data.
1 parent fff9a9d commit bdde0dd

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.0.4
2+
3+
* Update documentation in README.md. Added missing key "order" in result data.
4+
15
# v1.0.3
26

37
* Allow continuing of read-in-iteration when the iterator is yielding a dict {"error", Exception}.

src/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ result: dict = {
286286
"status": "success|fail",
287287
"entity": "vertex|edge|timeseries|attachment|undefined",
288288
"action": "create|update|delete|undefined",
289+
"order": 0 # order of the commands in which they were sent to the graph.
289290
"data": {
290291
"<On success>": "<Data of the result of the command.>",
291292
"<On fail>": "<Dict with a copy of the original data of the command.>"
@@ -304,6 +305,7 @@ query_results: list = [
304305
"status": "success",
305306
"entity": "vertex",
306307
"action": "create",
308+
"order": 0,
307309
"data": {
308310
"ogit/_created-on": 1601030883647,
309311
"ogit/_xid": "machine4",
@@ -331,6 +333,7 @@ query_results: list = [
331333
"status": "success",
332334
"entity": "vertex",
333335
"action": "create",
336+
"order": 1,
334337
"data": {
335338
"ogit/_created-on": 1601030883847,
336339
"ogit/_xid": "machine5",
@@ -358,6 +361,7 @@ query_results: list = [
358361
"status": "fail",
359362
"entity": "vertex",
360363
"action": "create",
364+
"order": 2,
361365
"data": {
362366
"error": "HTTPError",
363367
"code": 500,
@@ -376,6 +380,7 @@ query_results: list = [
376380
"status": "fail",
377381
"entity": "vertex",
378382
"action": "create",
383+
"order": 3,
379384
"data": {
380385
"error": "HTTPError",
381386
"code": 500,

src/hiro_batch_client/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.3
1+
1.0.4

0 commit comments

Comments
 (0)