Browse GitHub repo in VS Code web editor with single key press

Now you can open GitHub repo in VS Code web editor by pressing . key on your keyboard. You don’t need to install any browser extensions for this feature to work You can also achieve the same result by changing the repo url from github.com/xxx/sample-repo.git to github.dev/xxx/sample-repo.git With the help of Visual Studio Code web…

Developing GraphQL API with Netflix DGS Framework(Part-II)

I have covered basics of GraphQL API and developed AP using Netflix DGS framework to retrieve the data in Part-I of this blog post series.In the second part, I am going to cover how to develop Create and Update operations. In GraphQL schema language , Create and Update operations are called Mutations. Update the schema…

Developing GraphQL API with Netflix DGS Framework (Part-I)

While REST is common standard nowadays for developing the API for applications, If you have multiple clients like mobile desktop, web applications requesting different data , Rest API mostly results either under fetching or over fetching the data. We can use the GraphQL frameworks to develop API to resolve over fetching or under fetching data…