Files
xCategoryService/Providers/GraphQL/XSubCategoryGraphSchema.cs
T
2026-06-01 15:48:33 +03:30

13 lines
346 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));
}
}
}