Files
talk/client/coral-framework/graphql/fragments.js
T
2018-05-02 20:41:32 -03:00

34 lines
937 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',
'ChangePasswordResponse',
'UpdateEmailAddressResponse',
'AttachLocalAuthResponse'
),
};