We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement and process class-based graph components. Old and new apis have to coexist to enable gradual migration.
field
field_link
Node
link[Node]
Interface
Union
typing.Annotated[Node1 | Node2 | Node3, hiku.union('UnionName')]
Directive
Option
Enum
typing.Annotated['Node1', hiku.lazy('.some_node')]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement and process class-based graph components. Old and new apis have to coexist to enable gradual migration.
field
as a function returning field context.field_link
as a function returning link context.Node
through either a base class or a class decorator.field
andfield_link
.Node
types. Maybe addlink[Node]
for a future.Node
to a regular one at graph initialization.Interface
through either a base class or a class decorator.Interface
to a regular one at graph initialization.Union
astyping.Annotated[Node1 | Node2 | Node3, hiku.union('UnionName')]
.Union
to a regular one at graph initialization.Directive
unchanged.Option
unchanged.Enum
unchanged.typing.Annotated['Node1', hiku.lazy('.some_node')]
.The text was updated successfully, but these errors were encountered: