Files
talk/client/coral-framework/graphql/fragments.js
T

34 lines
952 B
JavaScript

import { createDefaultResponseFragments } from '../utils';
// fragments defined here are automatically registered.
export default {
...createDefaultResponseFragments(
'BanUsersResponse',
'ChangeUsernameResponse',
'CloseAssetResponse',
'CreateCommentResponse',
'CreateDontAgreeResponse',
'CreateFlagResponse',
'DeleteActionResponse',
'EditCommentResponse',
'IgnoreUserResponse',
'ModifyTagResponse',
'PostFlagResponse',
'SetCommentStatusResponse',
'SetUsernameResponse',
'SetUsernameStatusResponse',
'SetUserRoleResponse',
'SetUserSuspensionStatusResponse',
'StopIgnoringUserResponse',
'SuspendUserResponse',
'UnbanUserResponse',
'UnsuspendUserResponse',
'UpdateAssetSettingsResponse',
'UpdateAssetStatusResponse',
'UpdateSettingsResponse',
'RequestAccountDeletionResponse',
'RequestDownloadLinkResponse',
'CancelAccountDeletionResponse'
),
};