© 2023 Hashnode
#graphql
Graph Querry Language GraphQL What is GraphQL? GraphQL is an open-source query language. GraphQL is an answer to problems that REST API has: a lot of endpoints; it is harder for developers to learn …
So far we've created the MVP of my website and deployed and hosted it on Vercel which I have a walkthrough on here. It is a simple website, and only displays the necessary information, but we want to implement some dynamic features and show…
GraphQL is a query language for your API and a server-side runtime for executing queries using a type system you define for your data. It allows developers to access specific data from APIs. GraphQL i…
以往的srv端初始构建,都是从db table开始; 即 一切先从表对象,建表开始着手; 而现如今有了protobuf这货,一切将变得更简单; 即 protobuf 完整的对象创建好, sql db 的 create table 建表语句 也能一并生成 这是我通过protobuf pb file的 定义所生成出来的 需要的话,可以留言你的email,将脚本发你试用~ 基于py3环境 -- // nf_sysopt -- Migration SQL that makes the…
In the tutorial preceding this one, I demonstrated how to create a logging service with metadata. In this article, I will be implementing a new GraphQL endpoint for our application. I will use the repo as starting point. Data Store Before…
Hi, my name is JP 👋 (@J_pizzl3/@jpdev)! I'm one of the core developers working on InterplanetaryFonts, a Web3 NFT marketplace and collaboration platform for creators and collectors of Fonts (@IPFonts…
Hello guys! I hope you are doing well and exploring the cool stuff in the tech world like me. I'm Vinit Parekh, in this article I'm going to discuss some types of APIs, specifically the pros and cons …
The N+1 query problem is a common performance pitfall when retrieving data from a database, which usually happens with an entity has associations (one to many or many to many). The complete case is li…
Introduction: GraphQL is a powerful query language that allows you to retrieve data from APIs flexibly and efficiently. One of the key benefits of using GraphQL is that you can fetch data from multipl…
Introduction: GraphQL is a modern query language that allows clients to retrieve only the data they need from an API. It was developed by Facebook and is quickly becoming the go-to choice for building…