中继现代共享片段

时间:2019-07-16 00:08:43

标签: relay

我有一个Relay变异,但是如果我手动包含那些具有要散布的片段的组件,我就只能使它工作。

import CloseCommButton from '../../components/Communication/CloseCommButton'
import CommsTable from '../../components/Communication/CommsTable'


const mutation = graphql`
  mutation CloseCommunicationMutation(
    $input: CommunicationCloseInput!
    $commType: CommunicationType
  ) {
    communicationClose(input: $input) {
      communication {
        canClose
        ...CloseCommButton_communication
      }
      contractByContractId {
        ...CommsTable_contract @arguments(commType: $commType)
      }
    }
  }

是否有一种无需导入父组件即可共享这些片段的方法?

0 个答案:

没有答案