Skip to content

Toxu4/RestToGraphQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RestToGraphQL

Build status Nuget (with prereleases) Nuget (with prereleases)

Getting started

Rest api adapter for GraphQL api.

Add package (or implement your own Query storage)

dotnet add package RestToGraphQL.FileQueryStorage --version 1.0.1-beta

Change Startup.cs

    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            //...            

            // Add RestToGraphQL proxy     
            services.AddRestToGraphQLCore();
            services.AddFileQueryStorage(settings => settings.Path = "./Queries");
            services.AddGraphQlClient(settings => settings.Endpoint = "http://localhost:5000/graphql");

            //...
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            //...

            app.UseRestToGraphQL();

            //...
        }
    }

Place your queries into "./Queries" directory.

Query example:

{
  "RequestMethod" : "GET",
  "RequestPattern" : "api/folders/?$",
  "QueryText" : "query getFolder($name: String){ folder(name: $name){ fullName content{ __typename ... on FolderType{ fullName } ... on FileType{ name }}}}",
  "ResultToken" : "folder"
}

Open

http://localhost:5000/api/folders?name=C:\

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published