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
I created a Scene(TypedModel) and Video(TypedModel), where Scene includes a reference to Video (video: Video). Creating a scene using Scene(video=video, **other_kwargs).save() does not associate the video with the scene. Doing scene.video results in a blank video containing none of the attributes of the passed in video instance, and doing Scene.collection.filter(video=video).fetch() results in an empty list
The text was updated successfully, but these errors were encountered:
I created a
Scene(TypedModel)
andVideo(TypedModel)
, where Scene includes a reference to Video (video: Video
). Creating a scene usingScene(video=video, **other_kwargs).save()
does not associate the video with the scene. Doingscene.video
results in a blank video containing none of the attributes of the passed in video instance, and doingScene.collection.filter(video=video).fetch()
results in an empty listThe text was updated successfully, but these errors were encountered: