Files
xSaherElmAiApi/AI/DataHelper/GraphQL/XAiProjectGraphSchema.cs
T
2026-04-24 00:33:50 +03:30

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));
}
}
}