Skip to content

Instantly share code, notes, and snippets.

@MBehtemam
Created December 1, 2018 08:41
Show Gist options
  • Save MBehtemam/b3df0a5e08cb99519165aee1befa391f to your computer and use it in GitHub Desktop.
Save MBehtemam/b3df0a5e08cb99519165aee1befa391f to your computer and use it in GitHub Desktop.
GraphQL Query
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