현재 구현은 모든 resolver에 superlifter를 타도록 구현이 되어있습니다. 이는 보통의 경우 좋지만 단일 부모일 때는 비효율적 쿼리를 만들기도 합니다. 그래서 아래를 제안합니다. 부모 N(Connection) : 자식 M -> superlifter O 부모 1(Node) : 자식 M -> superlifter X ``` if ancestor_has_connection? then superlifter-fetch else pure-fetch ```