Graphql-crud Go to localhost:8080/graphiql Example for fetching all student : query { allStudent{ id name // other fields } } Fetch student with id : query { findOne(id: 1){ id name email // other field } }