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