add Data Support ...

This commit is contained in:
2025-12-06 22:23:17 +03:30
parent 15171511f5
commit 3ea6eb2012
13 changed files with 226 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using GraphQL.Types;
namespace xFileService.DataHelper.GraphQL
{
public class XFileGraphSchema : Schema
{
public XFileGraphSchema(IServiceProvider services) : base(services)
{
Query = (XFileGraphQuery)services.GetService(typeof(XFileGraphQuery));
}
}
}