-
Couldn't load subscription status.
- Fork 284
GraphQL Mutation support for datawarehouse. #1978
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
Conversation
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for making these changes. Looks good to me.
src/Service.Tests/SqlTests/GraphQLMutationTests/DwSqlGraphQLMutationTests.cs
Show resolved
Hide resolved
src/Service.Tests/SqlTests/GraphQLMutationTests/DwSqlGraphQLMutationTests.cs
Show resolved
Hide resolved
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 5 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even though its merged, submitting some pending comments.
| string entityName = outputType.TypeName(); | ||
| ObjectType _underlyingFieldType = GraphQLUtils.UnderlyingGraphQLEntityType(outputType); | ||
|
|
||
| if (GraphQLUtils.TryExtractGraphQLFieldModelName(_underlyingFieldType.Directives, out string? modelName)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See this is exactly what we can do in SqlQueryStructure too
|
Opened 2 closed conversations to resolve: |
## Why make this change? Fixing nit comments from earlier pr: #1978 ## What is this change? There were some nit comments to fix while adding implementation for mutation support for DW. ## How was this tested? Existing tests should cover as this pr only handles nit fixes.
Why make this change?
Issue: #1976.
GraphQL Mutations need to be supported for data warehouse. Reasons for listed changes listed in issue document.
This pr does not cover REST addition for insert/patch etc. Will be done in following pr's . issue tracking: #1982
What is this change?
How was this tested?
Performed integration tests:

Unit tests added for all dw scenarios.