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
@@ -175,22 +175,22 @@ networks:
175
175
```
176
176
### GraphQL Playground
177
177
178
-
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)
178
+
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)
179
179
180
180
```c#
181
181
app.UseGraphQLPlayground(
182
-
new GraphQLPlaygroundOptions
183
-
{
184
-
Path = "/ui/playground",
185
-
BetaUpdates = true,
186
-
RequestCredentials = RequestCredentials.Omit,
187
-
HideTracingResponse = false,
188
-
EditorCursorShape = EditorCursorShape.Line,
189
-
EditorTheme = EditorTheme.Dark,
190
-
EditorFontSize = 14,
191
-
EditorReuseHeaders = true,
192
-
EditorFontFamily = "JetBrains Mono"
193
-
});
182
+
options: new()
183
+
{
184
+
BetaUpdates = true,
185
+
RequestCredentials = RequestCredentials.Omit,
186
+
HideTracingResponse = false,
187
+
EditorCursorShape = EditorCursorShape.Line,
188
+
EditorTheme = EditorTheme.Dark,
189
+
EditorFontSize = 14,
190
+
EditorReuseHeaders = true,
191
+
EditorFontFamily = "JetBrains Mono"
192
+
},
193
+
path: "/ui/playground");
194
194
```
195
195
196
196
### Health checks
@@ -252,8 +252,8 @@ The implementation of the `UnitOfWork` gives support to the `ExecutionStrategy`
252
252
```c#
253
253
public Task<Review> AddReviewAsync(ReviewModel reviewModel, CancellationToken cancellationToken)
0 commit comments