Skip to content

Commit

Permalink
Minor Fusion CommandLine Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Jul 5, 2023
1 parent 0d3a624 commit 1c673c9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ private static async Task ExecuteAsync(

await ReplaceSubgraphConfigInSubgraphPackageAsync(
configFile.FullName,
config with { Clients = clients },
cancellationToken);
config with { Clients = clients });
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ private static async Task ExecuteAsync(

await ReplaceSubgraphConfigInSubgraphPackageAsync(
configFile.FullName,
config with { Name = subgraphName },
cancellationToken);
config with { Name = subgraphName });
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ private static async Task ExecuteAsync(

await ReplaceSubgraphConfigInSubgraphPackageAsync(
configFile.FullName,
config with { Clients = clients },
cancellationToken);
config with { Clients = clients });
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ namespace HotChocolate.Fusion.CommandLine.Helpers;

internal static class PackageHelper
{
private const string _fusionKind = "urn:hotchocolate:fusion:graph";
private const string _fusionId = "fusion";
private const string _schemaKind = "urn:graphql:schema";
private const string _schemaId = "schema";
private const string _schemaExtensionKind = "urn:graphql:schema-extensions";
Expand Down

0 comments on commit 1c673c9

Please sign in to comment.