Giter VIP home page Giter VIP logo

Comments (1)

mvollmary avatar mvollmary commented on May 30, 2024

Hi @dmartinpro,

First issue: Yes, your are right. The docs are wrong it has to be value.

Let me quickly write down your needed classes for your case:

Class A with a field annotated with @Id and the list of links annotated with @From (or @To depending on the direction of you edge). I highly suggest to set the param lazy to true otherwise you can easily run into infinity loops.

@Document
public class A {
  @Id private String id;
  @From(lazy = true) private List<Link> links;

  public A() {
    super();
  }
  public String getId() {
    return id;
  }
  public List<Link> getLinks() {
    return links;
  }
}

Class B only needs a field annotated with @Id.

@Document
public class B {
  @Id private String id;

  public B() {
    super();
  }
  public String getId() {
    return id;
  }
}

Class Link has to be annotated with @Edge and needs a field from type A annotated with @From and a field from type B annotated with @To. I also recommend here using lazy=true.

@Edge
public class Link {
  @Id private String id;
  @From(lazy = true) private final A a;
  @To(lazy = true) private final B b;

  public Link(final A a, final B b) {
    super();
    this.a = a;
    this.b = b;
  }
  public String getId() {
    return id;
  }
  public A getA() {
    return a;
  }
  public B getB() {
    return b;
  }
}

Usage (i.e. with ArangoOperations):

@Autowired
private ArangoOperations operations;

...

A a = new A();
operations.insert(a);

B b = new B();
operations.insert(b);

operations.insert(new Link(a, b));

Optional<A> find = operations.find(a.getId(), A.class);
find.ifPresent(e -> {
  e.getLinks();
  ...
});

from spring-data.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.