Moving comment id into query.

This commit is contained in:
David Jay
2017-02-28 12:02:51 -05:00
parent ab16e5bfe7
commit bf23fc2974
4 changed files with 35 additions and 7 deletions
+2 -1
View File
@@ -12,7 +12,7 @@ const {logout, showSignInDialog, requestConfirmEmail} = authActions;
const {addNotification, clearNotification} = notificationActions;
const {fetchAssetSuccess} = assetActions;
import {queryStream} from 'coral-framework/graphql/queries';
import {queryStream, commentQuery} from 'coral-framework/graphql/queries';
import {postComment, postFlag, postLike, postDontAgree, deleteAction} from 'coral-framework/graphql/mutations';
import {editName} from 'coral-framework/actions/user';
import {updateCountCache} from 'coral-framework/actions/asset';
@@ -251,5 +251,6 @@ export default compose(
postLike,
postDontAgree,
deleteAction,
commentQuery,
queryStream
)(Embed);