All Projects → hemanth → graphql-demo

hemanth / graphql-demo

Licence: other
Simple graphql server app.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to graphql-demo

Cameraxdemo
A sample camera app with CameraX API from Android Jetpack
Stars: ✭ 112 (+558.82%)
Mutual labels:  demo-app
Redux React Navigation Demos
React-Native + Redux + Redux-Persist + React Navigation ( Authentication Flow with Redux demos)
Stars: ✭ 151 (+788.24%)
Mutual labels:  demo-app
Hello Kubernetes
Provides a demo app to deploy to a Kubernetes cluster. It displays a message, the name of the pod and details of the node it's deployed to.
Stars: ✭ 193 (+1035.29%)
Mutual labels:  demo-app
Thorui Uniapp
ThorUI组件库,轻量、简洁的移动端组件库。组件文档地址:https://thorui.cn/doc/ 。 最近更新时间:2021-10-01
Stars: ✭ 1,842 (+10735.29%)
Mutual labels:  demo-app
Swift project
原OC项目用swift实现,纯swift项目,可作为学习swift的demo,包含多个自定义控件,并且进行封装网络请求库,结构清晰。
Stars: ✭ 133 (+682.35%)
Mutual labels:  demo-app
Textdetection
Vision Framework Demo on Text Detection
Stars: ✭ 173 (+917.65%)
Mutual labels:  demo-app
Cakephp Realworld Example App
Stars: ✭ 103 (+505.88%)
Mutual labels:  demo-app
react-native-svg-example
A simple example app that shows how you can use SVG files in React Native
Stars: ✭ 31 (+82.35%)
Mutual labels:  demo-app
Realm Draw
The official Realm Draw app used in promotional videos
Stars: ✭ 150 (+782.35%)
Mutual labels:  demo-app
Openui5 Sample App
OpenUI5 Sample App
Stars: ✭ 193 (+1035.29%)
Mutual labels:  demo-app
Searchviewsample
Sample app for Android SearchView with circular reveal animation like whatsapp
Stars: ✭ 125 (+635.29%)
Mutual labels:  demo-app
Fullscreencamera
A Full Screen Camera App written in Swift
Stars: ✭ 131 (+670.59%)
Mutual labels:  demo-app
Estmusicplayer
An elegant and simple iOS music player.
Stars: ✭ 2,165 (+12635.29%)
Mutual labels:  demo-app
Dwwxpay
微信支付/订单查询
Stars: ✭ 122 (+617.65%)
Mutual labels:  demo-app
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (+1188.24%)
Mutual labels:  demo-app
All In One
👔 Health care application for reminding health-todo lists and making healthy habits every day.
Stars: ✭ 109 (+541.18%)
Mutual labels:  demo-app
Weapp demos
持续更新中的微信小程序和小游戏的源码案例库。目前涵盖了120多个微信小程序或小游戏。
Stars: ✭ 2,466 (+14405.88%)
Mutual labels:  demo-app
ChatbotHotel
A Chatbot demo for DialogFlow (Formerly called API.AI)
Stars: ✭ 34 (+100%)
Mutual labels:  demo-app
Realmcontent
Light Realm-powered content management system
Stars: ✭ 237 (+1294.12%)
Mutual labels:  demo-app
Chatify Demo
Chatify Laravel Package Demo application
Stars: ✭ 189 (+1011.76%)
Mutual labels:  demo-app

graphql-demo.

A simple graphql-demo, which exposes an endPoint which can be quiered for books.

Schema:

  type Book {
    id: ID!
    title: String!
    author: String!
    isbn: String!
    url: String!
  }

  type Query {
    allBooks: [Book!]!
  }

  type Mutation {
    createBook(title: String!, author: String!): Book
  }

Query samples:

query {
  allBooks {
    author,
    title
  }
}
query{
  allBooks(filter:{
    id:17
  }) {
    isbn
  }
}

Try the endPoint.

Old endPoint is still up.

P.S: If you looking for older version, you can find it here -> v1

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].