Files
xCategoryService/Providers/GraphQL/XSubCategoryGraphSchema.cs
T

14 lines
347 B
C#

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));
}
}
}