Skip to content

Instantly share code, notes, and snippets.

@4knort
Created June 14, 2018 18:55
Show Gist options
  • Save 4knort/22d086729b1857f81d71658aaaa80a80 to your computer and use it in GitHub Desktop.
Save 4knort/22d086729b1857f81d71658aaaa80a80 to your computer and use it in GitHub Desktop.
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