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
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.videoresults 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 list