Browse Source

query-node: make coverPhotoUrl and avatarPhotoUrl fields nullable

metmirr 4 years ago
parent
commit
db6c639004
1 changed files with 2 additions and 2 deletions
  1. 2 2
      query-node/schema.graphql

+ 2 - 2
query-node/schema.graphql

@@ -90,10 +90,10 @@ type Channel @entity {
   description: String!
 
   "Url for Channel's cover (background) photo. Recommended ratio: 16:9."
-  coverPhotoURL: String!
+  coverPhotoUrl: String
 
   "Channel's avatar photo."
-  avatarPhotoURL: String!
+  avatarPhotoUrl: String
 
   "Flag signaling whether a channel is public."
   isPublic: Boolean!