Shivam Dubeycodefarms.in·Jan 7, 2025Crafting Perfect GraphQL Queries: Techniques and Code Examples for BiginnersGraphQL queries allow clients to fetch specific data from a server in a structured manner. Unlike traditional REST APIs, GraphQL lets you request exactly the data you need, no more and no less. This article introduces basic GraphQL queries and explor...GraphQLGraphQL
SANTOSH SINGHsantoshsingh.hashnode.dev·Jul 28, 2024Exploring MySQL Queries: From Basics to Advanced TechniquesMySQL is a powerful open-source database management system that is especially popular for web applications. It uses Structured Query Language (SQL) for managing and manipulating data. Today, we'll take a journey from the basic to advanced queries in ...MySQL
Akintobi Ajibolaakintobiusman.hashnode.dev·Jan 27, 2024Databases and SQL: A Beginner's Guide to Mastering QueriesDatabases are pivotal in organizing, storing, and managing vast amounts of information. A database, in its essence, is a structured collection of data that facilitates seamless retrieval and manipulation. Whether tracking customer information, manag...27 readsSQLqueries
Umang Agarwalthesubtlegeek.com·Sep 19, 2022Creating APIs using GraphQLIn this article we will see how to create APIs using Spring Boot GraphQL. Imagine a scenario where an endpoint returns data for a Student, where the response payload contains 50 fields performing multiple queries on the server for a client consuming ...93 readsGraphQL
Alessandrofailing2build.hashnode.dev·Jul 8, 2022How To: Use the Queries Library with Tornado in PythonObjective The goal of this tutorial is to walk the reader through setup of your PostgreSQL database, create a Tornado application with an asynchronous GET and POST API, and access the database to INSERT and SELECT records using the Queries library. F...8 likes·230 readsPython