13 lines
351 B
C#
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));
|
|
}
|
|
}
|
|
} |