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
Which suggests that the reverse relation of child.parent hasn't been saved? I can't pass the parent's id into the children of the query obviously because it doesn't yet exist
I thought this might be related to #17 but I thought that it doesn't match the behaviour in the documentation, so maybe it's a bug
The text was updated successfully, but these errors were encountered:
Expected Behaviour:
The following example is given in the documentation, for nested fields using
many_to_one_extras
:When running the following query, I expect
Cat
s to be saved, and to have theowner
of the freshly created user objectCurrent Behaviour:
I have
Parent
andChild
models, where one Parent can have many childrenFor those models I've created the following types:
This to me seems to be the same as the example. When running a query passing:
I get the following error:
Which suggests that the reverse relation of
child.parent
hasn't been saved? I can't pass the parent'sid
into the children of the query obviously because it doesn't yet existI thought this might be related to #17 but I thought that it doesn't match the behaviour in the documentation, so maybe it's a bug
The text was updated successfully, but these errors were encountered: