示例#1
0
 public ElasticGraphMutation(IRecepyService recepyService)
 {
     FieldAsync <Recepy>(
         "addRecepy",
         arguments: new QueryArguments(
             new QueryArgument <NonNullGraphType <RecepyInputType> > {
         Name = "recepy"
     }),
         resolve: async context =>
     {
         var recepy = context.GetArgument <RecepyModel>("recepy");
         return(await context.TryAsyncResolve(
                    async c => await recepyService.AddRecepy(recepy)));
     });
 }