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
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,22 +171,22 @@ networks:
171
171
```
172
172
### GraphQL Playground
173
173
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)
174
+
By default **Playground** respond at `http://localhost:5000/ui/playground` but is possible configure the host and many others details in [`../DependencyInjection/Extensions/ApplicationBuilderExtensions.cs`](./src/Dotnet6.GraphQL4.Store.WebAPI/DependencyInjection/Extensions/ApplicationBuilderExtensions.cs)
175
175
176
176
```c#
177
177
app.UseGraphQLPlayground(
178
-
new GraphQLPlaygroundOptions
179
-
{
180
-
Path = "/ui/playground",
181
-
BetaUpdates = true,
182
-
RequestCredentials = RequestCredentials.Omit,
183
-
HideTracingResponse = false,
184
-
EditorCursorShape = EditorCursorShape.Line,
185
-
EditorTheme = EditorTheme.Dark,
186
-
EditorFontSize = 14,
187
-
EditorReuseHeaders = true,
188
-
EditorFontFamily = "JetBrains Mono"
189
-
});
178
+
options: new()
179
+
{
180
+
BetaUpdates = true,
181
+
RequestCredentials = RequestCredentials.Omit,
182
+
HideTracingResponse = false,
183
+
EditorCursorShape = EditorCursorShape.Line,
184
+
EditorTheme = EditorTheme.Dark,
185
+
EditorFontSize = 14,
186
+
EditorReuseHeaders = true,
187
+
EditorFontFamily = "JetBrains Mono"
188
+
},
189
+
path: "/ui/playground");
190
190
```
191
191
192
192
### Health checks
@@ -248,8 +248,8 @@ The implementation of the `UnitOfWork` gives support to the `ExecutionStrategy`
248
248
```c#
249
249
public Task<Review> AddReviewAsync(ReviewModel reviewModel, CancellationToken cancellationToken)
0 commit comments