graphcast.onto
¶
Core ontology and base classes for graph database operations.
This module provides the fundamental data structures and base classes used throughout the graph database system. It includes base classes for enums, dataclasses, and database-specific configurations.
Key Components
- BaseEnum: Base class for string-based enumerations with flexible membership testing
- BaseDataclass: Base class for dataclasses with JSON/YAML serialization support
- DBFlavor: Enum for supported database types (ArangoDB, Neo4j)
- ExpressionFlavor: Enum for expression language types
- AggregationType: Enum for supported aggregation operations
Example
class MyEnum(BaseEnum): ... VALUE1 = "value1" ... VALUE2 = "value2" "value1" in MyEnum # True "invalid" in MyEnum # False
AggregationType
¶
Bases: BaseEnum
Supported aggregation operations.
This enum defines the supported aggregation operations for data analysis.
Attributes:
Name | Type | Description |
---|---|---|
COUNT |
Count operation |
|
MAX |
Maximum value |
|
MIN |
Minimum value |
|
AVERAGE |
Average value |
|
SORTED_UNIQUE |
Sorted unique values |
Source code in graphcast/onto.py
BaseDataclass
dataclass
¶
Bases: JSONWizard
, Meta
, YAMLWizard
Base class for dataclasses with serialization support.
This class provides a foundation for dataclasses with JSON and YAML serialization capabilities. It includes methods for updating instances and accessing field members.
Attributes:
Name | Type | Description |
---|---|---|
marshal_date_time_as |
Format for datetime serialization |
|
key_transform_with_dump |
Key transformation style for serialization |
Source code in graphcast/onto.py
get_fields_members()
classmethod
¶
Get list of field members excluding private ones.
Returns:
Type | Description |
---|---|
list[str]: List of public field names |
update(other)
¶
Update this instance with values from another instance.
This method performs a deep update of the instance's attributes using values from another instance of the same type. It handles different types of attributes (sets, lists, dicts, dataclasses) appropriately.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
Another instance of the same type to update from |
required |
Raises:
Type | Description |
---|---|
TypeError
|
If other is not an instance of the same type |
Source code in graphcast/onto.py
BaseEnum
¶
Bases: StrEnum
Base class for string-based enumerations.
This class provides a foundation for string-based enums with flexible membership testing through the MetaEnum metaclass.
DBFlavor
¶
Bases: BaseEnum
Supported database types.
This enum defines the supported graph database types in the system.
Attributes:
Name | Type | Description |
---|---|---|
ARANGO |
ArangoDB database |
|
NEO4J |
Neo4j database |
Source code in graphcast/onto.py
ExpressionFlavor
¶
Bases: BaseEnum
Supported expression language types.
This enum defines the supported expression languages for querying and filtering data.
Attributes:
Name | Type | Description |
---|---|---|
ARANGO |
ArangoDB AQL expressions |
|
NEO4J |
Neo4j Cypher expressions |
|
PYTHON |
Python expressions |
Source code in graphcast/onto.py
MetaEnum
¶
Bases: EnumMeta
Metaclass for flexible enumeration membership testing.
This metaclass allows checking if a value is a valid member of an enum
using the in
operator, even if the value hasn't been instantiated as
an enum member.
Example
class MyEnum(BaseEnum): ... VALUE = "value" "value" in MyEnum # True "invalid" in MyEnum # False
Source code in graphcast/onto.py
__contains__(item, **kwargs)
¶
Check if an item is a valid member of the enum.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item
|
Value to check for membership |
required | |
**kwargs
|
Additional keyword arguments |
{}
|
Returns:
Name | Type | Description |
---|---|---|
bool |
True if the item is a valid enum member, False otherwise |