コード例 #1
0
ファイル: ChatSchema.cs プロジェクト: ajzeffer/graphql-demo
 public ChatSchema(IChat chat, IServiceProvider provider) : base(provider)
 {
     Query        = new ChatQuery(chat);
     Mutation     = new ChatMutation(chat);
     Subscription = new ChatSubscriptions(chat);
 }
コード例 #2
0
 public ChatSchema(IChat chat)
 {
     Query        = new ChatQuery(chat);
     Mutation     = new ChatMutation(chat);
     Subscription = new ChatSubscriptions(chat);
 }