0.3.1 • Published 8 years ago

gql-lite v0.3.1

Weekly downloads
39
License
-
Repository
-
Last release
8 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

8 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago