Commit b51d1e56 authored by Paul Gascou-Vaillancourt's avatar Paul Gascou-Vaillancourt
Browse files

Restore __typename field

parent f5ffc119
...@@ -78,10 +78,12 @@ export const updateSiteProfilesStatuses = ({ fullPath, normalizedTargetUrl, stat ...@@ -78,10 +78,12 @@ export const updateSiteProfilesStatuses = ({ fullPath, normalizedTargetUrl, stat
fragment: gql` fragment: gql`
fragment profile on DastSiteProfile { fragment profile on DastSiteProfile {
validationStatus validationStatus
__typename
} }
`, `,
data: { data: {
validationStatus: status, validationStatus: status,
__typename: 'DastSiteProfile',
}, },
}); });
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment