Wrote graph filter types and serializers.

This commit is contained in:
Jay
2026-03-03 08:18:36 -05:00
parent f39f8786d9
commit eeb0ac9364
4 changed files with 658 additions and 2 deletions

View File

@@ -67,13 +67,13 @@ func NewTaggedRel(
func NewReferencesEventRel(
start *Node, end *Node, props Properties) (*Relationship, error) {
return NewRelationshipWithValidation(
"REFERENCES", "Event", "Event", start, end, props)
"REFERENCES", "Tag", "Event", start, end, props)
}
func NewReferencesUserRel(
start *Node, end *Node, props Properties) (*Relationship, error) {
return NewRelationshipWithValidation(
"REFERENCES", "Event", "User", start, end, props)
"REFERENCES", "Tag", "User", start, end, props)
}
// ========================================