Git Product home page Git Product logo

todos-apollo's Introduction

todos-apollo

All Contributors

๐ŸŒณ๐Ÿ—’๏ธ Building Todos app using Node, React, Apollo.

Quick start

Install dependencies

For server

$ cd server && yarn

For client

$ cd client && yarn

Run this app

For server

$ cd server && yarn start

For client

$ cd client && yarn start

API

Queries

todos: [Todo]

list

query {
  todos {
    id
    title
    completed
  }
}

todo(id: String!): Todo

retrieve

query {
  todo(id: "b658@556e@8c21-ef97_6bf9") {
    id
    title
    completed
  }
}

Mutations

createTodo(title: String): Todo

create

mutation {
  createTodo(title: "Learn Apollo") {
    id
    title
    completed
  }
}

updateTodo(id: String!, title: String, completed: Boolean): Todo

update

mutation {
  updateTodo(id: "1431#9e3a_2936^8b12-235a", title: "Learn Prisma", completed: true){
    id
    title
    completed
  }
}

deleteTodo(id: String!): Todo

destroy

mutation {
  deleteTodo(id: "145a*ccde$5455^1694*633c") {
    id
  	title
    completed
  }
}

๐Ÿ™Œ Awesome

Contributors

Thanks goes to these wonderful people (emoji key):

Cuong Duy Nguyen
Cuong Duy Nguyen

๐Ÿ’ป ๐Ÿ“– โš ๏ธ ๐Ÿ‘€

This project follows the all-contributors specification. Contributions of any kind welcome!

License

MIT ยฉ cuongw

todos-apollo's People

Stargazers

Cuong Nguyen avatar

todos-apollo's Issues

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.