i am new for GraphQL and i am trying to convert the graphql schema into c# classes
GraphQL:- input Element{ id: Int name: String! }
C#:-
class Element
{
public int id {get;set;}
public string name {get;set;}
}
Is this possible. if yes then how, because manually creating the class is not solution in my case because i have big schema. also special paste is not working in visual studio. Thanks