package org.example.models; import lombok.Getter; import org.example.repositories.PostRepository; import org.springframework.beans.factory.annotation.Autowired; 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; private String author; private String imgUrl; public String getImgUrl() { return imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } @Relationship(type = "HAS_IMAGE", direction = Relationship.Direction.OUTGOING) private Image images = new Image(); @Relationship(type = "HAS_VIDEO", direction = Relationship.Direction.OUTGOING) private List