Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/jokerkwu/go-graphql

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/jokerkwu/go-graphql

  • v0.0.0-20230101082730-5f55ed5257d0
  • Source
  • Go
  • Socket score

Version published
Created
Source

GraphQL Example Using GQL Gen

The purpose of this example is to provide details as to how one would go about creating a Restful API with the Echo Web Framework.

Getting Started

Software requirements

  • Go 1.10.3 or higher

Quick Installation

  1. start the server

    $ go run src/server.go
    
  2. navigate to the site in the browser

    $ open http://localhost:8080
    
  3. test some queries

    mutation CreateUser {
      createUser(input:{name:"joker", age:20,phone:"01012340000"}) {
          id
          name
          age
          phone
      }
    }
    
    query users {
      users{
        id
        name
        phone
        age
      }
    }
    

GQL Gen References

Support

Bug reports and feature requests can be filed with the rest for the GraphQL Example Using GQL Gen project here:

License

GraphQL Example Using GQL Gen is released under the MIT license.

copyright:: (c) Copyright 2018 Conrad Taylor. All Rights Reserved.

FAQs

Package last updated on 01 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc