using System; using GraphQL.Types; namespace xFileService.Providers.GraphQL { public class XFileGraphSchema : Schema { public XFileGraphSchema(IServiceProvider services) : base(services) { Query = (XFileGraphQuery)services.GetService(typeof(XFileGraphQuery)); } } }