Browse Source

query node - input schema VideoMetadata rename to VideoMediaMetadata

ondratra 4 years ago
parent
commit
b4e331c68a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      query-node/schema.graphql

+ 3 - 3
query-node/schema.graphql

@@ -298,7 +298,7 @@ type Video @entity {
   media: Asset
 
   "Video file metadata"
-  metadata: VideoMetadata
+  mediaMetadata: VideoMediaMetadata
 
   happenedIn: Block!
 
@@ -308,7 +308,7 @@ type Video @entity {
   featured: FeaturedVideo @derivedFrom(field: "video")
 }
 
-type VideoMetadata @entity {
+type VideoMediaMetadata @entity {
   "Runtime entity identifier (EntityId)"
   id: ID!
 
@@ -324,7 +324,7 @@ type VideoMetadata @entity {
   "Video media size in bytes"
   size: Int
 
-  video: Video @derivedFrom(field: "metadata")
+  video: Video @derivedFrom(field: "mediaMetadata")
 
   happenedIn: Block!
 }