package org.example.models; import lombok.Getter; import org.springframework.data.neo4j.core.schema.GeneratedValue; import org.springframework.data.neo4j.core.schema.Id; import org.springframework.data.neo4j.core.schema.Node; import org.springframework.data.neo4j.core.schema.Relationship; import java.util.ArrayList; import java.util.List; import java.util.UUID; @Getter @Node public class Post { @Id @GeneratedValue private Long id; private String title; private String content; @Relationship(type = "HAS_IMAGE", direction = Relationship.Direction.OUTGOING) private List images = new ArrayList<>(); @Relationship(type = "HAS_VIDEO", direction = Relationship.Direction.OUTGOING) private List