コード例 #1
0
 public QueryRootType(GraphQLSchema schema) : base("Root", "")
 {
     schema.AddKnownType(this);
     schema.Query(this);
 }
コード例 #2
0
 public TestSubscriptionType(string name, GraphQLSchema schema) : base(name, null, new InMemoryEventBus())
 {
     schema.AddKnownType(this);
 }
コード例 #3
0
 public TestMutationType(string name, GraphQLSchema schema) : base(name, null)
 {
     schema.AddKnownType(this);
 }
コード例 #4
0
 public TestCustomScalarType(GraphQLSchema schema) : base("Odd", null)
 {
     schema.AddKnownType(this);
 }
コード例 #5
0
 public TestInterfaceType(string name, GraphQLSchema schema) : base(name, null)
 {
     schema.AddKnownType(this);
 }
コード例 #6
0
 public TestInputObjectType(string name, GraphQLSchema schema) : base(name, null)
 {
     schema.AddKnownType(this);
 }