Files
xAiModels/Providers/GraphQL/XAiConversationGraphSchema.cs
T
2026-07-26 21:19:40 +03:30

13 lines
351 B
C#

using System;
using GraphQL.Types;
namespace xAiModels.Providers.GraphQL
{
public class XAiConversationGraphSchema : Schema
{
public XAiConversationGraphSchema(IServiceProvider services) : base(services)
{
Query = (XAiConversationGraphQuery)services.GetService(typeof(XAiConversationGraphQuery));
}
}
}