How do I use the new framework and the File Manage...
# prisma-whats-new
d
How do I use the new framework and the File Management? eg.
Copy code
type Post @model {
  id: ID! @isUnique
  title: String!
  image: File #???? 
}
Do I have to create the File Type?
👍 1
a
As soon as you add the File type to your types.graphql, the File API will be available, as well as the Image API for retrieval.
👍 1
d
Thanks
👍 1
👍🏻 1