瀏覽代碼

query node - input schema for channel owner V

ondratra 4 年之前
父節點
當前提交
440336ad88
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      query-node/schema.graphql

+ 3 - 3
query-node/schema.graphql

@@ -50,7 +50,7 @@ type Membership @entity {
   "The type of subscription the member has purchased if any."
   subscription: BigInt
 
-  videos: [Video!] @derivedFrom(field: "ownerMember")
+  channels: [Channel!] @derivedFrom(field: "ownerMember")
 }
 
 "Category of media channel"
@@ -201,10 +201,10 @@ type Channel @entity {
   "Runtime entity identifier (EntityId)"
   id: ID!
 
-  "Member owning the video (if any)"
+  "Member owning the channel (if any)"
   ownerMember: Membership
 
-  "Curator group owning the video (if any)"
+  "Curator group owning the channel (if any)"
   ownerCuratorGroup: CuratorGroup
 
   category: ChannelCategory