File size: 274 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// @flow
import type { GraphQLContext } from '../../';
import type { DBUser } from 'shared/types';
import { signUser } from 'shared/imgix';

export default (user: DBUser, _: any, ctx: GraphQLContext) => {
  const { profilePhoto } = signUser(user);
  return profilePhoto;
};