We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc8aac commit ac316ffCopy full SHA for ac316ff
graphene_sqlalchemy/types.py
@@ -245,12 +245,8 @@ def batch_load_fn(self, parents): # pylint: disable=method-hidden
245
when callling `all()`, we skip the first `SELECT` statement
246
and jump right before the `selectin` loader is called.
247
To accomplish this, we have to construct objects that are
248
- normally built in the first part of the query and then
249
- call then invoke the `selectin` post loader.
250
-
251
- For this reason, if you're trying to understand the steps below,
252
- it's easier to start at the bottom (ie `post_load.invoke`) and
253
- go backward.
+ normally built in the first part of the query in order
+ to call directly `SelectInLoader._load_for_path`.
254
"""
255
session = Session.object_session(parents[0])
256
0 commit comments