如何用变量组合查询片段

时间:2015-12-27 15:11:00

标签: javascript relayjs

我正在使用Relay和react-router-relay,并试图组成几个Relay容器。内部容器需要一个查询片段变量,该变量必须从路由器向下传递到其父容器。它没有得到这个变量。

以下是代码的外观:

//  A "viewer":

const UserQueries = { user: () => Relay.QL`query { user }` };

//  A route to compose a message:

<Route                                                                                                                                                                                  
  path='/compose/:id'                                                                                                                                                                          
  component={ ComposeContainer }                                                                                                                                                               
  queries={ UserQueries }                                                                                                                                                             
/>

//  A container:

const ComposeContainer = Relay.createContainer(
  Compose,
  {
    initialVariables: {
      id: null
    },                                                                                                                                                                                                                                                                                                                                                                                                  
    fragments: {                                                                                                                                                                                        
      user: () => Relay.QL`                                                                                                                                                                           
        fragment on User {                                                                                                                                                                          
          ${ BodyContainer.getFragment('user') }                                                                                                                                                           
          // other fragments                                                                                                                                              
        }                                                                                                                                                                                            
      `                                                                                                                                                                                               
     }
  }
);

//  And the composed container:

const BodyContainer = React.createContainer(
  Body,
  {
    initialVariables: {
      id: null
    },                                                                                                                                                                                                                                                                                                                                                                                                  
    fragments: {                                                                                                                                                                                        
      user: () => Relay.QL`                                                                                                                                                                           
        fragment on User {                                                                                                                                                                          
          draft(id: $id) {
            // fields
          }                                                                                                                                                    
        }                                                                                                                                                                                            
      `                                                                                                                                                                                               
     }
  }
);

BodyContainer内的草稿字段永远不会从路径参数中获取$idRelayContainer.getFragment()的签名似乎允许你传递参数和变量,但我不确定应该如何使用它。

1 个答案:

答案 0 :(得分:5)

user上的<ComposeContainer>片段必须是:

user: ({ id }) => Relay.QL`
  fragment on User {
    ${BodyContainer.getFragment('user', { id })}
    // other fragments
  }
`

此外,当您从<BodyContainer>撰写<ComposeContainer>时。您还需要传递id作为道具,例如

<BodyContainer id={this.props.id} />

另见https://github.com/facebook/relay/issues/309的其他讨论。