Last active
November 22, 2016 12:53
-
-
Save nikolal/264cbb62cb8b85f2dbcce45d9e4e6449 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// working example | |
export class NewActivityRoute extends Relay.Route { | |
static routeName = 'NewActivityRoute'; | |
static queries = { | |
all_sports: Component => Relay.QL` | |
query { | |
viewer { | |
${Component.getFragment('all_sports')} | |
} | |
} | |
` | |
}; | |
} | |
export default Relay.createContainer(NewActivityPage, { | |
fragments: { | |
all_sports: () => Relay.QL` | |
fragment on Viewer{ | |
sports (last: 50){ | |
edges { | |
node { | |
id, | |
name { | |
FR, | |
EN, | |
DE, | |
ES | |
}, | |
logo | |
} | |
} | |
} | |
} | |
` | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment