Created
February 15, 2018 14:14
-
-
Save 4knort/41a1b6607b209d8d17cbd6036f62951d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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