-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix capitalization of config fields after refactor (#69)
After the big codestyle refactor in PR #64 capitalization of public fields was changed. This had the unintended effect that our committed configs were not correct anymore. This addresses that by updating the configs as well. Co-authored-by: Sean Leonard <[email protected]>
- Loading branch information
1 parent
7990a89
commit 3e4eac5
Showing
3 changed files
with
21 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
{ | ||
"GraphQLSchema": "", | ||
"Resolvers": [ | ||
"QueryResolvers": [ | ||
{ | ||
"engine": "", | ||
"id": "", | ||
"databaseName": "", | ||
"containerName": "", | ||
"tableName": "", | ||
"parametrizedQuery": "" | ||
"Id": "", | ||
"DatabaseName": "", | ||
"ContainerName": "", | ||
"ParametrizedQuery": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters