I am working in GraphQL for mutation query. I have created Argument in constructor way, I would like to convert this in chain method
Field<UserType>(
"authenticate",
arguments: new QueryArguments(
new QueryArgument<NonNullGraphType<UserInputType>> { Name = "user" }
),
Please help me to convert this query argument in chain method. Thanks