mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 16:42:05 +08:00
14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
import {graphql} from 'react-apollo';
|
|
import MY_COMMENT_HISTORY from './myCommentHistory.graphql';
|
|
import MY_IGNORED_USERS from './myIgnoredUsers.graphql';
|
|
|
|
export const myCommentHistory = graphql(MY_COMMENT_HISTORY, {});
|
|
|
|
export const myIgnoredUsers = graphql(MY_IGNORED_USERS, {
|
|
props: ({data}) => {
|
|
return ({
|
|
myIgnoredUsersData: data
|
|
});
|
|
}
|
|
});
|