You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Document
public class User {
@Id
private String id;
private String name;
}
@Edge
public class Friend {
@Id
private String id;
@From
private User user1;
@To
private User user2;
}
public interface UsersRepository extends ArangoRepository<User, String> {
}
On deleting user to delete also all edges
userRepository.deleteById("some-id");
The text was updated successfully, but these errors were encountered:
On deleting user to delete also all edges
The text was updated successfully, but these errors were encountered: