-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tidied tests and broke graphql out - added new graph func and tests * Added stubs for remote graph/node/edge * Rejigged tests, added delete to python edge * More test packaging Fixed missing DTime on python properties Fixed Prop->Graphql parsing Added add_constant_properties and update_constant_properties to graph * added properties and new make function * Renamed make tidy * Add add_node * Add add_edge delete_edge * Added all node functions * finished edges * Added new classes to docs and added some helpers in make * fixed to_json * Fixed issue with inner maps * Fixed batch nodes * finished add edges * Fixed docs, better error messages * Fixed issue with importing node/edge with int ID --------- Co-authored-by: Ben Steer <[email protected]> Co-authored-by: Ben Steer <[email protected]> Co-authored-by: Ben Steer <[email protected]> Co-authored-by: Ben Steer <[email protected]>
- Loading branch information
1 parent
b371137
commit a6eb846
Showing
55 changed files
with
6,750 additions
and
4,171 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
============ | ||
Remote Graph | ||
============ | ||
|
||
.. autoclass:: raphtory.graphql.RemoteGraph | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: raphtory.graphql.RemoteNode | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: raphtory.graphql.RemoteEdge | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: raphtory.graphql.RemoteNodeAddition | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: raphtory.graphql.RemoteEdgeAddition | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: raphtory.graphql.RemoteUpdate | ||
:autosummary: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
Oops, something went wrong.