Created
June 14, 2018 18:55
-
-
Save 4knort/22d086729b1857f81d71658aaaa80a80 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 fields = gql` | |
fragment CourseFlowFields on CourseFlow { | |
id | |
dateStart | |
name | |
videoUrl | |
course { | |
name | |
} | |
courseId | |
} | |
`; | |
//не работает | |
query: gql` | |
query { | |
items: allCourseFlows(page : {page: 0, size: 10}) { | |
totalPages | |
totalElements | |
content { | |
...CourseFlowFields | |
} | |
} | |
} | |
`, | |
//работает | |
query: gql` | |
query { | |
items: allCourseFlows(page : {page: 0, size: 10}) { | |
totalPages | |
totalElements | |
content { | |
id | |
name | |
} | |
} | |
} | |
`, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment