DEV Community

Discussion on: Get started with GraphQL and Entity Framework

Collapse
 
allieberezhnaya profile image
allieberezhnaya

That could be because of the paiging. The request which is needed in case of paging enabled (nodes added) -

query {
students(where: { OR: [{ lastName: "Bar" }, { lastName: "Baz" }] }) {
nodes {
firstMidName
lastName
enrollmentDate
enrollments (where: { courseId: 1 }) {
grade
course {
title
}
}
}
}
}