Closed mayteio closed 4 years ago
In the example app, PostCreate/PostEdit should have a popup that allows creation of a media item and attaching it to the post.
PostCreate
PostEdit
type Post @model { id: ID! title: String! content: String image: Media @connection } type Media @model { id: ID! name: String attachment: S3Object! } # S3Object minimum type type S3Object { key: String! identityId: String level: String }
Completed. See https://github.com/mayteio/ra-aws-amplify#a-product-with-an-image
In the example app,
PostCreate
/PostEdit
should have a popup that allows creation of a media item and attaching it to the post.