Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created April 12, 2016 03:36
Show Gist options
  • Select an option

  • Save clayallsopp/ce62a143abd49c9426ec7f7f54fa161c to your computer and use it in GitHub Desktop.

Select an option

Save clayallsopp/ce62a143abd49c9426ec7f7f54fa161c to your computer and use it in GitHub Desktop.
export default Relay.createContainer(StarWarsApp, {
fragments: {
factions: () => Relay.QL`
fragment on Faction @relay(plural: true) {
id,
factionId,
name,
ships(first: 10) {
edges {
node {
id
${StarWarsShip.getFragment('ship')}
}
}
}
${AddShipMutation.getFragment('faction')},
}
`,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment