Skip to content

fruxc/Go-GraphQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Lang GraphQL Server

👀 Easily create a new GoLang and GraphQL Server Using gqlgen

Run

Go run ./server.go

Queries

Mutation Query

mutation AddBike {
  createBike(input: {name:"BMW", isNewBike: true}){
    _id
    name
    isNewBike
  }
}

Mutation

FindOne Query

query findBike{
  bike(_id: "your_id") {
    name
    isNewBike
  }
}

FindOne

FindAll Query

query findAll{
  bikes{
    name
    isNewBike
  }
}

FindAll

About

Go GraphQL Server for learning purpose

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages