Skip to content

Commit 31a37e8

Browse files
Merge branch 'release' into feature/graphql-4
2 parents 2d0aeaa + 49277c6 commit 31a37e8

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ networks:
171171
```
172172
### GraphQL Playground
173173
174-
By default **Playground** respond at `http://localhost:5000/ui/playground` but is possible configure the host and many others details in [`../...WebAPI/GraphQL/DependencyInjection/Configure.cs`](./src/Dotnet6.GraphQL4.Store.WebAPI/GraphQL/DependencyInjection/Configure.cs)
174+
By default **Playground** respond at `http://localhost:5000/ui/playground` but is possible configure the host and many others details in [`../....WebAPI/Graphs/Extensions/DependencyInjection/ApplicationBuilderExtensions.cs`](./src/Dotnet6.GraphQL4.Store.WebAPI/Graphs/Extensions/DependencyInjection/ApplicationBuilderExtensions.cs)
175175

176176
```c#
177177
app.UseGraphQLPlayground(
@@ -255,7 +255,7 @@ protected void AddError(string errorMessage, ValidationResult validationResult =
255255
}
256256
```
257257

258-
To the **GraphQL** the notification context delivery a `ExecutionErrors` that is propagated to `result` from execution by a personalised [`Executer`](./src/Dotnet6.GraphQL4.Store.WebAPI/GraphQL/Executers/StoreExecuter.cs):
258+
To the **GraphQL** the notification context delivery a `ExecutionErrors` that is propagated to `result` from execution by a personalised [`Executer`](./src/Dotnet6.GraphQL4.Store.WebAPI/Graphs/Executers/StoreGraphQLExecuter.cs):
259259

260260
```c#
261261
public override async Task<ExecutionResult> ExecuteAsync(string operationName, string query, Inputs variables, IDictionary<string, object> context, IServiceProvider requestServices, CancellationToken cancellationToken = new CancellationToken())
@@ -276,7 +276,7 @@ public override async Task<ExecutionResult> ExecuteAsync(string operationName, s
276276

277277
_It's no more necessary after version 4.2.0 from **GraphQL Server**. By default, the Service Provider is already being propagated._
278278

279-
~~Is necessary, in the same personalised [`Executer`](./src/Dotnet6.GraphQL4.Store.WebAPI/GraphQL/Executers/StoreExecuter.cs) define the _service provider_ that will be used from `resolvers` on `fields`:~~
279+
~~Is necessary, in the same personalised [`Executer`](./src/Dotnet6.GraphQL4.Store.WebAPI/Graphs/Executers/StoreGraphQLExecuter.cs) define the _service provider_ that will be used from `resolvers` on `fields`:~~
280280

281281
```c#
282282
var options = base.GetOptions(operationName, query, variables, context, cancellationToken);
@@ -710,18 +710,19 @@ ___
710710
* [FluentValidation](https://fluentvalidation.net/) - A popular .NET library for building strongly-typed validation rules;
711711
* [Bogus](https://github.com/bchavez/Bogus) - A simple and sane fake data generator for C#, F#, and VB.NET;
712712
* [Bootstrap](https://getbootstrap.com/) - The most popular HTML, CSS, and JS library in the world.
713+
* [Serilog](https://serilog.net/) - Serilog provides diagnostic logging to files, the console, and elsewhere.
713714

714715
## Contributing
715716

716717
Available soon!
717718

718719
## Versioning
719720

720-
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/AntonioFalcao/Dotnet6.GraphQL.WebApplication/tags).
721+
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/AntonioFalcao/Dotnet6.GraphQL4.WebApplication/tags).
721722

722723
## Authors
723724

724-
> See the list of [contributors](https://github.com/AntonioFalcao/Dotnet6.GraphQL.WebApplication/graphs/contributors) who participated in this project.
725+
> See the list of [contributors](https://github.com/AntonioFalcao/Dotnet6.GraphQL4.WebApplication/graphs/contributors) who participated in this project.
725726

726727
## License
727728

0 commit comments

Comments
 (0)