Created
December 1, 2018 08:41
-
-
Save MBehtemam/b3df0a5e08cb99519165aee1befa391f to your computer and use it in GitHub Desktop.
GraphQL Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace TodoAPI.Models | |
{ | |
public class GraphQLQuery | |
{ | |
public string OperationName { get; set; } | |
public string NamedQuery { get; set; } | |
public string Query { get; set; } | |
public string Variables { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment