Created
November 22, 2016 12:49
-
-
Save nikolal/b3bdfcbddc29d9ecec2a56c037fae29c 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
// NOT WORKING EXAMPLE | |
export class SportunityPageRoute extends Relay.Route { | |
static routeName = 'SportunityPageRoute'; | |
static queries = { | |
all_sportunities: Component => Relay.QL` | |
query { | |
viewer { | |
${Component.getFragment('all_sportunities')} | |
} | |
} | |
` | |
}; | |
} | |
export default Relay.createContainer(SportunityPage, { | |
fragments: { | |
all_sportunities: () => Relay.QL`fragment on Viewer{ | |
sportunities (last: 50) { | |
edges{ | |
node{ | |
id, | |
title, | |
description, | |
randomDate, | |
nbLikes, | |
participants{ | |
id, | |
firstName, | |
lastName, | |
pseudo | |
}, | |
waiting{ | |
id, | |
firstName, | |
lastName, | |
pseudo, | |
}, | |
canceling{ | |
id, | |
firstName, | |
lastName, | |
pseudo, | |
}, | |
chat, | |
organizers { | |
id, | |
isAdmin, | |
organizer { | |
id, | |
firstName, | |
lastName, | |
pseudo, | |
feedbacks { | |
count | |
averageRating | |
} | |
} | |
}, | |
participantRange{ | |
from | |
to | |
}, | |
levelRestriction { | |
from | |
to | |
}, | |
sexRestriction, | |
ageRestriction { | |
from | |
to | |
}, | |
price { | |
currency | |
cents | |
}, | |
address { | |
country | |
city | |
zip | |
position { | |
lat | |
lng | |
} | |
}, | |
sport { | |
id, | |
levels{ | |
EN { | |
name | |
} | |
} | |
name { | |
FR | |
EN | |
DE | |
ES | |
}, | |
logo, | |
positions { | |
FR | |
EN | |
DE | |
ES | |
} | |
} | |
} | |
} | |
} | |
}` | |
} | |
}); |
Author
nikolal
commented
Nov 22, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment