Exemplo n.º 1
0
 public GetSchemaCompiler()
 {
     _schema = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.Schema));
 }
 public GetFieldSelectionCompiler()
 {
     _fieldSelection = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.FieldSelection));
 }
Exemplo n.º 3
0
 public GetObjectTypeCompiler()
 {
     _objectType = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.ObjectType));
 }
Exemplo n.º 4
0
 public GetOperationCompiler()
 {
     _operation = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.Operation));
 }
 public GetOutputFieldCompiler()
 {
     _outputField = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.Field));
 }
Exemplo n.º 6
0
 public GetQueryCompiler()
 {
     _query = ContextTypeInfo.GetProperty(
         nameof(IResolverContext.Document));
 }