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