Files
talk/client/coral-framework/graphql/fragments.js
T
2017-12-20 20:00:34 -03:00

30 lines
788 B
JavaScript

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