13 lines
332 B
C#
13 lines
332 B
C#
using System;
|
|
using GraphQL.Types;
|
|
|
|
namespace xAiApi.AI.DataHelper.GraphQL
|
|
{
|
|
public class XAiProjectGraphSchema : Schema
|
|
{
|
|
public XAiProjectGraphSchema(IServiceProvider services) : base(services)
|
|
{
|
|
Query = (XAiProjectGraphQuery)services.GetService(typeof(XAiProjectGraphQuery));
|
|
}
|
|
}
|
|
} |