We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재 구현은 모든 resolver에 superlifter를 타도록 구현이 되어있습니다. 이는 보통의 경우 좋지만 단일 부모일 때는 비효율적 쿼리를 만들기도 합니다. 그래서 아래를 제안합니다.
부모 N(Connection) : 자식 M -> superlifter O 부모 1(Node) : 자식 M -> superlifter X
if ancestor_has_connection? then superlifter-fetch else pure-fetch
The text was updated successfully, but these errors were encountered:
No branches or pull requests
현재 구현은 모든 resolver에 superlifter를 타도록 구현이 되어있습니다. 이는 보통의 경우 좋지만 단일 부모일 때는 비효율적 쿼리를 만들기도 합니다. 그래서 아래를 제안합니다.
부모 N(Connection) : 자식 M -> superlifter O
부모 1(Node) : 자식 M -> superlifter X
The text was updated successfully, but these errors were encountered: