Giter Club home page Giter Club logo

graphql_poc's Introduction

Graphql poc

This repo is a poc to better understand what GRAPHQL is, and how it can be used to make APIs.

In this poc it has been decided to make the GRAPHQL api in express (nodejs) for its speed of implementation. For the front part the Vuejs framework has been privileged. Not having too much time to test it in the past, I wanted to discover it via this poc.

Run all (production mode)

docker-compose -f docker-compose.yml -f docker-compose.with-graphql-server.yml -f docker-compose.with-webapp.yml

Test the api via graphiql

docker-compose -f docker-compose.yml -f docker-compose.with-graphql-server-dev.yml -f docker-compose.with-webapp.yml

It is possible to test the API in dev mode thanks to an endpoint provided for this purpose http://:/graghiql

Mutation

mutation {
  addBook(title: "Foundation", author: "Isaac Asimov")
}

Query

query {
  multimedia {
    title
    ... on Book {
      author
    }
    
    ... on Film {
      director
    }
  }
}

graphql_poc's People

Contributors

didelotk avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.