Upgrade to Pro — share decks privately, control downloads, hide ads and more …

GraphQLをIoTで使う

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.
Avatar for ufoo68 ufoo68
July 14, 2020

 GraphQLをIoTで使う

Avatar for ufoo68

ufoo68

July 14, 2020
Tweet

More Decks by ufoo68

Other Decks in Technology

Transcript

  1. 自己紹介 • 名前 ◦ 松永勇太(@ufoo_yuta) • 出身地 ◦ 滋賀県 •

    やってること ◦ スポーツIoTLT主催 • 最近の趣味 ◦ VRゲーム
  2. サーバー側の開発環境 • GraphQLサーバー ◦ 言語 ▪ Node.js ◦ ライブラリ(主要なものだけ) ▪

    express ▪ apollo-server-express ▪ graphql-mqtt-subscriptions • MQTTサーバー ◦ Eclipse Mosquittoのテスト用ブローカー
  3. GraphQLサーバーのためのスキーマ type SensorData { steps: Int! // 歩数 time: String!

    // タイムスタンプ } type Subscription { subscribe2sensor(topic: String!): SensorData! } schema { subscription: Subscription }