using System; using GraphQL.Types; namespace xCategoryService.Providers.GraphQL { public class XSubCategoryGraphSchema : Schema { public XSubCategoryGraphSchema(IServiceProvider services) : base(services) { Query = (XSubCategoryGraphQuery)services.GetService(typeof(XSubCategoryGraphQuery)); } } }