/** * Copyright 2004-present Facebook. All Rights Reserved. * */ 'use strict'; const graphql = require('graphql'); module.exports = { viewer1: graphql` fragment CompatUtil_viewer1 on Viewer { actor { id name } } `, viewer2: graphql` fragment CompatUtil_viewer2 on Viewer { actor { id } } `, };