using System; using GraphQL.Types; namespace xDataHelper.Providers.GraphQL { public class XStringGraphSchema : Schema { public XStringGraphSchema(IServiceProvider services) : base(services) { Query = (XStringGraphQuery)services.GetService(typeof(XStringGraphQuery)); } } }