File size: 213 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
// @flow
import type { DBReaction } from 'shared/types';
import type { GraphQLContext } from '../../';

export default ({ userId }: DBReaction, _: any, { loaders }: GraphQLContext) =>
  loaders.user.load(userId);