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
To prevent the creation of many duplicate intermediates tables when linking deep nested relationships, we should use a dependency graph.
For instance, if you were to link public__articles.comments.author and public__articles.comments, the table public__articles and public__comments would appear multiple time in the query. They could only appear once, reducing the query complexity
The text was updated successfully, but these errors were encountered:
To prevent the creation of many duplicate intermediates tables when linking deep nested relationships, we should use a dependency graph.
For instance, if you were to link
public__articles.comments.author
andpublic__articles.comments
, the tablepublic__articles
andpublic__comments
would appear multiple time in the query. They could only appear once, reducing the query complexityThe text was updated successfully, but these errors were encountered: