using System; using GraphQL.Types; namespace xWebinarService.Providers.GraphQL { public class XWebinarGraphSchema : Schema { public XWebinarGraphSchema(IServiceProvider services) : base(services) { Query = (XWebinarGraphQuery)services.GetService(typeof(XWebinarGraphQuery)); } } }