blob: 19c568d670ed0ba0221a18fd34a11aca38fb8eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import { Query } from 'react-apollo';
import gql from 'graphql-tag';
import PropTypes from 'prop-types';
const CURRENT_USER_QUERY = gql`
query {
me {
id
email
name
permissions
orders {
id
charge
total
}
cart {
id
quantity
item {
__typename
id
title
price
description
image
largeImage
}
}
}
}
`;
const User = props => (
<Query {...props} query={CURRENT_USER_QUERY}>
{result => props.children(result)}
</Query>
);
User.propTypes = {
children: PropTypes.func.isRequired,
};
export default User;
export { CURRENT_USER_QUERY };
|