Files
xCategoryService/Providers/GraphQL/XCategoryGraphSchema.cs
T
2026-06-01 01:04:55 +03:30

13 lines
334 B
C#

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