Skip to content

Commit

Permalink
no reason to make it async, it contains no async code
Browse files Browse the repository at this point in the history
  • Loading branch information
runeanielsen committed Jan 31, 2025
1 parent c62fd74 commit 9173f8b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public SpecificationMutations(ILoggerFactory loggerFactory, ICommandDispatcher c

var logger = loggerFactory.CreateLogger(nameof(SpecificationMutations));

FieldAsync<CommandResultType>(
Field<CommandResultType>(
"importFromJsonString",
description: "Import specifications from json string",
arguments: new QueryArguments(
new QueryArgument<NonNullGraphType<StringGraphType>> { Name = "json" }
),
resolve: async context =>
resolve: context =>
{
try
{
Expand Down

0 comments on commit 9173f8b

Please sign in to comment.