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
results in Cannot return null for non-nullable field BarObjectConnection.edges. This query succeeds if batching is disabled. I'm unsure as to why we'd be getting null for BarObjectConnection.edges, though. Any ideas as to what might be leading to this?
Versions:
SQLAlchemy==1.4.51
Flask-SQLAlchemy==2.5.1
graphene-sqlalchemy==3.0.0rc1
The text was updated successfully, but these errors were encountered:
odfalik
changed the title
Enabling field batching results in
SQAOT ORMField batching results in null result
Jan 26, 2024
odfalik
changed the title
SQAOT ORMField batching results in null result
ORMField batching results in null result
Jan 26, 2024
I'm trying to get batching set up on a 1:N relationship. Suppose a
Foo
has manyBar
s(I've also tried doing
batching=True
in theMeta
)Querying this resolver as such
results in
Cannot return null for non-nullable field BarObjectConnection.edges
. This query succeeds ifbatching
is disabled. I'm unsure as to why we'd be getting null forBarObjectConnection.edges
, though. Any ideas as to what might be leading to this?Versions:
The text was updated successfully, but these errors were encountered: