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