Code Monkey home page Code Monkey logo

graphql-fitbit's Introduction

GraphQL for Fitbit OS

This is a node module for handling with GraphQL in Fitbit OS.

Usage

In order to use this library, you have to develop your app on the command line interface (CLI) and not on studio.fitbit.com. To install the library use the following command:

npm install graphql-fitbit

After you have installed the library on your project, you can import the library in your project. Just open your index.js file in the companion folder and add there the following line below the other imports:

import * as graphql from "graphql-fitbit/companion";

Then you can call the function everywhere you want. Just make sure that you initalize also the callback function.

// Example query
const query = `{
  stopPlace(id: "NSR:StopPlace:6905") {
    id
    name
    estimatedCalls(startTime:"2018-12-14T20:00:00+0200" timeRange: 72100, numberOfDepartures: 10) {
      expectedDepartureTime
      destinationDisplay {
        frontText
      }
      quay {
        id
      }
      serviceJourney {
        journeyPattern {
          line {
            id
            name
            transportMode
          }
        }
      }
    }
  }
}`;

// Enter in the first place
graphql.requestGraphQL('https://api.entur.org/journeyplanner/2.0/index/graphql', query, myCallback);

function myCallback(data){
  console.log(data); // Here you have the data in JSON format.
}

Unfortunately Fitbit uses the gulp uglify library, which does not allow to use async functions.

API

graphql.requestGraphQL(url, query, callback, debug);

Sends a request to the GraphQL URL and responds with the callback.

  • url: GraphQL endpoint url
  • query: GraphQL query in a string
  • callback: Callback function where the response can be send to
  • debug: If you want detailed information about the request (default: false)

graphql-fitbit's People

Contributors

julianschmuckli avatar

Stargazers

 avatar  avatar  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.