Files
xWebinarService/DataHelper/GraphQL/XWebinarGraphSchema.cs
T

13 lines
330 B
C#

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