Skip to content

Instantly share code, notes, and snippets.

@OlegIlyenko
OlegIlyenko / Event-stream based GraphQL subscriptions.md
Last active May 28, 2024 17:41
Event-stream based GraphQL subscriptions for real-time updates

In this gist I would like to describe an idea for GraphQL subscriptions. It was inspired by conversations about subscriptions in the GraphQL slack channel and different GH issues, like #89 and #411.

Conceptual Model

At the moment GraphQL allows 2 types of queries:

  • query
  • mutation

Reference implementation also adds the third type: subscription. It does not have any semantics yet, so here I would like to propose one possible semantics interpretation and the reasoning behind it.

@fantasywind
fantasywind / equalizer.js
Last active August 25, 2016 21:19
Javascript Audio Frequency Based Equalizer
// Sample of setting
// const setting = {
// left: [
// [50, 0],
// [1000, 0],
// [2000, 0],
// [4000, 0],
// [8000, 0],
// [12000, 0],
// [15000, 0],