Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(typo): schema-configuration.md #5699

Merged
merged 1 commit into from
Jan 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -67,7 +67,7 @@ In schema stitching type renames can be defined on the gateway:
services
.AddGraphQLServer()
.AddRemoteSchema(Products)
.AddRemoteSchema(Inventiory)
.AddRemoteSchema(Inventory)
.RenameType("Category","ProductCategory", Products);
```

Expand Down Expand Up @@ -136,7 +136,7 @@ In schema stitching field renames can be defined on the gateway:
services
.AddGraphQLServer()
.AddRemoteSchema(Products)
.AddRemoteSchema(Inventiory)
.AddRemoteSchema(Inventory)
.RenameField("Query", "categories", "productCategories", schemaName: Products)
```

Expand Down Expand Up @@ -182,7 +182,7 @@ If you want to remove a specific type from the schema you can also use `IgnoreTy
services
.AddGraphQLServer()
.AddRemoteSchema(Products)
.AddRemoteSchema(Inventiory)
.AddRemoteSchema(Inventory)
.IgnoreType("Category", schemaName: Products);
```

Expand Down Expand Up @@ -215,7 +215,7 @@ This can be useful when you want to merge root fields of domain services, but ig
services
.AddGraphQLServer()
.AddRemoteSchema(Products)
.AddRemoteSchema(Inventiory)
.AddRemoteSchema(Inventory)
.IgnoreField("Query", "categories", Products)
.IgnoreField("Query", "categories", Inventory);
```
Expand Down