Modefoluwa Adeniyi-Samuelmode9writes.hashnode.dev·Nov 30, 2024What You Don't Know About GraphQl FederationWhat You Don’t Know About GraphQL Federation Introduction Think of your application as a bustling metropolis, with each microservice representing its own neighborhood. As more neighborhoods pop up, keeping everything connected and in sync becomes ver...Discuss·8 likesFederation
Sahil Kumarblockandgraph.hashnode.dev·Nov 26, 2024Blockchain Technology: Exploring Data Storage and Evolutionary SolutionsWhat is Blockchain?? Blockchain can be understood as a smart implementation of a linear linked list data structure, where each block contains a reference to the previous block, creating an immutable chain of information. This linear chaining mechanis...DiscussBlockchain
Alex Anieocxigin.hashnode.dev·Nov 23, 2024( #ModusHack) Build an AI Chatbot with Dgraph Cloud, Gemini API, React, and GraphQLThe rise of artificial intelligence (AI) has led to the development of an ecosystem of intelligent applications, with chatbots being a prominent example. AI chatbots, such as ChatGPT, Claude, and Gemini, are advanced interactive systems built on mass...Favourite Jome and 1 other are discussing this2 people are discussing thisDiscuss·36 likes·145 readsModusHack
Ayusharpcoderreacttonext.hashnode.dev·Nov 22, 2024Understanding REST vs. GraphQL: Which One Should You Choose?The debate between REST and GraphQL has been a significant topic in web development for years. Both offer ways to build APIs, but they cater to different needs. In this post, we’ll compare REST and GraphQL in terms of their features, benefits, and us...Discuss·1 likewebdev
TARPARA KAUSHALkdtarpara.hashnode.dev·Nov 21, 2024Types of API1. SOAP (Simple Object Access Protocol) What it is: SOAP is a protocol for exchanging structured information in the form of XML. It was designed for high-level security and reliability. How it works: SOAP uses XML to send messages and relies on spe...DiscussAPIs
Okoye Ndidiamakaamikdigital.hashnode.dev·Nov 16, 2024Unlocking GraphQL Power: How Developers Can Upgrade to Modern API IntegrationIn the world of web development, efficiently managed data is the key to robust and dynamic applications. If you are tired of the limitations that REST APIs impose, this is a good time to discover GraphQL-a flexible and powerful alternative that puts ...DiscussGraphql for beginners
Probir Sarkarcryoscript.com·Nov 16, 2024GraphQL vs. REST: Choosing the Right API for Your JavaScript AppWhen building APIs for JavaScript applications, two popular choices are GraphQL and REST. Each has its own strengths and weaknesses, and the right choice depends on your specific use case. This blog provides a detailed comparison between GraphQL and ...Discussbackend
Chetan Mittalblog.railsforgedev.com·Nov 14, 2024When (and When Not) to Use GraphQL in Your Rails AppIntroduction GraphQL has emerged as a powerful alternative to REST APIs, offering developers more flexibility and efficiency in data fetching. However, like any technology, it's not a one-size-fits-all solution. This article explores when GraphQL is ...Discuss·165 readsRuby
Wiseland AI Engineering TeamforAndroid Authorityandroidauthority.dev·Nov 11, 2024REST and GraphQL API PrinciplesOnce upon a time a software was basically a self contained executable that ran on your machine. It rarely reached out something outside of the computer on which it ran. This was the era of Visual Basic and MS access. Over time with rise of networks a...DiscussGraphQL
양예진yejinyang.hashnode.dev·Nov 10, 2024[GraphQL] N+1 문제와 DataLoader 알아보기이번 포스팅에서는 N+1 문제가 무엇이며, 이 문제를 DataLoader로 어떻게 해결하였는지 살펴본다. N+1 문제 Listing 타입을 배열로 반환하는 루트 쿼리인 featuredListings 가 정의된 GraphQL 스키마가 있다. type Listing { id: ID! "The listing's title" title: String! "The listing's description" description: Strin...DiscussGraphQL