Siddharthblog.siddharth9890.com·Sep 1, 2024Effortless Type-Safe GraphQL SDK Generation with GraphQL SDK GeneratorHello everyone Today, we will discuss one of the most challenging tasks in working with a GraphQL server i.e creating an SDK. The pain often lies in writing .gql files and building corresponding TypeScript types to match the schema. Whenever the sche...DiscussGraphQL
Palash Dhavletroncodes.hashnode.dev·Nov 21, 2023Setup and understand Apollo server in 10 minsWhat is apollo server Apollo Server is a community-driven, open-source GraphQL server that simplifies the process of building and serving GraphQL APIs in JavaScript environments. It's often used with Node.js, but it can also be used with other JavaSc...DiscussApollo GraphQL
Modefoluwa Adeniyi-Samuelmode9writes.hashnode.dev·Nov 12, 2023GraphQL Best Practices: Tips for Designing Efficient APIsIntroduction GraphQL is a powerful and flexible query language that allows you to design and build APIs that suit your needs and preferences. GraphQL lets you specify exactly what data you want to fetch or modify from your server, using a schema that...Discuss·10 likesschema
Devang Tomardevangtomar.hashnode.dev·Jun 30, 2023🌟 Supercharge Your APIs with GraphQL! 🚀Harnessing the Power of GraphQL to Revolutionize API Development and Consumption Introduction ⭐ In the world of modern web development, building efficient and flexible APIs is a top priority. Traditional RESTful APIs often require multiple requests t...DiscussGraphQL
StepZenstepzen.hashnode.dev·Jun 2, 20223 New GraphQL Developer Tools to Increase Coding ProductivityIn our mission to make building GraphQL APIs easier for every developer, StepZen developed tools to get you started quickly and with either no- or low- code. In this post, we’ll explore some of the tools we’ve built. We’ll take a look at REST2GraphQ...DiscussAPIs
StepZenstepzen.hashnode.dev·Apr 26, 2022How to Eliminate Duplicated Requests with GraphQLAccording to graphql.org’s docs, “An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.” When you’re weaving APIs into your GraphQL layer, you may conclude that you need to use int...DiscussGraphQL
Braincuber Technologiesbraincuber.hashnode.dev·Mar 28, 2022GraphQL, what, why, and when?What is GraphQL? GrpahQL is an open-source query language used to build APIs and provides powerful abilities over the traditional Rest API. The client gets exactly what asked for: GraphQL will always know what the client asked for, so the server will...Discuss·160 readsGraphQL