Files
xSaherElmServices/Providers/XTestGraphSchema.cs
T
2026-05-09 22:22:02 +03:30

13 lines
303 B
C#

using System;
using GraphQL.Types;
namespace xServices.Providers
{
public class XTestGraphSchema : Schema
{
public XTestGraphSchema(IServiceProvider services) : base(services)
{
Query = (XTestGraphQuery)services.GetService(typeof(XTestGraphQuery));
}
}
}