You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-12
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,13 @@ You can install the latest version via [NuGet](https://www.nuget.org/packages/Gr
10
10
```
11
11
PM> Install-Package GraphQL.Upload.AspNetCore
12
12
```
13
-
Preview versions from the develop branch are available via [GitHub Packages](https://github.com/JannikLassahn/graphql-dotnet-upload/packages). Use these if you are using **ASP.NET Core 3**.
13
+
Preview versions from the develop branch are available via [GitHub Packages](https://github.com/JannikLassahn/graphql-dotnet-upload/packages).
14
14
15
15
## Usage
16
16
17
-
Register the middleware in your Startup.cs (in this case we're also using [graphql-dotnet/server](https://github.com/graphql-dotnet/server)).
17
+
Register the middleware in your Startup.cs.
18
+
19
+
This middleware implementation **only** parses multipart requests. That's why we're using additional middleware ([graphql-dotnet/server](https://github.com/graphql-dotnet/server)) to handle other request types.
This middleware implementation **only** parses multipart requests. The sample app uses additional middleware that handles other cases (e.g. `POST` with `application/json`).
78
-
79
-
80
-
## Roadmap
81
-
-[ ] Make sure the implementation behaves according to the spec
82
-
-[x] Add convenience extension methods for `ServiceCollection` and `ApplicationBuilder` that register the neccessary types
83
-
-[ ] Feature parity with the [reference implementation](https://github.com/graphql-dotnet/server)
0 commit comments