Guest User

Untitled

a guest
Dec 10th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. const PersonInteractionWithData = compose(
  2. graphql(InteractionQuery, {
  3. name: "InteractionQuery",
  4. options: props => {
  5. const user = props.user;
  6. return {
  7. variables: {
  8. id: user.id
  9. }
  10. };
  11. }
  12. })
  13. )(PersonInteraction);
  14.  
  15. export default compose(PersonInteractionWithData);
Add Comment
Please, Sign In to add comment