make metadata height and width nullable

post 965f7edd163a caused panic with null values for metadata height and
width
This commit is contained in:
realaravinth
2021-11-01 08:51:54 +05:30
parent e4a4e01618
commit 698b59fa90
2 changed files with 4 additions and 4 deletions

View File

@ -40,8 +40,8 @@ type MediaResource{
type MetaData {
id: String!
originalWidth: Int!
originalHeight: Int!
originalWidth: Int
originalHeight: Int
}