-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: define graph data structure (#99)
- Loading branch information
1 parent
c59d2be
commit 436fc48
Showing
49 changed files
with
1,854 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
type: object | ||
description: GraphChild object | ||
properties: | ||
name: | ||
type: string | ||
maxLength: 100 | ||
description: Child node name of the graph | ||
example: Study of Note Apps | ||
relation: | ||
type: string | ||
description: Graph relation | ||
example: part of | ||
description: | ||
type: string | ||
maxLength: 400 | ||
description: Graph description | ||
example: This is a part of the overview section. | ||
children: | ||
type: array | ||
items: | ||
$ref: ./GraphChild.yaml | ||
required: | ||
- name | ||
- relation | ||
- description | ||
- children |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type: object | ||
description: Error Message for GraphChild object | ||
properties: | ||
name: | ||
type: string | ||
description: Error message for graph child name | ||
example: "graph child name is required, but got ''" | ||
relation: | ||
type: string | ||
description: Error message for graph child relation | ||
example: "graph child relation is required, but got ''" | ||
description: | ||
type: string | ||
description: Error message for graph child description | ||
example: "graph child description must be less than or equal to 400 bytes" | ||
children: | ||
$ref: ./GraphChildrenError.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
type: object | ||
description: Error Message for GraphChild list | ||
properties: | ||
message: | ||
type: string | ||
description: Error message for overall of children | ||
example: name of neighboring nodes must be unique, but got 'Background' duplicated | ||
items: | ||
type: array | ||
items: | ||
$ref: ./GraphChildError.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "13.22.1", | ||
"version": "13.29.1", | ||
"firestore": { | ||
"version": "1.19.8", | ||
"path": "firestore_export", | ||
|
Binary file modified
BIN
+0 Bytes
(100%)
fixtures/firestore_export/all_namespaces/all_kinds/all_namespaces_all_kinds.export_metadata
Binary file not shown.
Binary file modified
BIN
+1.75 KB
(110%)
fixtures/firestore_export/all_namespaces/all_kinds/output-0
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
fixtures/firestore_export/firestore_export.overall_export_metadata
Binary file not shown.
Oops, something went wrong.