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

13 lines
331 B
C#

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