Skip to content

Instantly share code, notes, and snippets.

@4knort
Created February 15, 2018 14:14
Show Gist options
  • Save 4knort/41a1b6607b209d8d17cbd6036f62951d to your computer and use it in GitHub Desktop.
Save 4knort/41a1b6607b209d8d17cbd6036f62951d to your computer and use it in GitHub Desktop.
const courseQuery = gql`query($courseFlowId:Int, $userId: Int) {
courseFlow(id:$courseFlowId){
id,
dateStart,
course {
name,
id,
},
tariffs{
id,
price,
title,
currency,
}
},
courseFlowMember(id: $userId) {
userId
},
}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment