Skip to content

Instantly share code, notes, and snippets.

@iamdustan
Created October 5, 2015 14:38
Show Gist options
  • Save iamdustan/c398a7711734147e8375 to your computer and use it in GitHub Desktop.
Save iamdustan/c398a7711734147e8375 to your computer and use it in GitHub Desktop.
import {QL, dispatch} from 'redux-ql';
import {connect} from 'react-redux'
// before
connect(state => ({
user: {
name: state.user.name,
id: state.user.id
},
count: state.count
})(Component);
// after
connect(
QL`
user {
name,
id
},
count
`
), Component);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment