Files
xSaherElmAiApi/AI/DataHelper/GraphQL/XAiMessageGraphSchema.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 XAiMessageGraphSchema : Schema
{
public XAiMessageGraphSchema(IServiceProvider services) : base(services)
{
Query = (XAiMessageGraphQuery)services.GetService(typeof(XAiMessageGraphQuery));
}
}
}