13 lines
303 B
C#
13 lines
303 B
C#
using System;
|
|
using GraphQL.Types;
|
|
|
|
namespace xAiApi.Data.GraphQL
|
|
{
|
|
public class XTestGraphSchema : Schema
|
|
{
|
|
public XTestGraphSchema(IServiceProvider services) : base(services)
|
|
{
|
|
Query = (XTestGraphQuery)services.GetService(typeof(XTestGraphQuery));
|
|
}
|
|
}
|
|
} |