Getting started with Quarkus

Quarkus is a full-stack, Kubernetes-native Java framework made for Java virtual machines (JVMs) and native compilation, optimizing Java specifically for containers and enabling it to become an effective platform for serverless, cloud, and Kubernetes environments. In Java world, Spring Boot is still the framework of choice for many developers, but the evolution of cloud-native technologies like Kubernetes and serverless presents a…

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

This is the fourth post of the series. For the first three posts of this series you can follow the given links part-I, part-II, part-III In this post, I will explain about the Named queries and how to do File uploading in GraphQL using Netflix DGS Framework Named Queries and Parameter placeholders In our previous…

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

This is the third post of the series. In this blog post I will explain how to develop GraphQL subscriptions API in using Netflix DGS framework. In addition to queries and mutations, GraphQL supports a third operation type: subscriptions. GraphQL Subscriptions Like queries, subscriptions enable us to fetch data. Unlike queries, subscriptions are long-lasting operations that can change their…