Closed dzhavat closed 1 month ago
CI is running/has finished running commands for commit b1485d8c18ec60cd805bf61e2566b8b71ebba231. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.
π See all runs for this CI Pipeline Execution
Sent with π from NxCloud.
Description
Important: The changes made to "dh-graphql.providers.ts" were reverted in #3496 because we decided to fix the issue differently. Check the linked PR for more info.
DataHub
The
Organization
type policy fixes an issue with user invitation where after taking some user actions in a specific order, theOrganization
object resulted in a missing property because of how GraphQL merged two queries.The user actions are:
The reason for this was that two queries containing the "Organization" object were executed during those steps. In the first one (step 3), the "Organization" had a
domain
property among others, whereas in the second one (step 7), the "Organization" did NOT have thedomain
property.Before the changes in this PR, the
domain
property was overwritten with the data from the "Organization" property in the second query.Now, GraphQL should merge the "Organization" data coming from different queries.
References
0000