graphdb
This module is a wrapper around a graph database and abstracts away all the database-specific features as various classes (GraphDB, Node, Edge, etc)
CacheDefault = TypeVar('CacheDefault')
module-attribute
CacheId = TypeVar('CacheId')
module-attribute
CacheKey = TypeVar('CacheKey')
module-attribute
CacheType = TypeVar('CacheType')
module-attribute
CacheValue = TypeVar('CacheValue')
module-attribute
EdgeCache = GraphCache[EdgeId, Edge]
module-attribute
EdgeCallbackFn = Callable[[Edge], None]
module-attribute
EdgeConnectionsList = Iterable[tuple[str, str]]
module-attribute
EdgeFilterFn = Callable[[Edge], TypeGuard[Edge]]
module-attribute
EdgeId = NewType('EdgeId', int)
module-attribute
EdgeType = TypeVar('EdgeType', bound='Edge')
module-attribute
NodeCache = GraphCache[NodeId, Node]
module-attribute
NodeCallbackFn = Callable[[Node], None]
module-attribute
NodeFilterFn = Callable[[Node], bool]
module-attribute
NodeId = NewType('NodeId', int)
module-attribute
NodeType = TypeVar('NodeType', bound='Node')
module-attribute
ProgressFn = Callable[[list[Node]], None]
module-attribute
QueryParamType = dict[str, Any]
module-attribute
RecordFn = Callable[[str, Iterator[Any]], None]
module-attribute
WalkMode = Literal['src', 'dst', 'both']
module-attribute
edge_cache = None
module-attribute
edge_registry = {}
module-attribute
graph_db_singleton = None
module-attribute
next_new_edge = cast(EdgeId, -1)
module-attribute
next_new_node = cast(NodeId, -1)
module-attribute
node_cache = None
module-attribute
node_label_registry = {}
module-attribute
node_registry = {}
module-attribute
Edge
Bases: BaseModel
An edge (a.k.a. Relationship or Connection) between two Nodes. An edge obect automatically implements all phases of CRUD in the underlying graph database. This is a directional relationship with a "source" and "destination". The source and destination properties are dynamically loaded through property getters when they are called, and may trigger a graph database query if they don't already exist in the edge cache.
Source code in roc/graphdb.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 |
|
allowed_connections = Field(exclude=True, default=None)
class-attribute
instance-attribute
dst
property
dst_id = Field(exclude=True)
class-attribute
instance-attribute
id
property
new
property
src
property
src_id = Field(exclude=True)
class-attribute
instance-attribute
type = Field(exclude=True)
class-attribute
instance-attribute
__del__()
Source code in roc/graphdb.py
351 352 353 |
|
__init__(**kwargs)
Source code in roc/graphdb.py
337 338 339 340 341 342 343 344 345 346 347 348 349 |
|
__init_subclass__(*args, **kwargs)
Source code in roc/graphdb.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
|
__repr__()
Source code in roc/graphdb.py
355 356 |
|
connect(src, dst, edgetype=None, db=None, **kwargs)
classmethod
Source code in roc/graphdb.py
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 |
|
create(e, *, db=None)
classmethod
Creates a new edge in the database. Typically only called by Edge.save
Parameters:
Name | Type | Description | Default |
---|---|---|---|
e
|
Self
|
The edge to create |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Raises:
Type | Description |
---|---|
EdgeCreateFailed
|
Failed to write the edge to the database, for eample if the ID is wrong. |
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
the edge that was created, with an updated identifier and other chagned attributes |
Source code in roc/graphdb.py
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
|
delete(e, *, db=None)
staticmethod
Deletes the specified edge from the database. If the edge has not already been persisted to the database, this marks the edge as deleted and returns.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
e
|
Edge
|
The edge to delete |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Source code in roc/graphdb.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 |
|
get(id, *, db=None)
classmethod
Looks up an Edge based on it's ID. If the Edge is cached, the cached edge is returned; otherwise the Edge is queried from the graph database based the ID provided and a new Edge is returned and cached.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
EdgeId
|
the unique identifier for the Edge |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
returns the Edge requested by the id |
Source code in roc/graphdb.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
|
get_cache()
classmethod
Source code in roc/graphdb.py
378 379 380 381 382 383 384 385 |
|
load(id, *, db=None)
classmethod
Loads an Edge from the graph database without attempting to check if the Edge already exists in the cache. Typically this is only called by Edge.get()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
EdgeId
|
the unique identifier of the Edge to fetch |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Raises:
Type | Description |
---|---|
EdgeNotFound
|
if the specified ID does not exist in the cache or the database |
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
returns the Edge requested by the id |
Source code in roc/graphdb.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
save(e, *, db=None)
classmethod
Saves the edge to the database. Calls Edge.create if the edge is new, or Edge.update if edge already exists in the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
e
|
Self
|
The edge to save |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
The same edge that was passed in, for convenience. The Edge may be updated with a |
Self
|
new identifier if it was newly created in the database. |
Source code in roc/graphdb.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
|
to_dict(e, include_type=False)
staticmethod
Convert a Edge to a Python dictionary
Source code in roc/graphdb.py
606 607 608 609 610 611 612 613 614 615 |
|
to_id(e)
staticmethod
Source code in roc/graphdb.py
617 618 619 620 621 622 |
|
update(e, *, db=None)
classmethod
Updates the edge in the database. Typically only called by Edge.save
Parameters:
Name | Type | Description | Default |
---|---|---|---|
e
|
Self
|
The edge to update |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
The same edge that was passed in, for convenience |
Source code in roc/graphdb.py
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
|
EdgeCreateFailed
Bases: Exception
Source code in roc/graphdb.py
292 293 |
|
EdgeDescription
Bases: ModelDescription
Source code in roc/graphdb.py
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 |
|
allowed_connections = cast(EdgeConnectionsList, pydantic_get_default(edge_cls, 'allowed_connections'))
instance-attribute
edge_cls = edge_cls
instance-attribute
edgetype = pydantic_get_default(edge_cls, 'type')
instance-attribute
name = edge_cls.__name__
instance-attribute
related_nodes = set()
instance-attribute
resolved_name
property
__init__(edge_cls)
Source code in roc/graphdb.py
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 |
|
__str__()
Source code in roc/graphdb.py
1806 1807 |
|
to_mermaid(indent=4)
Source code in roc/graphdb.py
1816 1817 1818 1819 1820 1821 1822 1823 |
|
EdgeFetchIterator
The implementation of an iterator for an EdgeList. Only intended to be used internally by EdgeList.
Source code in roc/graphdb.py
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 |
|
__edge_list = edge_list
instance-attribute
cur = 0
instance-attribute
__init__(edge_list)
Source code in roc/graphdb.py
676 677 678 |
|
__iter__()
Source code in roc/graphdb.py
680 681 |
|
__next__()
Source code in roc/graphdb.py
683 684 685 686 687 688 689 |
|
EdgeList
Bases: MutableSet[Edge | EdgeId]
, Mapping[int, Edge]
A list of Edges that is used by Node for keeping track of the connections it has. Implements interfaces for both a MutableSet (i.e. set()) and a Mapping (i.e. read-only list())
Source code in roc/graphdb.py
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 |
|
__edges = list(ids)
instance-attribute
__add__(l2)
Source code in roc/graphdb.py
717 718 |
|
__contains__(e)
Source code in roc/graphdb.py
709 710 711 712 713 714 715 |
|
__getitem__(key)
Source code in roc/graphdb.py
703 704 |
|
__init__(ids)
Source code in roc/graphdb.py
697 698 |
|
__iter__()
Source code in roc/graphdb.py
700 701 |
|
__len__()
Source code in roc/graphdb.py
706 707 |
|
add(e)
Adds a new Edge to the list
Source code in roc/graphdb.py
720 721 722 723 724 725 726 727 |
|
discard(e)
Removes an edge from the list
Source code in roc/graphdb.py
729 730 731 732 733 |
|
replace(old, new)
Replaces all instances of an old Edge with a new Edge. Useful for when an Edge is persisted to the graph database and its permanent ID is assigned
Source code in roc/graphdb.py
735 736 737 738 739 740 741 742 743 |
|
select(*, filter_fn=None, type=None, id=None)
Source code in roc/graphdb.py
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 |
|
EdgeNotFound
Bases: Exception
Source code in roc/graphdb.py
288 289 |
|
ErrorSavingDuringDelWarning
Bases: Warning
An error that occurs while saving a Node during del
Source code in roc/graphdb.py
61 62 |
|
FieldDescription
Source code in roc/graphdb.py
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 |
|
default_val = self.field_info.get_default(call_default_factory=True)
instance-attribute
default_val_str
property
Control over a reliable and reproducable default value for printing the schema.
exclude = self.field_info.exclude
instance-attribute
field_info = pydantic_get_field(model, fieldname)
instance-attribute
model = model
instance-attribute
name = fieldname
instance-attribute
type = clean_annotation(self.field_info.annotation)
instance-attribute
__init__(model, fieldname)
Source code in roc/graphdb.py
1679 1680 1681 1682 1683 1684 1685 |
|
__str__()
Source code in roc/graphdb.py
1687 1688 |
|
GraphCache
Bases: LRUCache[CacheKey, CacheValue]
, Generic[CacheKey, CacheValue]
A generic cache that is used for both the Node cache and the Edge cache
Source code in roc/graphdb.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
|
hits = 0
instance-attribute
misses = 0
instance-attribute
__init__(maxsize)
Source code in roc/graphdb.py
241 242 243 244 |
|
__str__()
Source code in roc/graphdb.py
246 247 |
|
clear()
Clears out all items from the cache and resets the cache statistics
Source code in roc/graphdb.py
276 277 278 279 280 281 282 |
|
get(key, /, default=None)
Uses the specified CacheKey to fetch an object from the cache.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
CacheKey
|
The key to use to fetch the object |
required |
default
|
CacheValue | None
|
If the object isn't found, the default value to return. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
CacheValue | None
|
CacheValue | None: The object from the cache, or None if not found. |
Source code in roc/graphdb.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
GraphDB
A graph database singleton. Settings for the graph database come from the config module.
Source code in roc/graphdb.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
client_name = 'roc-graphdb-client'
instance-attribute
closed = False
instance-attribute
db_conn = self.connect()
instance-attribute
encrypted = settings.db_conn_encrypted
instance-attribute
host = settings.db_host
instance-attribute
lazy = settings.db_lazy
instance-attribute
password = settings.db_password
instance-attribute
port = settings.db_port
instance-attribute
strict_schema = settings.db_strict_schema
instance-attribute
strict_schema_warns = settings.db_strict_schema_warns
instance-attribute
username = settings.db_username
instance-attribute
__init__()
Source code in roc/graphdb.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
close()
Closes the connection to the database
Source code in roc/graphdb.py
161 162 163 164 |
|
connect()
Connects to the database and returns a Connection object
Source code in roc/graphdb.py
146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
connected()
Returns True if the database is connected, False otherwise
Source code in roc/graphdb.py
142 143 144 |
|
raw_execute(query, *, params=None)
Executes a query with no return value. Used for 'SET', 'DELETE' or other queries without a 'RETURN' clause.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The Cypher query to execute |
required |
params
|
dict[str, Any] | None
|
Any parameters to pass to the query. Defaults to None. See also: https://memgraph.com/docs/querying/expressions#parameters |
None
|
Source code in roc/graphdb.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
raw_fetch(query, *, params=None)
Executes a Cypher query and returns the results as an iterator of dictionaries. Used for any query that has a 'RETURN' clause.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The Cypher query to execute |
required |
params
|
dict[str, Any] | None
|
Any parameters to pass to the query. Defaults to None. See also: https://memgraph.com/docs/querying/expressions#parameters |
None
|
Yields:
Type | Description |
---|---|
dict[str, Any]
|
Iterator[dict[str, Any]]: An iterator of the results from the database. |
Source code in roc/graphdb.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
|
singleton()
classmethod
This returns a singleton object for the graph database. If the singleton isn't created yet, it creates it.
Source code in roc/graphdb.py
166 167 168 169 170 171 172 173 174 175 176 |
|
to_networkx(db=None, node_ids=None, filter=None)
staticmethod
Converts the entire graph database (and local cache of objects) into a NetworkX graph
Parameters:
Name | Type | Description | Default |
---|---|---|---|
db
|
GraphDB | None
|
The database to convert to NetworkX. Defaults to the GraphDB singleton if not specified. |
None
|
node_ids
|
set[NodeId] | None
|
The NodeIDs to add to the NetworkX graph. Defaults to all IDs if not specified. |
None
|
filter
|
NodeFilterFn | None
|
A Node filter to filter out nodes before adding them to the NetworkX graph. Also useful for a callback that can be used for progress updates. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
DiGraph
|
nx.DiGraph: description |
Source code in roc/graphdb.py
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
GraphDBInternalError
Bases: Exception
An generic exception for unexpected errors
Source code in roc/graphdb.py
65 66 |
|
MethodDescription
Source code in roc/graphdb.py
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 |
|
model = model
instance-attribute
name = name
instance-attribute
params = self.signature.parameters
instance-attribute
return_type = clean_annotation(self.signature.return_annotation)
instance-attribute
signature = inspect.signature(getattr(model, name))
instance-attribute
uml_params
property
__init__(model, name)
Source code in roc/graphdb.py
1702 1703 1704 1705 1706 1707 |
|
ModelDescription
Source code in roc/graphdb.py
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 |
|
fields = [FieldDescription(model, fieldname) for fieldname in pydantic_get_fields(model)]
instance-attribute
method_names = get_methods(model) - get_methods(object) - get_methods(BaseModel) - get_methods(Node)
instance-attribute
methods = [MethodDescription(model, name) for name in self.method_names]
instance-attribute
model = model
instance-attribute
parent_class_names = get_node_parent_names(model)
instance-attribute
parents = [NodeDescription(node_registry[node_name]) for node_name in self.parent_class_names]
instance-attribute
__init__(model)
Source code in roc/graphdb.py
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 |
|
Node
Bases: BaseModel
An graph database node that automatically handles CRUD for the underlying graph database objects
Source code in roc/graphdb.py
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 |
|
dst_edges
property
All Edges that terminate at this Node
edges
property
All Edges attached to this Node, regardless of direction
id
property
The unique ID of the node
labels = Field(exclude=True, default_factory=set)
class-attribute
instance-attribute
neighbors
property
All adjacent nodes, regardless of edge direction
new
property
Whether or not this Node is new (not saved to the database yet)
predecessors
property
All Nodes connected with an directed Edge that ends with this node. Also referred to as an 'in-neighbor'.
src_edges
property
All Edges that originate at this Node
successors
property
All Nodes connected with an directed Edge that starts with this node. Also referred to as an 'out-neighbor'.
__del__()
Source code in roc/graphdb.py
860 861 862 863 864 865 866 867 |
|
__init__(**kwargs)
Source code in roc/graphdb.py
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 |
|
__init_subclass__(*args, **kwargs)
Source code in roc/graphdb.py
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 |
|
__repr__()
Source code in roc/graphdb.py
869 870 |
|
__str__()
Source code in roc/graphdb.py
872 873 |
|
all_ids(db=None)
staticmethod
Returns an exhaustive Set of all NodeIds that exist in both the graph database and the NodeCache
Source code in roc/graphdb.py
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 |
|
connect(src, dst, type=None, *, db=None)
classmethod
Connects two nodes (creates an Edge between two nodes)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
src
|
NodeId | Node
|
The Node to use at the start of the connection |
required |
dst
|
NodeId | Node
|
The Node to use at the end of the connection |
required |
type
|
str
|
The type of the edge to use for the connection |
None
|
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Edge |
Edge
|
The Edge that was created |
Source code in roc/graphdb.py
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 |
|
create(n, *, db=None)
classmethod
Creates the specified node in the GraphDB.
Calling save
is preferred to using this method so that the caller doesn't need to know the
state of the node.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
Self
|
the node to be created |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Raises:
Type | Description |
---|---|
NodeCreationFailed
|
if creating the node failed in the database |
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
the node that was passed in, albeit with a new |
Self
|
fields |
Source code in roc/graphdb.py
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 |
|
delete(n, *, db=None)
staticmethod
Source code in roc/graphdb.py
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 |
|
find(where, src_node_name='src', src_labels=set(), edge_name='e', edge_type='', params=dict(), db=None, load_edges=False, params_to_str=True)
classmethod
Source code in roc/graphdb.py
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 |
|
find_one(where, src_node_name='src', src_labels=set(), edge_name='e', edge_type='', params=dict(), db=None, load_edges=False, params_to_str=True, exactly_one=False)
classmethod
Finds a single Node.find results down to a single node. Raises an exception of the list contains more than one node.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nodes
|
Sequence[NodeType]
|
The list of nodes returned by Node.find |
required |
Raises:
Type | Description |
---|---|
Exception
|
Raised if there is more than 1 node in the list |
Returns:
Type | Description |
---|---|
Self | None
|
NodeType | None: Returns None if the list is empty, or the node in the list. |
Source code in roc/graphdb.py
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 |
|
get(id, *, db=None)
classmethod
Returns a cached node with the specified id. If no node is cached, it is retrieved from the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
NodeId
|
The unique identifier of the node to fetch |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
the cached or newly retrieved node |
Source code in roc/graphdb.py
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
|
get_cache()
classmethod
Source code in roc/graphdb.py
1163 1164 1165 1166 1167 1168 1169 1170 |
|
get_many(node_ids, *, batch_size=128, db=None, load_edges=False, return_nodes=False, progress_callback=None)
classmethod
Source code in roc/graphdb.py
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 |
|
load(id, *, db=None)
classmethod
Loads a node from the database. Use Node.get
or other methods instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
NodeId
|
The identifier of the node to fetch |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Raises:
Type | Description |
---|---|
NodeNotFound
|
The node specified by the identifier does not exist in the database |
GraphDBInternalError
|
If the requested ID returns multiple nodes |
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
The node from the database |
Source code in roc/graphdb.py
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 |
|
load_many(node_set, db=None, load_edges=False)
classmethod
Source code in roc/graphdb.py
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 |
|
mklabels(labels)
staticmethod
Converts a list of strings into proper Cypher syntax for a graph database query
Source code in roc/graphdb.py
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 |
|
save(n, *, db=None)
classmethod
Save a node to persistent storage
Writes the specified node to the GraphDB for persistent storage. If the node does not
already exist in storage, it is created via the create
method. If the node does exist, it
is updated via the update
method.
If the _no_save flag is True on the node, the save request will be silently ignored.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
Self
|
The Node to be saved |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
As a convenience, the node that was stored is returned. This may be useful |
Self
|
since the the id of the node may change if it was created in the database. |
Source code in roc/graphdb.py
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 |
|
to_dict(n, include_labels=False)
staticmethod
Convert a Node to a Python dictionary
Source code in roc/graphdb.py
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 |
|
to_id(n)
staticmethod
Source code in roc/graphdb.py
1392 1393 1394 1395 1396 1397 |
|
update(n, *, db=None)
classmethod
Update an existing node in the GraphDB.
Calling save
is preferred to using this method so that the caller doesn't need to know the
state of the node.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
Self
|
The node to be updated |
required |
db
|
GraphDB | None
|
the graph database to use, or None to use the GraphDB singleton |
None
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
The node that was passed in, for convenience |
Source code in roc/graphdb.py
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 |
|
walk(n, *, mode='both', edge_filter=None, node_filter=None, node_callback=None, _walk_history=None)
staticmethod
Source code in roc/graphdb.py
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 |
|
NodeCreationFailed
Bases: Exception
An exception raised when trying to create a Node in the graph database fails
Source code in roc/graphdb.py
774 775 |
|
NodeDescription
Bases: ModelDescription
Source code in roc/graphdb.py
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 |
|
name = node_cls.__name__
instance-attribute
__init__(node_cls)
Source code in roc/graphdb.py
1754 1755 1756 1757 |
|
__str__()
Source code in roc/graphdb.py
1759 1760 |
|
to_mermaid(indent=4)
Source code in roc/graphdb.py
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 |
|
NodeFetchIterator
The implementation of an iterator for an NodeList. Only intended to be used internally by NodeList.
Source code in roc/graphdb.py
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 |
|
cur = 0
instance-attribute
__init__(node_list)
Source code in roc/graphdb.py
1462 1463 1464 |
|
__iter__()
Source code in roc/graphdb.py
1466 1467 |
|
__next__()
Source code in roc/graphdb.py
1469 1470 1471 1472 1473 1474 1475 |
|
NodeList
Bases: MutableSet[Node | NodeId]
, Mapping[int, Node]
A list of Nodes. Implements interfaces for both a MutableSet (i.e. set()) and a Mapping (i.e. read-only dict())
Source code in roc/graphdb.py
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 |
|
__add__(l2)
Source code in roc/graphdb.py
1503 1504 |
|
__contains__(n)
Source code in roc/graphdb.py
1495 1496 1497 1498 1499 1500 1501 |
|
__getitem__(key)
Source code in roc/graphdb.py
1489 1490 |
|
__init__(ids)
Source code in roc/graphdb.py
1483 1484 |
|
__iter__()
Source code in roc/graphdb.py
1486 1487 |
|
__len__()
Source code in roc/graphdb.py
1492 1493 |
|
add(n)
Adds a new Node to the list
Source code in roc/graphdb.py
1506 1507 1508 1509 1510 1511 1512 1513 |
|
discard(n)
Removes an Node from the list
Source code in roc/graphdb.py
1515 1516 1517 1518 1519 |
|
select(*, filter_fn=None, labels=None)
Source code in roc/graphdb.py
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 |
|
NodeNotFound
Bases: Exception
An exception raised when trying to retreive a Node that doesn't exist.
Source code in roc/graphdb.py
770 771 |
|
Schema
Source code in roc/graphdb.py
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 |
|
edge_names = set(edge_registry.keys())
instance-attribute
edges = [EdgeDescription(edge_cls) for edge_cls in edge_registry.values()]
instance-attribute
node_names = set(node_registry.keys())
instance-attribute
nodes = [NodeDescription(node_cls) for node_cls in node_registry.values()]
instance-attribute
__init__(skip_validation=False)
Source code in roc/graphdb.py
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 |
|
to_mermaid()
Source code in roc/graphdb.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
|
validate()
classmethod
Source code in roc/graphdb.py
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 |
|
SchemaValidationError
Bases: Exception
Source code in roc/graphdb.py
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 |
|
errors = errors
instance-attribute
__init__(errors)
Source code in roc/graphdb.py
1555 1556 1557 1558 1559 1560 1561 1562 1563 |
|
StrictSchemaWarning
Bases: Warning
A warning that strict schema mode is enabled, but there was a violation
Source code in roc/graphdb.py
69 70 |
|
check_schema(edge_cls, clstype, src, dst, db)
Source code in roc/graphdb.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 |
|
clean_annotation(annotation)
Source code in roc/graphdb.py
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 |
|
get_methods(c)
cached
Source code in roc/graphdb.py
1673 1674 1675 |
|
get_next_new_edge_id()
Source code in roc/graphdb.py
296 297 298 299 300 301 |
|
get_next_new_node_id()
Source code in roc/graphdb.py
778 779 780 781 782 |
|
get_node_parent_names(model)
Source code in roc/graphdb.py
1644 1645 1646 1647 1648 1649 1650 1651 |
|
is_local(c, attr)
Source code in roc/graphdb.py
1634 1635 1636 1637 1638 1639 1640 1641 |
|
no_callback(_)
Helper function that accepts any value and returns None. Great for default callback functions.
Source code in roc/graphdb.py
55 56 57 58 |
|
pydantic_get_default(m, f)
Source code in roc/graphdb.py
1630 1631 |
|
pydantic_get_field(m, f)
Source code in roc/graphdb.py
1626 1627 |
|
pydantic_get_fields(m)
Source code in roc/graphdb.py
1622 1623 |
|
true_filter(_)
Helper function that accepts any value and returns True. Great for default filters.
Source code in roc/graphdb.py
48 49 50 51 52 |
|