Browse Source

query node - input schema for channel owner II

ondratra 4 years ago
parent
commit
80e03de988
1 changed files with 3 additions and 3 deletions
  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 {