Browse Source

query node - input schema for channel owner II

ondratra 4 năm trước cách đây
mục cha
commit
80e03de988
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      query-node/schema.graphql

+ 3 - 3
query-node/schema.graphql

@@ -199,7 +199,7 @@ type Channel @entity {
   "Runtime entity identifier (EntityId)"
   id: ID!
 
-  #"Owner of the channel"
+  "Owner of the channel"
   owner: ChannelOwner!
 
   category: ChannelCategory
@@ -253,10 +253,10 @@ type ChannelOwnerDao @variant {
 
 type CuratorGroup @entity {
   "Curators belonging to this group"
-  curratorIds: [BigInt!]
+  curatorIds: [BigInt!]
 
   "Is group active or not"
-  is_active: Boolean
+  isActive: Boolean
 }
 
 type VideoCategory @entity {