How To use GraphQL with Go
How to build a GraphQL API with Go and Postgres using glqgen and gorm.

Search for a command to run...
Articles tagged with #go
How to build a GraphQL API with Go and Postgres using glqgen and gorm.

What we will be building: In this article, we will build a basic CRUD app that stores books on the PostgreSQL database. Prerequisite: golang installed on your system Basic knowledge of Golang How to use Postman for calling APIs Setup the project...

*what are arrays in Go? An array is a data structure that contains a group of elements, these elements are all of the same data type, such as an integer, string or boolean. In GO the length of an array can't be modified , by this i mean it can't grow...

What are IF and else statement in GO** They are called conditional statement..imagine you want a block of code to run on a certain condition like if ada is 2 years something should happen otherwise something else should happen .Without much talk let ...

Throughout this article I will be using vscode as my code editor ..You can use any code editor of your choice the main objective to make you familiar with how to declare golang variables first create your a go file called main.go and import package...
