Giter Club home page Giter Club logo

wikiquote-graphql's Introduction

Wikiquote-graphql

A GraphQL API server for Wikiquote

Motivation

I wanted to create a quote application and existing API sources are not satisfying.

About Wikiquote REST API, it doesn't seem clean enough for a newbie, so I decided to build a much simpler API server on top of the existing ones.

Features

For now, the API provide very minimal feature as I've juste started. I'll add more features step by step. Feel free to help me :)

API documentation

In the following codes samples, the request variable is the data which must be sent over a POST request and the response is the data received from that same request.

Get quote of the day

const request = {
  today {
    author
    date
    value
  }
}

// In a specific language
const request = {
  today(language: FR) {
    author
    ...
  }
}

const response = {
  "data": {
    "today": {
      "author": "Michael Crichton  in  Travels",
      "date": "Tuesday, October 23, 2018, 18:34 ",
      "value": "The purpose of the I Ching or the tarot … "
    }
  }
}

TODO

  • Past N quotes
  • Quote of X day (for example, the quote of yesterday)
  • Quotes of a specific author

Contributing

Don't hesitate to contribute to this projet by openning an issue or sending PR (pull request).

Sources

Contact

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.