0.3.1 • Published 7 years ago

gql-lite v0.3.1

Weekly downloads
39
License
-
Repository
-
Last release
7 years ago

gql-lite

I had some simpe needs to request a graphql serer, so i made a simple libray.

API (WIP)

import { Gql, reducer } from 'gql-lite/reducer';

const graphql = new Gql({ url: 'http://localhost:4000/graphql' });

graphql.store.subscribe(_ => {
  console.log(graphql.store.getState().gclient.toJS());
});


graphql.query(`
{
  test_one: locale(lang: "en-us") {
    foo
  }
  test_two: locale(lang: "en-us") {
    bar
  }
}
`);

setInterval(
  function() {
    graphql.run();
  },
  1000
);
0.3.1

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago