Beispiel #1
0
 public void GivenIHaveAResolutionThatResolvesTheRootDataSourceObjectValueProperty()
 {
     currentResolution = new GraphQlFunctionResolution<RootDataSourceObject>(() => rootDataSource);
 }
Beispiel #2
0
 public GraphQlField(string name, GraphQlType type, GraphQlResolution resolution)
 {
     this.name = name;
     this.type = type;
     this.resolution = resolution;
 }
Beispiel #3
0
 public void GivenIHaveAResolutionThatResolvesTheRootDataSourceObjectOtherValueProperty()
 {
     currentResolution = new GraphQlPropertyResolution<RootDataSourceObject, string>(o => o.OtherProperty);
 }