Giter Site home page Giter Site logo

apollo-graphql-learning-project's Introduction

Apollo-graphql learning project

I'm learning Graphql so I created this project that uses the Apollo GraphQL server over express, using an array of users as mock data.

** I will work on a typescript version using more data **

After cloning this repo and running npm install

Start the server with npm start

The Apollo client will start at localhost:8080/graphql


Project structure:

|-- apollo-graphql-crud
    |-- package-lock.json
    |-- package.json
    |-- README.md
    |-- yarn.lock
    |-- src
        |-- index.js
        |-- mock-data.js
        |-- resolvers
            |-- index.js
            |-- mutations.js
            |-- queries.js

Queries

Retrieve all users:

Query {
    getAll {
        # Fields are id, name and username
        name
        email
    }
}

Retrieve one user's information using its id:

Query {
    getOne(id:1) {
        name
        email
    }
}

Mutations

Create a new user

Mutation {
    addOne(data:{
        name: "your name",
        email: "your email"
        # id is automatic
    }) 
}

Delete a user

Mutation {
    # user id
    deleteOne(id:1){
        status
        message
    }
}

Update user information

Mutation {
    # user id
    updateOne(id:1, data:{
        # not provided fields will have the same value
        name:"new name"
        email:"new username"
    }){
        status
        message
    }
}

That's all, thank you

apollo-graphql-learning-project's People

Contributors

danybeltran avatar

Stargazers

 avatar

Watchers

 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.