'Check if 2 documents a connected through any edge in ArangoDB

@Document
public class Movie movie{
    @Id
    private String id;

    private String name;
}

@Document
public class Actor actor{
    @Id
    private String id;
     
    private String name;
}

How to check if 2 documents a connected through any edge in ArangoDB?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source