14 lines
315 B
C#
14 lines
315 B
C#
using System;
|
|
using GraphQL.Types;
|
|
|
|
namespace xFileService.Providers.GraphQL
|
|
{
|
|
public class XFileGraphSchema : Schema
|
|
{
|
|
public XFileGraphSchema(IServiceProvider services) : base(services)
|
|
{
|
|
Query = (XFileGraphQuery)services.GetService(typeof(XFileGraphQuery));
|
|
}
|
|
|
|
}
|
|
} |