Given the type of definition as the following: type Stu…
Given the type of definition as the following: type Student { id: ID! name: String! gpa: Float } type Query { students: [Student!]! student(id: ID!): Student stdname(name: String!): [Student] stdgpa(gpa: Float!): [Student] } Write the GraphQL commands which are equivalent to the following query: Find the id and name of students who have gpa greater than 3.5
Read Details