13 lines
334 B
C#
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));
|
|
}
|
|
}
|
|
} |