Posts by LeoCastro87 • 21 points
1 post
-
2
votes0
answers38
viewsQ: C# in Graphql: directly include an object in Type and also Inputtype
I have a class of users: public class Usuario { public int id { get; set; } public string nome { get; set; } } To use the above object in Graphql, I wrote the following code: public class…