{"_id":"graphql.js","_rev":"48-0e63ea0134e632d0da644bdd1c863a12","name":"graphql.js","time":{"modified":"2023-04-20T03:35:04.092Z","created":"2017-02-13T12:06:05.408Z","0.2.0":"2017-02-13T12:06:05.408Z","0.2.1":"2017-02-13T12:12:47.295Z","0.2.3":"2017-02-13T12:34:47.384Z","0.2.4":"2017-02-13T13:38:36.295Z","0.2.5":"2017-02-14T06:17:29.830Z","0.2.6":"2017-02-15T12:04:44.082Z","0.2.7":"2017-02-15T12:10:49.131Z","0.2.8":"2017-02-16T10:16:01.196Z","0.3.0":"2017-02-16T12:23:34.710Z","0.3.1":"2017-02-16T12:38:13.746Z","0.3.2":"2017-02-16T12:40:52.183Z","0.3.3":"2017-02-17T13:27:10.414Z","0.3.4":"2017-02-17T13:51:14.043Z","0.3.5":"2017-02-17T15:17:28.993Z","0.3.6":"2017-02-17T19:48:12.628Z","0.4.0":"2017-02-17T21:26:12.528Z","0.4.1":"2017-02-18T11:26:21.935Z","0.4.3":"2017-02-18T12:12:45.249Z","0.4.4":"2017-02-18T20:25:39.130Z","0.4.5":"2017-02-19T17:12:00.639Z","0.4.6":"2017-04-05T08:29:01.564Z","0.4.7":"2017-04-05T08:30:28.927Z","0.4.8":"2017-04-14T11:32:47.070Z","0.4.9":"2017-04-14T12:02:40.500Z","0.4.10":"2017-05-03T07:49:30.610Z","0.4.11":"2017-06-05T11:14:34.391Z","0.4.12":"2017-06-08T10:49:39.058Z","0.4.14":"2017-06-08T10:58:43.071Z","0.4.16":"2017-06-08T11:03:12.709Z","0.4.17":"2017-06-20T11:26:02.979Z","0.4.18":"2017-06-28T10:56:19.773Z","0.4.19":"2017-11-10T10:22:38.637Z","0.4.20":"2017-12-13T11:20:59.273Z","0.5.0":"2018-10-13T23:48:47.151Z","0.5.2":"2018-10-15T06:34:02.187Z","0.6.1":"2018-12-11T10:03:19.889Z","0.6.2":"2019-05-16T10:15:27.605Z","0.6.3":"2019-06-21T07:01:12.608Z","0.6.4":"2019-06-25T21:49:21.860Z","0.6.5":"2019-06-25T21:55:39.178Z","0.6.6":"2019-11-27T11:10:05.627Z","0.6.7":"2020-12-21T12:20:33.038Z","0.6.8":"2021-12-20T19:12:46.824Z"},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"dist-tags":{"latest":"0.6.8"},"description":"GraphQL Client for JavaScript","readme":"<p align=\"center\">\n<img src=\"./resources/logotype.png\" width=\"400\">\n</p>\n<h2 align=\"center\">graphql.js: lightweight graphql client</h2>\n<p align=\"center\">\n Lightest GraphQL client with intelligent features.\n</p>\n\n<hr/>\n\n[![Bower version](https://badge.fury.io/bo/graphql.js.svg)](http://badge.fury.io/bo/graphql.js)\n[![NPM version](https://badge.fury.io/js/graphql.js.svg)](http://badge.fury.io/js/graphql.js)\n[![Build Status](https://travis-ci.org/f/graphql.js.svg?branch=master)](https://travis-ci.org/f/graphql.js)\n\n> Originally inspired by [Robert Mosolgo's blog post](http://rmosolgo.github.io/blog/2016/03/03/using-graphql-without-relay/)\n\n### Features\n\n- Too small, 4k gzipped.\n- No dependencies, plain vanilla JavaScript.\n- Plug & Play.\n- Isomorphic.\n- Runs on most browsers.\n- You don't need to install Node.js ecosystem on your computer.\n- Query merging to reduce request number.\n\n## Overview\n\nGraphQL is based on a very simple HTTP transaction, which sends a request to an endpoint\nwith `query` and `variables`.\n\nMany libraries require _complex stacks_ to make that simple request.\nIn any project you don't use **React**, **Relay**, you'll need a simpler\nclient which manages your query and makes a simple request.\n\n```js\n// Connect...\nvar graph = graphql(\"/graphql\")\n\n// Prepare...\ngraph.fragment({\n  user: `on User {\n    id,\n    name\n  }`\n})\n\nconst allUsers = graph(`query { allUsers { ...user } }`)\n\nconst createUser = graph(`mutation (@autodeclare) {\n  createUser($firstName, $lastName) { ...user }\n}`)\n\nawait createUser({\n  firstName: \"John\",\n  lastName: \"Doe\"\n})\n\nconst users = await allUsers()\n\nconsole.log(users)\n// {\n//   \"allUsers\": [{ \"id\": 1, \"name\": \"John Doe\" }]\n// }\n```\n\n## Installation\n\nYou can download `graphql.js` directly, or you can use **Bower** or **NPM**.\n\n#### CDN\n\n```html\n<script src=\"//cdn.jsdelivr.net/npm/graphql.js@0.6.6/graphql.min.js\"></script>\n```\n\n#### Download for Browser\n\n- [Development Version - 12kb](https://raw.githubusercontent.com/f/graphql.js/master/graphql.js)\n- [Production Version - 6kb](https://raw.githubusercontent.com/f/graphql.js/master/graphql.min.js)\n\n#### Using NPM\n```bash\nnpm install graphql.js --save\n\n# or\n\nyarn add graphql.js\n```\n\n#### Using with Rails Asset Pipeline\n\nYou can use GraphQL.js with Rails Asset Pipeline using [graphqljs-rails](https://github.com/f/graphqljs-rails).\n\n## Using\n\nGraphQL.js is **isomorphic**. You can use it in both **browser and Node.js**.\n\n#### Use in Browser\n\n```html\n<script src=\"/path/to/graphql.js\"></script>\n```\n\n#### Use in Node.js\n\n```js\nvar graphql = require('graphql.js')\n```\n\nOr using `import`\n```js\nimport graphql from 'graphql.js'\n```\n\n## Connection\n\nCreate a simple connection to your GraphQL endpoint.\n\n```js\nvar graph = graphql(\"http://localhost:3000/graphql\", {\n  method: \"POST\", // POST by default.\n  headers: {\n    // headers\n    \"Access-Token\": \"some-access-token\"\n    // OR \"Access-Token\": () => \"some-access-token\"\n  },\n  fragments: {\n    // fragments, you don't need to say `fragment name`.\n    auth: \"on User { token }\",\n    error: \"on Error { messages }\"\n  }\n})\n```\n\n## Executing Queries and Mutations\n\n`graph` will be a simple function that accepts `query` and `variables` as parameters.\n\n```js\ngraph(`query ($email: String!, $password: String!) {\n  auth(email: $email, password: $password) {\n    ... auth # if you use any fragment, it will be added to the query.\n    ... error\n  }\n}`, {\n  email: \"john@doe.com\",\n  password: \"my-super-password\"\n}).then(function (response) {\n  // response is originally response.data of query result\n  console.log(response)\n}).catch(function (error) {\n  // response is originally response.errors of query result\n  console.log(error)\n})\n```\n\n### Prepare Query for Lazy Execution\n\nYou can prepare queries for lazy execution. This will allow you to reuse your queries with\ndifferent variables without any hassle.\n\n```js\nvar login = graph(`query ($email: String!, $password: String!) {\n  auth(email: $email, password: $password) {\n    ... on User {\n      token\n    }\n  }\n}`)\n\n// Call it later...\nlogin({\n  email: \"john@doe.com\",\n  password: \"my-super-password\"\n})\n```\n\n#### Direct Execution with `.run` and ES6 Template Tag\n\nIf your query doesn't need any variables, it will generate a lazy execution query by default.\nIf you want to run your query immediately, you have three following options:\n\n```js\n// 1st option. create and run function.\ngraph(`...`)()\ngraph.query(`...`)()\ngraph.mutate(`...`)()\n//...\n\n// 2nd option. create and run function with `run` method.\ngraph.run(`...`)\ngraph.query.run(`...`)\ngraph.mutate.run(`...`)\n\n// 3rd option. create and run function with template tag.\ngraph`...`\ngraph.query`...`\ngraph.mutate`...`\n```\n\n> **I don't recommend** using this. Using it too much may break DRY. Use lazy execution as much as possible.\n\n### Prefix Helpers\n\nYou can prefix your queries by simply calling helper methods: `.query`, `.mutate` or `.subscribe`\n\n```js\nvar login = graph.query(`($email: String!, $password: String!) {\n  auth(email: $email, password: $password) {\n    ... on User {\n      token\n    }\n  }\n}`)\n\nvar increment = graph.mutate`increment { state }`\nvar onIncrement = graph.subscribe`onIncrement { state }`\n```\n\n### Automatic Declaring with `@autodeclare` or `{declare: true}`\n\nDeclaring primitive-typed (`String`, `Int`, `Float`, `Boolean`) variables in query were a\nlittle bothering to me. That's why I added an `@autodeclare` keyword or `{declare: true}` setting to the processor.\nIt detects types from the variables and declares them in query automatically.\n\n```js\nvar login = graph.query(`(@autodeclare) {\n  auth(email: $email, password: $password) {\n    ... on User {\n      token\n    }\n  }\n}`)\n\nlogin({\n  email: \"john@doe.com\", // It's String! obviously.\n  password: \"my-super-password\" // It is, too.\n})\n```\n\nThis will create following query:\n\n```graphql\nquery ($email: String!, $password: String!) {\n  auth(email: $email, password: $password) {\n    ... on User {\n      token\n    }\n  }\n}\n```\n\nYou can also pass `{declare: true}` option to the `.query`, `.mutate` and `.subscribe` helper:\n\n```js\nvar login = graph.query(`auth(email: $email, password: $password) {\n  ... on User {\n    token\n  }\n}`, {declare: true})\n```\n\nThis will also create the same query above.\n\n#### Detecting IDs\n\nVariable names with matching `/_id/i` pattern will be declared as `ID` type. Following examples will be declared as IDs:\n\n- `id: 1` will be declared as `$id: ID!`\n- `post_id: \"123af\"` will be declared as `$post_id: ID!`\n- `postID: 3` will be declared as `$postID: ID!`\n- `postId: 4` will be declared as `$postId: ID!`\n\nYou can disable auto ID declaration by adding an `!` to the end of the variable name:\n\n- `id!: 1` will be declared as `$id: Int!`\n- `post_id!: \"123af\"` will be declared as `$post_id: String!`\n\nAnd, explicitly given types are prioritized.\n\n- `postID!CustomId: 3` will be declared as `$postID: CustomId!`\n- `postId!UUID: 4` will be declared as `$postId: UUID!`\n\n```js\nvar userById = graph.query(`(@autodeclare) {\n  user(id: $id) {\n    email\n  }\n}`)\n\nuserById({\n  id: 15\n})\n```\n\nThe example above will generate following query:\n\n```graphql\nquery ($id: ID!) {\n  user(id: $id) {\n    email\n  }\n}\n```\n\n#### Solving `Integer` and `Float` Problem\n\nLet's say you have a `rating` query that accepts an argument with a `Float` argument named `rating`.\nGraphQL.js will declare `10` value as `Integer` since it casts using `value % 1 === 0 ? 'Int' : 'Float'` check.\n\n```js\nvar rate = graph.query(`(@autodeclare) {\n  rating(rating: $rating) {\n    rating\n  }\n}`)\n\nrate({\n  rating: 10\n})\n```\n\nIn this case, you must use `!` mark to force your type to be `Float` as below:\n\n```js\nrate({\n  \"rating!Float\": 10\n})\n```\n\nThis will bypass the casting and declare `rating` as `Float`.\n\n### Advanced Auto Declaring\n\nBeside you can pass `{declare: true}` to helpers:\n\n```js\ngraph.query(\"auth(email: $email, password: $password) { token }\", {declare: true})\n```\n\nAlso you can enable auto declaration to run by default using `alwaysAutodeclare` setting.\n\n```js\nvar graph = graphql(\"http://localhost:3000/graphql\", {\n  alwaysAutodeclare: true\n})\n```\n\nAfter you enable `alwaysAutodeclare` option, your methods will try to detect types of variables and declare them.\n\n```js\n// When alwaysAutodeclare is true, you don't have to pass {declare: true} option.\n\ngraph.query(\"auth(email: $email, password: $password) { token }\")\n```\n\n#### Auto Declaring Custom Types\n\nYou can define custom types when defining variables by using a simple `\"variable!Type\"` notation.\nIt will help you to make more complex variables:\n\n```js\nvar register = graph.mutate(`(@autodeclare) {\n  userRegister(input: $input) { ... }\n}`)\n\nregister({\n  // variable name and type.\n  \"input!UserRegisterInput\": { ... }\n})\n```\n\nThis will generate following query:\n\n```graphql\nmutation ($input: UserRegisterInput!) {\n  userRegister(input: $input) { ... }\n}\n```\n\n## Fragments\n\nFragments make your GraphQL more DRY and improves reusability. With `.fragment` method, you'll\nmanage your fragments easily.\n\n### Simple Fragments\n\nWhile constructing your endpoint, you can predefine all of your fragments.\n\n```js\nvar graph = graphql(\"/graphql\", {\n  fragments: {\n    userInfo: `on User { id, name, surname, avatar }`\n  }\n})\n```\n\nAnd you can use your fragments in your queries. The query will pick your fragments and\nwill add them to the bottom of your query.\n\n```js\ngraph.query(`{ allUsers { ...userInfo } }`)\n```\n\n### Nested Fragments\n\nYou can nest your fragments to keep them organized/namespaced.\n\n```js\nvar graph = graphql(\"/graphql\", {\n  fragments: {\n    user: {\n      info: `on User { id, name, surname, avatar }`\n    }\n  }\n})\n```\n\nAccessing them is also intuitive:\n\n```js\ngraph.query(`{ allUsers { ...user.info } }`)\n```\n\n### Using Fragments in Fragments\n\nYou can reuse fragments in your fragments.\n\n```js\ngraph.fragment({\n  user: \"on User {name, surname}\",\n  login: {\n    auth: \"on User {token, ...user}\"\n  }\n})\n```\n\n### Lazy Fragments\n\nYou can also add fragments lazily. So you can use your fragments more modular.\n\n```js\n// Adds a profile fragment\ngraph.fragment({\n  profile: `on User {\n    id\n    name(full: true)\n    avatar\n  }`\n})\n\nvar allUsers = graph.query(`{\n  allUsers {\n    ... profile\n  }\n}`)\n\nallUsers().then(...)\n```\n\nAlso you can add **nested fragments** lazily, too:\n\n```js\ngraph.fragment({\n  login: {\n    error: `on LoginError {\n      reason\n    }`\n  }\n})\n\ngraph.fragment({\n  something: {\n    error: `on SomeError {\n      messages\n    }`\n  }\n})\n\ngraph.query(`{ login {... login.error } }`)\ngraph.query(`{ something {... something.error } }`)\n```\n\n### Getting Fragments by Path\n\nYou can call fragment string by using `.fragment` method. You have to pass path string to get the fragment.\n\n```js\ngraph.fragment('login.error')\n```\n\nThis will give you the matching fragment code:\n\n```graphql\nfragment login_error on LoginError {\n  reason\n}\n```\n\n### Using Fragments in Tag Query\n\nYou can use fragments lazily using ES6 template tag queries.\n\n```js\nvar userProfileToShow = graph.fragment('user.profile')\n\ngraph`query { ... ${userProfileToShow} }`\n```\n\n### Query Building\n\nYou can create queries using `.ql` **ES6 template tag**.\n\n```js\n// Add some fragments...\ngraph.fragment({\n  username: {\n    user: `on User {\n      username\n    }`,\n    admin: `on AdminUser {\n      username,\n      administrationLevel\n    }`\n  }\n})\n\n// Get any fragment with its path...\nvar admin = graph.fragment('username.admin')\n\n// Build your query with using fragment paths or dynamic template variables.\nvar query = graph.ql`query {\n  ...username.user\n  ...${admin}\n}`\n\n// Use query anywhere...\n$.post(\"/graphql\", {query: query}, function (response) { ... })\n```\n\n`graph.ql` will generate this query string:\n\n```graphql\nquery {\n  ... username_user\n  ... username_admin\n}\n\nfragment username_user on User {\n  username\n}\n\nfragment username_admin on AdminUser {\n  username,\n  administrationLevel\n}\n```\n\n### Query Merging: Merge Multiple Queries into One Request\n\n![merge](./resources/graphql-merge.gif)\n\n> This GIF shows a **before/after** case to make an example how query merging changes the performance.\n\n`graphql.js` supports **query merging** that allows you to collect all the requests into one request.\n\nAssume we've these queries on server, define them just like before we do:\n```js\nvar fetchPost = graph.query(`{\n  post(id: $id) {\n    id\n    title\n    text\n  }\n}`)\n\nvar fetchComments = graph.query(`{\n  commentsOfPost: comments(postId: $postId) {\n    comment\n    owner {\n      name\n    }\n  }\n}`)\n```\n\nNormally, we make requests as following:\n\n```js\nvar postId = 123\n\n// This will send a request.\nfetchPost({ id: postId }).then(function (response) {\n  console.log(response.post)\n})\n\n// This also will send a request.\nfetchComments({ postId: postId }).then(function (response) {\n  console.log(response.commentsOfPost)\n})\n```\n\nThis will make two requests:\n\n![ss1](./resources/ss1.png)\n\nUse **`.merge(mergeName, variables)`** command to put them into a merge buffer:\n\n```js\nvar postId = 123\n\n// This won't send a request.\nfetchPost.merge('buildPage', { id: postId }).then(function (response) {\n  console.log(response.post)\n})\n\n// This also won't send a request.\nfetchComments.merge('buildPage', { postId: postId }).then(function (response) {\n  console.log(response.commentsOfPost)\n})\n```\n\nThese will create a buffer with *buildPage* name, and append the queries to that buffer. You need to use **`commit(mergeName)`** to merge the buffer and send to the server, the response will be consolidated:\n\n```js\n// This will send a merged request:\ngraph.commit('buildPage').then(function (response) {\n  // All base fields will be in response return.\n  console.log(response.post)\n  console.log(response.commentsOfPost)\n})\n```\n\nAnd this will create only one request:\n\n![ss2](./resources/ss2.png)\n\nThis will create the following merged query generated by **graphql.js**:\n\n```graphql\nquery ($merge024533__id: ID!, $merge141499__postId: ID!) {\n  merge024533_post: {\n    post(id: $merge024533__id) {\n      id\n      title\n      text\n    }\n  }\n  merge141499_commentsOfPost: {\n    comments(postId: $merge141499__postId) {\n      comment\n      owner {\n        name\n      }\n    }\n  }\n}\n```\n\nAnd variables will be generated, too:\n\n```js\n{\n  \"merge024533__id\": 123,\n  \"merge141499__postId\": 123\n}\n```\n\n> The `merge{number}` aliases won't be passed into your responses, since they will be used for initial seperation.\n\n> ⚠️ **Important Restriction**: You cannot use multiple root fields using query merging.\n> ⚠️ **Important Restriction**: Autodeclaration is on by default, do not use `alwaysAutodeclare: true`.\n\n## Debugging\n\nYou can pass `debug: true` to options parameter to get a console output looks like following:\n\n```\n[graphql]: POST http://localhost:3000/graphql\n  QUERY: query ($email: String!, $password: String!) {\n    auth(email: $email, password: $password) {\n      .. login_auth\n    }\n  }\n\n  fragment info on User { hasPin }\n  fragment login_auth on User { token, ...info }\n\n  VARIABLES: {\n    \"email\": \"john@doe.com\",\n    \"password\": \"123123\"\n  }\n\n  sending as form url-data\n```\n\n## Advanced\n### Using with Vue.js\n\nCreate a `GraphQLProvider.js`.\n\n```js\nimport graphql from 'graphql.js';\n\n/* eslint-disable no-underscore-dangle */\nexport default {\n  install(Vue, url, options) {\n    Vue.mixin({\n      created() {\n        this._graph = graphql(url, options);\n      },\n    });\n    Object.defineProperty(Vue.prototype, '$graph', {\n      get() {\n        return this._graph;\n      },\n    });\n  },\n};\n```\n\nAnd then you can use this with your Vue app:\n\n```js\nimport Vue from 'vue';\nimport GraphQLProvider from './GraphQLProvider';\n\nVue.use(GraphQLProvider, 'http://localhost:3000/graphql', {\n  headers: {\n    // headers...\n  },\n});\n\n// ... in your Vue VM\ndata() {\n  return {\n    hello: '',\n  };\n},\nmethods: {\n  makeSomeQuery() {\n    this.$graph.query(`{hello}`).then(response => {\n      this.hello = response.hello;\n    });\n  },\n}\n```\n\n### Change POST Method\n\nAs default, GraphQL.js makes a POST request. But you can change the behavior by setting `asJSON`.\n\n```js\nvar graph = graphql(\"http://localhost:3000/graphql\", {\n  asJSON: true\n});\n```\n### Using with `graphql-tag`\n\n[`graphql-tag`](https://github.com/apollographql/graphql-tag) converts GraphQL query strings to AST. You can use `graphql-tag` with GraphQL.js\n\n```js\ngraph.query(gql`query { name }`)\n```\n\n> Using `graphql-tag` will not allow you to use _auto declaration_ and _nested fragments_ syntaxes since these are not valid query syntax for GraphQL but only for this library.\n\n### Change Url Anywhere\n\nYou can change url anywhere with `setUrl` method.\n\n```js\nvar graph = graphql(\"http://localhost:3000/graphql\", {\n  asJSON: true\n});\n\n// Change url\ngraph.setUrl('http://www.example.com')\n\n// Run query\ngraph.query(`{ name }`)\n```\n\n---\n\n## Todo App Example\n\nA CRUD ToDo app example code to show how to use GraphQL.js. An implementation can be found at [**f/graphql.js-demo**](https://github.com/f/graphql.js-demo)\n\n```js\nvar graph = graphql(\"/graphql\", {\n  alwaysAutodeclare: true,\n  fragments: {\n    todo: `on Todo {\n      id\n      text\n      isCompleted\n    }`\n  }\n})\n\nfunction getTodos() {\n  return graph.query.run(`allTodos {\n    ...todo\n  }`)\n}\n\nfunction addTodo(text) {\n  return graph.mutate(`todoAdd(text: $text) {\n    ...todo\n  }`, {\n    text: text\n  })\n}\n\nfunction setTodo(id, isCompleted) {\n  return graph.mutate(`todoComplete(\n    id: $id,\n    status: $isCompleted\n  ) {\n    ...todo\n  }`, {\n    id: id,\n    isCompleted: isCompleted\n  })\n}\n\nfunction removeTodo(id) {\n  return graph.mutate(`todoRemove(\n    id: $id\n  ) {\n    ...todo\n  }`, {\n    id: id\n  })\n}\n```\n\n## License\n\nMIT License\n\nCopyright (c) 2018 Fatih Kadir Akın\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","versions":{"0.2.1":{"name":"graphql.js","version":"0.2.1","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"62b9533728bf4607052b9b54c22a65b3b2eb808c","_id":"graphql.js@0.2.1","_shasum":"38740cffa54e5075d4f3233909b5a8b4d960d23c","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"38740cffa54e5075d4f3233909b5a8b4d960d23c","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.1.tgz","integrity":"sha512-EgryjdtH859aHgUS/cqxcQsVmwC7IQd3Ru/k1AE6jt+kvSRyQQdEdiP2dUQGx0taaibkHFm5Gz05pSTFDepuWA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDeYGKn7gvbaWfpjAY72iiM1JVxnypKoqXsyScYt+K0HgIgCNY4rJXMTCQMCf7SHX7LgpQFZZmWnRvVP8MsBarRk+E="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.1.tgz_1486987965359_0.43768911622464657"}},"0.2.3":{"name":"graphql.js","version":"0.2.3","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"e2b8494021dc663810639bc79f3b2e780b950e4a","_id":"graphql.js@0.2.3","_shasum":"6dbb4d872d43aa75014130c21d519bbfda53c628","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"6dbb4d872d43aa75014130c21d519bbfda53c628","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.3.tgz","integrity":"sha512-Yc6juFi4TJncUG0fn3vwZCA75bSLsLkrZZbfTqXVpkOZIxQM95dfCOZObDqm8GFdvWqatKKX2C/QXFMl9NCTgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHDD81+t/iNsrZ1UCYiYq2dQ1eyyWve/38dduCrkpYQ1AiA14PwiCTSGQ5DRlDTsGccafJFkRoPKsV0+s9NC6Pee/w=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.3.tgz_1486989285371_0.5386819320265204"}},"0.2.4":{"name":"graphql.js","version":"0.2.4","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"aee324cf6749cf7b1387ab9f38e3978a0f0ea161","_id":"graphql.js@0.2.4","_shasum":"dc5a7e3ad903d2b1b9228b109453c42603c82846","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"dc5a7e3ad903d2b1b9228b109453c42603c82846","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.4.tgz","integrity":"sha512-4GeXf9QP4+06He5LcAXTsrK1Uwa4zlK59Ezw9jFYfgmhpBujgMB1EMX8+rLxriMes9wQkRuoDjatevJo6dRfKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBqpkJ23IOs3l1G6ft1mlBvyUCzTM5uBlU/XTJ/w6Rj8AiBzljVPKpkldYWr/jTmK8/Cz8NH0e4Gi66ibUeCxC5VHw=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.4.tgz_1486993115640_0.9338000367861241"}},"0.2.5":{"name":"graphql.js","version":"0.2.5","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"4b75987be0d5def9d9c873b60c333667aa20447f","_id":"graphql.js@0.2.5","_shasum":"d38a7097d20fbd55cce5326e9b52fb9a39d88f85","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"d38a7097d20fbd55cce5326e9b52fb9a39d88f85","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.5.tgz","integrity":"sha512-gT1myQezOUR6wg6EklPfxMF5AKj6AQgjiHd9NAG2lpSdYkytA1xlrb2g7b1q2RVQHdF+mtpji1wApKeVeJDNWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGkjMx73KVfjNYU61VCbfWqikD9M5icPmBnniz96NQDwIhAIb9e+TLuWw+UhsCmx0+iKLbONhNF7zLtsNMm4CNlDHB"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.5.tgz_1487053049184_0.06951921200379729"}},"0.2.6":{"name":"graphql.js","version":"0.2.6","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"d4432729c59ef5ac94defc3ae87cac61c59f614f","_id":"graphql.js@0.2.6","_shasum":"729c06f47d5088e2f253dc0b56544fed86c6aa8d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"729c06f47d5088e2f253dc0b56544fed86c6aa8d","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.6.tgz","integrity":"sha512-wVZPh2Zpg5MzJl0g+4Moa4IJpffLYdf7lINui+j3au17Z19guFNwnJGcrPg9BnYGGe95FsBh0nZyeEs2ccrvxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE0v4Y35ZwnRZqhUIKQNF2zI1RvfOKbsTIlY9m0fLBovAiBCBeFwdiNfYjQ6saXLe9ojg0U69v3VrUggXauo2MCRSQ=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.6.tgz_1487160283397_0.886279554804787"}},"0.2.7":{"name":"graphql.js","version":"0.2.7","description":"GraphQL Client for JavaScript","main":"graphql-client.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"e5c7c9433f33b5b1aef6e68fe9ea3ad056897f58","_id":"graphql.js@0.2.7","_shasum":"e06b25ca3efef42bc3cd1651d238eb3b7cbbbd10","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"e06b25ca3efef42bc3cd1651d238eb3b7cbbbd10","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.7.tgz","integrity":"sha512-Epvr1WJ/yoRGUiGgegLDOO5vHpc6Xj/mJXABRLus07AErPEQXORAhuNeMvGDTjy7lCOidGjdv19EtJHPo5HTwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHp0Z7o0wdP+rbInENN24taCUYt03pT1O5sIYQN7UeOdAiBneOgVMs1OaJZoaHc1gk5zUDiBy4LPEfYiWhdvJrehjw=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.7.tgz_1487160648455_0.39823014941066504"}},"0.2.8":{"name":"graphql.js","version":"0.2.8","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"91d0059c7b1aa813c94b90edad21a9809eb83f39","_id":"graphql.js@0.2.8","_shasum":"3fa5263c2262ab69a16716ba1cb765758e91269e","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"3fa5263c2262ab69a16716ba1cb765758e91269e","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.2.8.tgz","integrity":"sha512-RE6STYvwuAbIUxtIocxdVUtEGSevEBqxTUuAzZB2s4voPUAjaH5ww7QILq2LVuoL1dKejWaa2UOHICLyMoVBGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIa5DKORdMYPlXr1A56lDvnu1VnZPNI4RT0mLc8mO7wwIgdbN+yuTh+2UBDlMO3QMAOohtDjmANuP4OYLOsr0+yIQ="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.2.8.tgz_1487240159027_0.5566911471541971"}},"0.3.0":{"name":"graphql.js","version":"0.3.0","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"644ea3b54ca65551dc66fd8dc0a91b7083508ad9","_id":"graphql.js@0.3.0","_shasum":"3f8b47a9338543414790c29000181064949ee323","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"3f8b47a9338543414790c29000181064949ee323","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.0.tgz","integrity":"sha512-Dp+qpziHhg7q8QjpdAWxk/kEiwWO2HUHPx4nIxXM8B5v/UvN2arYt0L6J90Jze83VZ7OYYN62YEemgN16FQoqA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCiYVFlF3H8UGiXTotRKSQI8UTSGmguxpEKOTF69HzxogIhANSi/J4QDFN0WBuJLogVNQUlt2IucAgb+aA9cmnNTEwI"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.0.tgz_1487247814033_0.17624915880151093"}},"0.3.1":{"name":"graphql.js","version":"0.3.1","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"139314a28a12e81caff4d6aec199b2f406cb69d1","_id":"graphql.js@0.3.1","_shasum":"249d2e66b05fc30613b1385bdfa93e50d275e003","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"249d2e66b05fc30613b1385bdfa93e50d275e003","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.1.tgz","integrity":"sha512-rfQ5tu6rt4UPbsbHZoGqnNL83KUnJrx4GDV+4R2OcPCLtVMeLGoRjrwWEmtdEJzYQTE09wzwbr1HvMslO5Z2MQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIjKBfp09WUQVm8qUdHPdmPgObfRdlQOcDQFsEAh/BRwIhAMdfywdPBNCTVGK+ur+kZ+CjHnbKDth5OSKR6on5tbcB"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.1.tgz_1487248691653_0.1916009651031345"}},"0.3.2":{"name":"graphql.js","version":"0.3.2","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"b05e9169a44916a63228146c34f5b9ac64bc2069","_id":"graphql.js@0.3.2","_shasum":"17e6ffbad28a0cdcb75d3f55614d25e765df8647","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"17e6ffbad28a0cdcb75d3f55614d25e765df8647","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.2.tgz","integrity":"sha512-WVPWNkVkFcY+QonnxHnsyYFwfpcSmbP9Fj7wJ8Wo4Rt+Gv4lFu5U2uQ5vjtsxUhN1uTDt3O6fQ1I8VhoOfJXyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2tYH2EqTQxQZOwSJP9Ucl2WHefVXHt/uY1qqzlral0AIgNOk73w1kLM2/v+U1T1VMpjZm63pK4KZSXU3X6U41S/4="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.2.tgz_1487248851468_0.5503470303956419"}},"0.3.3":{"name":"graphql.js","version":"0.3.3","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"ba5399157bbdd98a57fc10d728b51e4efb06f3df","_id":"graphql.js@0.3.3","_shasum":"3836ff60c6aa2405aae15d2ff81765a6a740433a","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"3836ff60c6aa2405aae15d2ff81765a6a740433a","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.3.tgz","integrity":"sha512-fu/DT2Z7Zve+U268C3sSKvs0zU3Eyp1/WjhRKFgSUOuDjaJFOOQ5sX7XFO/So//Fgm3eACj+zlsf+GGskmmQuQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHrW0MfRQYAmwHkuOp8MB57kmNpcxHdwBkfasOGF37YHAiBucrtQfbyzIlgSoLBPIMcYs01+2oiAZEc4I2kcz9d+dQ=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.3.tgz_1487338029750_0.33265224378556013"}},"0.3.4":{"name":"graphql.js","version":"0.3.4","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"296e64ccdb87468369e7e8c75394391899b75ff4","_id":"graphql.js@0.3.4","_shasum":"5e9048d925337d355e750a95b7ac64a69c5f0d58","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"5e9048d925337d355e750a95b7ac64a69c5f0d58","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.4.tgz","integrity":"sha512-+fcIVoXKEVeqkCzd2mr5K35+7j5XrgF10Ep28aqY5c8e3izXqLMhXB9B2R1QJQepfe8AX2BtyPX3iL99ir1zig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDITu0H0TAtYq1dK/eL14xog3bFAnEGbk/CRB5phaq8mAIhAP5Oe0vL4wi6U5W/Q3+0vnRvMt3O+8dfBKvRJiJc20na"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.4.tgz_1487339473380_0.12188965897075832"}},"0.3.5":{"name":"graphql.js","version":"0.3.5","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"26153814cf4935f2d06a22d3ada08fcb18eb65af","_id":"graphql.js@0.3.5","_shasum":"c2e8b8df6ae6b497af922ab312e637746a1ce9f5","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"c2e8b8df6ae6b497af922ab312e637746a1ce9f5","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.5.tgz","integrity":"sha512-zf0V1ykRVuW5nwSrtzYQgNQCx3L8a+30vK8EyYUKcHVrV78X9S0hWXn2DQ5ubchp4ZTtCgkS/f0Afp36khbWlQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNYscMxNZ6HYufl2zx+hO/7H5gME8CwY60OD+Yd9pUNAiAYHNX2/HlHozaOuv/zcWap8u7ep3l5ZH49S6eZs1plKQ=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.5.tgz_1487344647070_0.3129152285400778"}},"0.3.6":{"name":"graphql.js","version":"0.3.6","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"bea78d3d91818e1e827e64151aa517920dc25f46","_id":"graphql.js@0.3.6","_shasum":"afebbb1f3a424fd2f103644b10fbe188def4472d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"afebbb1f3a424fd2f103644b10fbe188def4472d","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.3.6.tgz","integrity":"sha512-FHxDFxYkHH2HCQlvwcCwS3XjIW0JT8pwM7dUyxy9j2SFBRxD25FjKK/O6FrbqmuPdfMkpBsW64rI8rXy4Yoxcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHTinXMNspv6Fb9mYAuNaMH7uj9w2heB8YLaVhfj0sP4AiEA0/SFua3vYsiCpCRBVobtzSUTpqlI+ci/OWyuet8ptfQ="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.3.6.tgz_1487360890702_0.9037054120562971"}},"0.4.0":{"name":"graphql.js","version":"0.4.0","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"a8aa5973110fd52e1a173f26dba4870c9375db40","_id":"graphql.js@0.4.0","_shasum":"4a5ce37f0a3ffccec166cb076b546a405463d41e","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"4a5ce37f0a3ffccec166cb076b546a405463d41e","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.0.tgz","integrity":"sha512-I3bGHJ+bNoA1jS/tyjftGyvIaJp5O87oTRvC+ZG+gUr5Z21B8QoFRqN1ZKSJI6mifbl6cFPizR1ObPLXnc9x8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg6+F3NEHONloxgSP6zVKoF6b+1kFsptfA7cOoE2USFgIgXDFQhmG2cIuiFB2mCebw7eXaKvmxh7lsm7QCAVLyu1k="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.0.tgz_1487366770678_0.8505805369932204"}},"0.4.1":{"name":"graphql.js","version":"0.4.1","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"a9e81907f9266fcabe2a6622ebbf85e2474bfc1b","_id":"graphql.js@0.4.1","_shasum":"c8fdbc6497a6c600f0a917e07bc847d44786e58b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"c8fdbc6497a6c600f0a917e07bc847d44786e58b","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.1.tgz","integrity":"sha512-croK6M2sutEfOrluhSLzPyjr8yXBj1G8cYD+w5CMMekzj4BKTLFR9P46EHo+pwwME4KKLrgdPHnH7orjQuWK4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC+gS+KPhuiYL3WIbxDVIktw5Nvx0+tP75HkaZFKtPzQAiEApWJBmAPjej7p2matF7Lu7CMmMQNrifjCAYoLipWV/TQ="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.1.tgz_1487417181191_0.7695748365949839"}},"0.4.3":{"name":"graphql.js","version":"0.4.3","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"92c86a13a6bbe6e0a94ec81d7d5fed015076394a","_id":"graphql.js@0.4.3","_shasum":"9dc9e48a33f96858e46b47b119250180e84aadad","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"9dc9e48a33f96858e46b47b119250180e84aadad","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.3.tgz","integrity":"sha512-Tq2WNsbmzG519/7ZgE/dz7nUyhrAqYaNcWETb8j08endQtrZecCAb2DdFErpc/yXnIN3UPHD2AUg5H3g9+y9mw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC8K95CijNkZ1kpugo95mhAJDOrzXSF7zjjigmjZOpjIAiEA7VZ5IYG9UYMrM+s2WbZbIftfXOvpDvK3QMXAptThE8o="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.3.tgz_1487419963441_0.8907987596467137"}},"0.4.4":{"name":"graphql.js","version":"0.4.4","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"6a99ee6cadba7838f571407c34412d55edb372ca","_id":"graphql.js@0.4.4","_shasum":"d857ceeb018a1901450062067e41ca0bedca8629","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"d857ceeb018a1901450062067e41ca0bedca8629","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.4.tgz","integrity":"sha512-Y+DaKQhrt2ByPPcDr4ak24PBpgRUjYdIvH9l//RAo02eHKpSbl0obYey4Rp8b+nqUIfnnPw/ZYD/vrcJYsGocw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdFsYDfpJIuOOwkuW0VLY60vXAxzO6SfgwhkUS9nTr+wIgHqXb+axrj+gVNf45YTRQ0W+CzN4QncHIXL/45ElTSYA="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.4.tgz_1487449537086_0.7890497012995183"}},"0.4.5":{"name":"graphql.js","version":"0.4.5","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"1f60618745288097e7bab6e1aa9cc9bb6a1da802","_id":"graphql.js@0.4.5","_shasum":"6ae5b1af16d30a83c5ed6f5522e1a2868a0326a1","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"6ae5b1af16d30a83c5ed6f5522e1a2868a0326a1","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.5.tgz","integrity":"sha512-GQyt1/2Q8xTGrQX+bs3SRF4TlrMt9fynlZlYJtU0e/pATPn2OkHa2j29ETHn1Zbo/MFkFRR/u25OaAvBNAhfyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnpPsMFlD2e8DtYQ568bIxt+HAkXR/soMlTWLxC258IgIhAMvEdHb3a/3a2SCGhzaBK+0VsVD7SGhghtvNiKpakPLL"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.5.tgz_1487524318600_0.7984242686070502"}},"0.4.6":{"name":"graphql.js","version":"0.4.6","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"9924fc34899e76cedbeb238e8e116fb86147e98c","_id":"graphql.js@0.4.6","_shasum":"a03343cbe1a06136f58726ef1c0c17f47b98c1d9","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"a03343cbe1a06136f58726ef1c0c17f47b98c1d9","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.6.tgz","integrity":"sha512-cnkERq7HjQ3c3L9KPI9MfN0fXvjVVZnZfPxu3FqHVR2/LJ+UkqmNoFOM5ehmikwGnaBTSY8QBcawk+iLfdKmHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtahYWQ840fJAkOzWBGZLD/j/RaBEI9iwDP2rm6LuhqAIgF4qD1psHUtiwFGrJtTMoiHbz+TljlIx83OyzZfOHnXQ="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.6.tgz_1491380939541_0.29366849875077605"}},"0.4.7":{"name":"graphql.js","version":"0.4.7","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"a03e7de6fdc6b38d1c79b5046b0cc8a767d21849","_id":"graphql.js@0.4.7","_shasum":"838fcbd9e19c535c3861c81d7ff83f5d665218fd","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"838fcbd9e19c535c3861c81d7ff83f5d665218fd","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.7.tgz","integrity":"sha512-h1ARHSt3ZU/34mk3PezEIZbmo7Y1KEQiJ56DjJvwUygp1tUEknCm2sF3TIedysH7CvC3JTPgJqctixfmaDE//A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCTZ8P1x2y5nPhCdJi7rcW+B5HH3ZJ1MHdSrEopFicslAIhAJfGHNgxcyaPP2/Gxr6EnsQwIOD39Ts2u5mtD7fJFXA3"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.7.tgz_1491381027083_0.9597947557922453"}},"0.4.8":{"name":"graphql.js","version":"0.4.8","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"d3a41cda40621fdf943bcea916ca1938b9ecd2e0","_id":"graphql.js@0.4.8","_shasum":"4c508b1ab79dd6eaf240ac992724298692506cf1","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"4c508b1ab79dd6eaf240ac992724298692506cf1","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.8.tgz","integrity":"sha512-THWap6525lUPBccywUzgzWxUgXhG7enKd5ty8Kh5g1myUwjrUNVbB7OkEVrgRpJBAAnpYFasY1Stf8I4IYnR2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBRgjuArTXRjM+yNPR6CFY6xE6yztxXt5jjlHWLFcF02AiAaakKaRRCpgBAo3ROZOz2IA4CIVmb0XaoufiP7++LWeg=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.8.tgz_1492169566274_0.47974976850673556"}},"0.4.9":{"name":"graphql.js","version":"0.4.9","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"711770cb19419dcfde1f43b894912fba21c4032e","_id":"graphql.js@0.4.9","_shasum":"3547baecf64e5f466207f31d6cb9904237a322a0","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"3547baecf64e5f466207f31d6cb9904237a322a0","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.9.tgz","integrity":"sha512-Bwg++GIiFnBzmVl1SlOmwUA4QdV3qzrruYguUXccl+LiOWGQiYW57EEWsbRquR3ITRj889qkd0q4qb3NVEIb/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvrVWXDOpgiUS20LbLGdZzRA+vsXxBWjfCPRQdOnSjqAIhAMAXqCqtKIg4G4PWeS4IkMEqMB6KUfCnI38Izc8if36l"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.9.tgz_1492171358444_0.043420593021437526"}},"0.4.10":{"name":"graphql.js","version":"0.4.10","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"a0e60613fa1ffd02973d412df01ffef29a1bb330","_id":"graphql.js@0.4.10","_shasum":"31a8c03236c19e1506a63ef2303dd0102f646158","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"31a8c03236c19e1506a63ef2303dd0102f646158","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.10.tgz","integrity":"sha512-f6KLmic+WCOcFFmxejgTxxbQmRgxz2Fajnj14B8JhsZg17CJar/i+9bT1Mh+P5nmhxTERiLw1MM0C6gQ7Bd7uA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzQMjuqUBO9W+qij+lNYO2TXFR+X4e3olni6K+ltJOswIhAPi/pstQeelMbofQfqYXNSNMuf3bcrCXGuFenpm1Zzn9"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/graphql.js-0.4.10.tgz_1493797768868_0.7405432721134275"}},"0.4.11":{"name":"graphql.js","version":"0.4.11","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"4897077c082b70b456cc49b19ba50613757554a9","_id":"graphql.js@0.4.11","_shasum":"584fe3efeb67fc3215b49c8b5ce860f0bacf753e","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"584fe3efeb67fc3215b49c8b5ce860f0bacf753e","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.11.tgz","integrity":"sha512-sgh4z/SIh15mgl9TubOx5AIHj3rLbbbXdiYc+TGBC+D6JtPvs8c99+boaKboN8ZAmW4Kmsk7DEfu+LRqWXW0fA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF/rFY79Z7lHz0OQL9OOZu48lLqx9YlRREQkjd5MM5rgAiEA5b/Ex5ZCrkALA+MUHEODE8/0reJmoBzGh7YGpbV+TNo="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.11.tgz_1496661273413_0.42897037183865905"}},"0.4.12":{"name":"graphql.js","version":"0.4.12","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"4bf84e2828a11036c64e288f01c2f13d2eb16aee","_id":"graphql.js@0.4.12","_shasum":"4eac00cd794c00202d7c4d2800de91d548024730","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"4eac00cd794c00202d7c4d2800de91d548024730","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.12.tgz","integrity":"sha512-IX2rlEl1WEKGBcqggQUzirrWg0RHVhkYtk2jWSqC1Pap6Ty1DszGNtSm/K4ItD4WGetz8Kw89Vx6D1M2qB1OSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHXFCILpzc/f4K6UxZJxw4NpS0XcBOmq7GwFJyxZaOBSAiB21WBWIS1gVEP6Jn+VJujO5YrQUCz499mBIoz7j0jp5g=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.12.tgz_1496918977985_0.5276659703813493"}},"0.4.14":{"name":"graphql.js","version":"0.4.14","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"b02c9987a82b9bb546a74a061a6f306c13c6197b","_id":"graphql.js@0.4.14","_shasum":"3ac31ad2a9d5271242987adb8688e8f1e457c807","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"3ac31ad2a9d5271242987adb8688e8f1e457c807","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.14.tgz","integrity":"sha512-IVVlhr+E1LobP6PZELEzsBPAmiPrJF9MTCm8rxtiHO+IBGHIjx7reU5M3VWikB4wfjdKJIW3GMi3/tTr2WzCQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEmG84fwttDzXfWlkRXwIOJxK9ZkkR3jjpz8KrCSBy6HAiEA1B/91UIGwCswxgx2Lky8xHPtDkjEFYtjZD48bFIQm3A="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.14.tgz_1496919522087_0.5162073213141412"}},"0.4.16":{"name":"graphql.js","version":"0.4.16","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"1ab5ed782bcba0941ac9b462bc3fe4800446e95b","_id":"graphql.js@0.4.16","_shasum":"d00f8c469c607f895a0cdc3c86a7adb55adc4993","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"d00f8c469c607f895a0cdc3c86a7adb55adc4993","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.16.tgz","integrity":"sha512-hJ6lwq5mhRSWPMsWP5r0kQ+bgJiN7az+AchVIk6HCYiX4db9hZoJma27Te+qupfTrYyLjMHzqGw1KoJLlj0UqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICq4wVajcKZ6wFsxaUCC8gMKWShH1UuxuEQPNLgGa+diAiBthVjkAS7P+WLB/2FvJCXv2WkfNTJh1t71jQHg3ggylQ=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.16.tgz_1496919791717_0.8261540879029781"}},"0.4.17":{"name":"graphql.js","version":"0.4.17","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"2c9784ceb6b37c238d8dba94462160017cdc8ea2","_id":"graphql.js@0.4.17","_shasum":"7d8a8e4e76c64e9612c9bd96621d18d2a26363b1","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"7d8a8e4e76c64e9612c9bd96621d18d2a26363b1","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.17.tgz","integrity":"sha512-w6aJznm7uRlQ92Eu76oKdDGKumZ2hZq9BMd6ZBfKgC+57Udb530m12BEbUHGMd5wyNZPV+XEmkISUkEglkYvrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFUGNrcopfNo18PpLP76F15UhRy/00yAOzMA6GAtXVqwIhAPvvR+QyCyKyxCKF1LjIB2l/4hkL8y4GEMO2Fyj1Zvw8"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.17.tgz_1497957961698_0.22995739872567356"}},"0.4.18":{"name":"graphql.js","version":"0.4.18","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"11660ccd09b0ac2e7a2024811a5f0668f1c3472d","_id":"graphql.js@0.4.18","_shasum":"6cd2376aa60bb6f9724bc1c9e8b4b837b50b3cb2","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.10.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"shasum":"6cd2376aa60bb6f9724bc1c9e8b4b837b50b3cb2","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.18.tgz","integrity":"sha512-r2McIZxe2caKqgYBh6SLpgMqwCqxqcn5oBXE0i06RuWGrvc2zcz2jx08cO87AVCehC8l+RIXo4RIUo0q9HrTUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDohTxdJ4CNS/Uwk0utTTChhb+Z9qMbBBY0eglAi45pWgIhAIOGsimcL+jNMEGyNX7VNJANOl81XRXTo3vlORYANMTU"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.18.tgz_1498647378821_0.40182266430929303"}},"0.4.19":{"name":"graphql.js","version":"0.4.19","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"ed6500298965a46745ac1781e9a664ca1bc28028","_id":"graphql.js@0.4.19","_npmVersion":"5.5.1","_nodeVersion":"9.0.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-gsL5tcRpfAje3xpBmHYFdsXhLNTODyMC4vEwYyPEyfdsLfh9UO6sqbAPLINfo+khL6NvvJRajbdth+5ImFfBcQ==","shasum":"34a696b3e1c7081e5ef85ff93c06a765f360783c","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.19.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJjNo3Quml0hEXPMuvyo2gAH2TGxXtlBEWvMZHH89UNQIhAK5qc030ozRfJlZ63xgEU9PiJDamhflzBZcwj6mTa1+B"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.19.tgz_1510309357695_0.8781016408465803"}},"0.4.20":{"name":"graphql.js","version":"0.4.20","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"40c4b2ab3b5a5e7f8a35d71d58f06c95080667cd","_id":"graphql.js@0.4.20","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-bVekIr1I+bIN8sbYuD8IDNFcKYbNBNyorbu4icYIvToG6VVLlEe3m+44XURomS69rjyzwPWoYDAUCnG530hT+w==","shasum":"bf64b6a90d50db4cd51234adfac86ea6bf4ddf0f","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.4.20.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH/JFyHVuKDY4TFZdngxdUfe15ASP/OPRZkUelhO1d+cAiEAh5WSNpYicLjL5H36mQXjuqaCI0DzhzJpxqJlL8VCt9c="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js-0.4.20.tgz_1513164058263_0.6101717287674546"}},"0.5.0":{"name":"graphql.js","version":"0.5.0","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"938986060e4e815dd7ef426709642bb45c8e8499","_id":"graphql.js@0.5.0","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-GR3piNkVV3yRcY6j4fl9ZId1eDQJtlIkTDkLYJXITOIkziiQpHpIk6mJ+FfrM53DkkeaOkwRohzECyNU8xVU/Q==","shasum":"22d98735922a5847a15d04255f2072634ab19355","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.5.0.tgz","fileCount":12,"unpackedSize":46270,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwoRgCRA9TVsSAnZWagAAm70P/3IKV1FokxEp759YeScP\nJzB8gXi2XL/lS0IzENoBbviuTatmzenKFiQzDVMFNszT+5uUUiciFNJhAsZM\nlgJ5SlWdciTWWKf4ExitktEvkhxzawGmjpCLu60SC9cH1XfLuIlR2e1RgbUu\nFAaOPQiIjsP3WgT5oMebL2Q0ELLzP/z9TpV2FWt6ojem6ZdDDhztNLKKZkrT\njEVzTeRU8QP5mjhrWRQdK3vebcp+BwlhmlUZv9CgMG2JOYYcDobOjiVseIaD\n7uSZrUO4mGGKCGdXOlbt/N2yZM2ntqkOU6GwwinstR6HWs9aCigLQUrXXtjf\nPlpZkhHNmr9WrGrEH43YkutkyjmMEJ0D0JOiAJRvV7fQ4BMKZkTAIJCSzTDR\nNmRXTjujxbDeMy5gzgdvmlJ5lU92lxG33XFZ3QQSDtF/gRDyOvu0/X55Olgo\nIT0+7oZWKv2f0PzxrzgjmzRshnGUjxPmQxq0/mefawphQH5bBRliKYOyvr7a\nwl9WKYLirmuOr+XGebgMccphyIgEcTAonrYOKn5QIY7a2RkOhG6NramXVXfa\nEayP9nBD6oA7GHoitHiXpVc80sISzjPBtaiqOvOvV/ukTsu8plj074IlB/I3\ncK8dY0jikC9LDC2ELxz9HvSlpLyxmRRs1sscHc1aV+MFdNMZfCki6B2rwczV\nRvUv\r\n=dGIY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICKHU0BNPoenMl5pZzR71IyJOWrRLCQKwwIv+uPxtE8eAiEAnj1/8pdNOi2I6PX/RpubU85zWluYnuw2/ugFJtcqcQ8="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.5.0_1539474526983_0.8989490880633548"},"_hasShrinkwrap":false},"0.5.2":{"name":"graphql.js","version":"0.5.2","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"f63b798efa4765c401e760290f6f77644a61af05","_id":"graphql.js@0.5.2","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-+Kwl1kwcXnyzXn55Imic6OwRQrtx5w1cMfSjSG77g4Z4qSSJWKgfn2ALKbyC/GskNIKalxjuGgGYCKQ2SkcROQ==","shasum":"a58a5dc30de9b712331d566a83860b3f5c4ac896","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.5.2.tgz","fileCount":5,"unpackedSize":40776,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxDTbCRA9TVsSAnZWagAAEtgQAJ1psbSHilCAjhbIszf3\neq6RWML9ETEnLf5dvb+vj49jLzxiVCjKutBkLW7506OKBO7dY9OGKhVhUu8x\nIVt1nmdKvRrf4MR30yI4A8OMiKNym2w4D7DjqkrqtwpfcfrTLwPd7jhTW6aG\n+5OTLT1EuACGW+Je9XfxfNlLwzT64lZLBmZml/xlapYbO0PYvgdLebu3Wd7s\nwwkjK8ylabqh/5xpmtTf6RgTd1dnQeDXPN3r1QVRI4+OAF7lFZ+PkSOBwmUN\n7h24LNKQ19hRgox26ItCQ8ZU+z3gP2qyAtTuodN3ygKvHLbI4YyBiZtjamQT\nAVNczuWRZdkSLJ5IxnMoH4HfLVlVp7xAAvekqB3BdtWCR8CjlgZACtTr0ht1\nQ9ZM1YWY2lYx/awlpxcZbfdRu/RSzIjwIkhtN7TM9JJjDvmWs5x4vbfdS8Du\nEUFO9zakhLcWrbEm6N9mTVk8p/lb/iOhJjBXTndWE+z645+/JiW6g3BIZ1g6\nLJE9aEne/cidsNIxag/qnyzMpLH80Ug0+2+FqdOIUkl2Mid42fLBu/0JasMM\njD4ZwZE8vunvE4F+gekw2KsAkFjEoEFW8X3STnAyPu5ZeIfUB6Edgd1qf7r7\nCU25XXg1L1ffU4RLL1dkvvhTZdzcXL1MEO4PLrPlDpQ/bzOX8VYBB7KXdAcU\nA2OH\r\n=zJAx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDughbrC8EJnj75aIDMtdwnjciL+MmwoZxaK908uTPRwAIgeL9YB1mY0vyIUjTgoaHoeo/J80TuvnjYSLoKJnive90="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.5.2_1539585241933_0.7771410660225977"},"_hasShrinkwrap":false},"0.6.1":{"name":"graphql.js","version":"0.6.1","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"323415c2eabc5966a952f73f5dd272fab481cec7","_id":"graphql.js@0.6.1","_npmVersion":"6.4.1","_nodeVersion":"11.3.0","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-4QD4kciRSrBFW0SfLwD5TqSLeB2BugR9YwjULqGnewnu7q1H9qlD5WfwvggfKsrDvcav8QNcab7uHYlRljw9Ug==","shasum":"7adaaf37b1ca221ce54751324156400c600d3d03","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.1.tgz","fileCount":5,"unpackedSize":51596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcD4toCRA9TVsSAnZWagAAGrYP/jYf4HBIMr4qTTbnX5F5\nJ07oaTxjwV74PmkorgjnUxN+UDF4v4PmhkiCIEmdF3rvhHTSE+DHzifucMKe\nxb7jPZRQ3cF/7MMuvXq53bjXqUNf6XKeleQpy0kjSzSSwPz/mJLTIqJs8+XU\nmf5YqyZsK++LN/m26GKfCD9h/R9FJKbzk3BEAvS1fflJAlxLft9GQ8fdeyli\nnVNJg9jL+yfrQPCBFcRl9p0/9okcai8c1jE4bXhWOVGp+m+iuG+tx7jx18cJ\nEqHz4s+8xtNnFHNhhzRkHGYku8scV4FDPC+zQ048nmyKdkwiI1eTRhTLksr1\ngCHPRFRkWv8GafmE8Cai3MYqGYR9rWgsnW/54ZgTZc1M9mzwFrClaoL9WqJn\nNlaj6jSv4yFgjOVGnu3VdZ46vGEx0S4+3HJJXN0umEPG9le6u7hIa6kEcvbB\nDPMn9J9K+Ybrp0Ajj5exYORxxdxRY613qMAl5zk8hi78Ui60icb5caN7oJx2\n9MJyvPLKtinv+HwQ42lOAF0KKcPCQ0+E1rk9dDVuVqLN0hIOwbs0iqYVfR/e\n5YcCxC4fSPNGoK5z7/E9mGWHNX/n0Hw5vj9xRZ5mcNT4Pm7fL+/+VEv948yh\nAjmkLProN3IM+SUEEGwetr0bsfhfpKUjhUckAp/w9o5TL+0u7DE/s2yWcp3Q\nyttP\r\n=oTA0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAFrVQVKX7xHhQgP98AveF/sWgxKmKMtDP4VyZnTnCu0AiB/jdofnd4L/SXZsXlaFN9/Hud6Nj1Y2MqTMcq/OU5/XA=="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.1_1544522599609_0.759045940428003"},"_hasShrinkwrap":false},"0.6.2":{"name":"graphql.js","version":"0.6.2","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"1a56a3439d12f834b2c2c197b2c5d5070900db88","_id":"graphql.js@0.6.2","_npmVersion":"6.4.1","_nodeVersion":"8.15.1","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-CJZw6JKvbcDJjCN6KrpJEpv+B4gzSEC3V8pn8UNnyGF5CChEozh24cvJf1nVhRCXY6yPsF/Kwx2yqW/va9aaeQ==","shasum":"1323bcc333a4e046cd5e3733d9da2959341ce3f4","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.2.tgz","fileCount":5,"unpackedSize":51997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3ThACRA9TVsSAnZWagAAAeAQAJyj2S0Jg+GuqHunkU2Y\nktWL5EMZzsUVbpPhy86cL3OqRcC4X5cUChEnB9p3hcbzflZdfRkl+pOExDfZ\n/Is3TthETGXILzF+LyEm5w3Gvxq3bAXeIKzg0iFDq9wy/wfXtmPv4Ow+50Nz\niA0xBmhioTWlt7NLNvHeHuWTpr+ihCFoKv8lm00C1Yl17j31chGIU5jGWhid\nHl0l20Teb0Xy5JGIdI+Y5MIRa+NJkxhn07eUC+tfC00tq7082VgBfrwYFqOJ\nASZml+5241LFYYbL9O8hKyhVJ2q2aT9DhfD0cNIOr4PbEc39zixNFxKrsK3E\nZqtleVtbOL3R22y78En9uUmucPdtl/jYB/8FpcF1qsybppOnwhRvsC5OdCfU\nYJH+ujs2obg8db2Lwqdly450dZbT0RhJRwV1bufJ86XfnQQEPe3ShvQ134Vl\naXYif4Cwm67/AKZKQaWo0dg+TQrNNsy/E7FRKvMlwlsImsNSCHlJm8mGfLT6\n1WAjXpzAnW8SLWS2UMlkefs7lDFD0EV3VpOAd+YryBzwmk8NclnvMcdyR77E\nw6RmOSk3FVkhLyaAFKytoEq10aDLwuy5xG+7GUHftRZIIwczwkK7qkvdwwJJ\nTgZWff/TUV0TacSZ4ZuVoAubn/90BTUIEHFliRMJduTURXNuw9FxK+HSGQAy\nxpGT\r\n=k3fL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA2PnfE2ubLOslgn1iITwXYR0rNrgHpTi+mpFMBa2kS0AiEAmgDwAyQfEO+FhqKhMvzKBszT8EOaj12GWqs1SUPvEj0="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.2_1558001727446_0.01065575536105956"},"_hasShrinkwrap":false},"0.6.3":{"name":"graphql.js","version":"0.6.3","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"078e9531228cf4a8dc92c6d1871ea174baf1a6dd","_id":"graphql.js@0.6.3","_npmVersion":"6.4.1","_nodeVersion":"8.15.1","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-jhPe2HGJm7tPMQBnhyjbpUS9tPNPuah5LcIijIbVeafRLA/ZLMr8m0iH6hfCdWqMLLmSQdr0fh9Bxi8FdiplYQ==","shasum":"1e03208ec73b6bdaf4c5732caa0af5fac71e899b","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.3.tgz","fileCount":5,"unpackedSize":52794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDIC5CRA9TVsSAnZWagAAhzAP/1CeEVWLAQE3uOZvYt78\nr8qDinGd6QSe0LWXTDzAA7it1vrhL+3tX0JBJewFLfI5WJP76uPwFSfXQHr7\nPkz3K1yqmF2fPFUTG616vdiXBaD5jf3f10komjzIdbVOAKkG5O2I/8WZjKIY\nOsPuiLn++NRJVo+Sv22nmSPTbuneIBzIsQYhoXaybIz5p6vlp+5Mp+0oCuG8\nWNjy+4sK13xBo/pTKBln24cTU16yuwVasE6j0cIJ26oCX6E58p0f1+3xinvx\nuMIVIVfw/A1p/Vcgtsu/pCPWRHD9sNQmQb0tBpTtgtp/KJfgrg54vntWHENQ\nvcZahVSRbGDHYNLI0dj+NyOgSHKRW6mTmoQs+u1dk0tua4PJo2KrM9mMxsgX\nMGSUG9VfxQixGzUmd6laB6Z2jM1J22lyVOgM/a6TA14DmkYKZsl39oQmce1G\nVZ9h6HdG6gLyAqOSIFL9zZajRHtXkZ1oml9hJuWqjCRzCWVJhGIj7h2CXDfj\nq0nwTIj8w+h5vXZaC6f5OvA1NNpcP6S6+P7DwwKbV4QpSqkIWIKJXuIfqZ56\nQ5Gf5mSdb2G4E8cEhtGAVNuUz9IT6eWTj79uBHl14Qv3ZLLGrKvHzmjSn/Ir\ncN/ctq4hH5SB0EgUbEAp3uENBv7G33KWOapulwKYPBf3Wh0/E6BAbmkDv+Sb\n3T6/\r\n=a+n+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHLebh+I27ZByoKuJO415ZF1NjHObdRBobUjnGdJsB3hAiEAhw59XWFEwLTFFvwG81RY8w3HDErdSf6jYmaPHvlAl9U="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.3_1561100472509_0.6420875397987185"},"_hasShrinkwrap":false},"0.6.4":{"name":"graphql.js","version":"0.6.4","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"4f558a0bfcf801cede02e914dcf853214d98c8e5","_id":"graphql.js@0.6.4","_npmVersion":"6.4.1","_nodeVersion":"8.15.1","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-lTx3wUxwhqgZKGdN0Xd3LzAqAIcnWgti/TjfJPsb2PGjmjZgfy7NCDg02Cppyx7idPVQD1zEz/kD4FNSHCNagg==","shasum":"c6f1cb520bdc53d1a2d8fa9a47c058d0f3150f70","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.4.tgz","fileCount":5,"unpackedSize":52794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEpbiCRA9TVsSAnZWagAArv8P/iRCIKfkza2vqI81hyUS\nqpcxC5H16NxVoe3ojx88OSXMPjCE+DdeM986WT1+tWa3evFQXWF+H69gOS5P\n67pokR8a518EG5XBXKh5L84WlLYRPkWe/MVl9DnlYMf58w5ptXUJaIIUCJw1\n6ypCpj9Xt817TNiK+eAfp4vaefx8qavJ4VcXDplYWERjqkBBdk5WK9YlmgKv\nWtDNvJJoNJ+cqdKoYbVkam1BJlP1Toc446ppJvvKE6FCwg6YQFNK6ImEbarv\n67+Cztiop3b51GIduWmMHtpP0+3fMTMle7MgvdZix70l1SccoEMbFzvgwYk5\np0FfcsX6AOcQApQTx+Jc65J0R/Cm1YDxnZm6ESRvjA1u5GOuSHOlnTZbRopV\n3cbwwRG0sY7ekepYt1wzstinhFq3UcjVCRsPO+RlHDj+alDJEl8fSHmTlaMD\nyBtIQkvCjluF+mMp7WtwmsRG/rc2RBVcxzRY38xi4xfokZBNpMzn0K3Mtg+n\nsMgmtY0hZ1zVNGi6kphl069KGzbveHy4Zl9ixld+GOY4uB8fgawEeR94yyBe\nzUyyuek8EC5BSXGEgNyY5MyQF//Lu/V1rrgB7ohLVyaZmLZlj1XawAXaN6Y5\ngHbijl4ybvrLo4qoj0K3p3/YqCRE+Olp5bNe/9qK9A/Bb9iTlgiZQ8+zI1ZD\nBlOO\r\n=Q4lV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNkrUWPX7Wf92YFLd+/aM+2jQBC+uQIArDTWUMotCv7AiEA3TvHlMnzkHy/Exi6le4nrVJOb0IVcWClSFgXupoZwvo="}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.4_1561499361724_0.14983716348488496"},"_hasShrinkwrap":false},"0.6.5":{"name":"graphql.js","version":"0.6.5","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"8251aa52e11e73afcf338c2ae75d3a631590d9db","_id":"graphql.js@0.6.5","_npmVersion":"6.4.1","_nodeVersion":"8.15.1","_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"dist":{"integrity":"sha512-C9hwTP8COeKlodFJ8f+AKqZYtwIJRaEf9p+njyqqqMF/YypRLZ+o2SvL/0ykmYooBlCYb2eGPk66x1nqBTZeMQ==","shasum":"6be088d3d7368bd028eb43c31ef53671bf9e7fa0","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.5.tgz","fileCount":5,"unpackedSize":52794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEphbCRA9TVsSAnZWagAAF0UP/11B7lRtkTLW6kVHvQaR\nPXy46HNXEsKH4pJhbSC7qP8HfpfcIXxM1u9eDzX5vOyA515UtXAMXFtPC721\n3236QD7odHw30UsNAsm/NJJulClg1bLqaACqhBtrbdiM0eX34tV2KfUaU8m4\nhiv73b4PghXtTUTU7clKVnXGVbSMM6IGoyRYQz6lTJR5KFJGp3/2LA009tmN\n9yHJeFRbD5BlXNGwCxXGIcKcODbnX4r2opmWMfQBa0A//rkHEPKOYFgZlxN9\nJB3CG1jxzcz8k3sKxJvONMlZJ5umOOG1ppT6oSTYOqY3ikuSi/C+WPnJ0y+G\naOOt+GLqCBlWUNesi2VwML9796vVHzDwxvY0EerrpJBymqndtRxlLERq9lQ3\ngtH8mVOosGyF9Cn93qsDqtRODdEGEMEhs+Tq950yxYUJIBbfdT6VUZJ2DCXF\n+UMZXzxJU8XzpUwHHwh+24Ri0ZdHU8q4G7roRh8uUw6IzbXoGJNjZAlHrvFZ\nlMaD3goFafsX5zc8WhffBkhbpagvGBmv06zJCNCKpVQ9n8rh0iZBcvZoR9AJ\niL7saKt2WSssIfVMpfrZXOAqSkm5rwgNAu+Xk6JdC+9fEkvIXJO+HwqjTP1/\nutnbIahdCtbbM3NlZg0XyHYP5THOBM83i5WMFDoArR5DZkjic2P51ZByH/NE\noiOX\r\n=/q4d\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCP0yfWXVDvQG22kHQKHnoDOupnqaDowaHMyAwfHIEn6AIhALBYCUbHMVBg2X92zH6HWhk8VrarqMzDD2RoP8G8FeCR"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.5_1561499739014_0.1232962671954021"},"_hasShrinkwrap":false},"0.6.6":{"name":"graphql.js","version":"0.6.6","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"0d19265fd3cd07ee5025993b8b6f0ee0fbe08f66","_id":"graphql.js@0.6.6","_nodeVersion":"12.7.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-JPp3GlZBzr/xNxv2goT8bn54MjVENYEF8AyRoPCxAWyXEeRMGpo3IfK19trSlBJNYXpMcGO4sVh3olcO9iM7Bg==","shasum":"ed61ce9c2bd22893054ec32b00577393b889f0ff","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.6.tgz","fileCount":5,"unpackedSize":53097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3lmNCRA9TVsSAnZWagAAZMAP/1TcECrvQZ682Vs9Nxq3\nx1sM2lrhyA6ic60j0LgBJCaOq82p6uD2foup1f1BJtnuj9Zjv/AR7Js8GxMA\n/WGu8dSlAZjU99ufDPrYZK0avD3Exaedoea8xH1eEWt9zmMy+KPycJ3zLFAz\nCkCXzewSsgiQIc9PWZUiCfbOuyc6kJVBTJ4f5ZkZqWZeoxzlkZkN1FfBRC4F\nj0cq5avZdvv4bMtSc7fWVRYgrlarNYxtzxdj+8Px2CJ7rpgVStN/a9FdonMU\nV519UGb1NAzFWQUaEEcFKhIz323s3xnvGltUCUWhNnChFSPHFkAccuwgtsku\n3i+jXI7mvQq9n7FmvGKH/dNeSAfMgtv2rgzBvI3qwp+gTovzuJe00EHzmpaP\n0D8qDcdIIk9t5xYTj79IQ1Xsyfll8tr/N5SP4UbRMZYNtx66Cl1+tlvMm5HI\naTqKjAqLyRbbX1t9ZByYdWXqQBVa5+GcJgFvlZ00nhFC+9utQsnQJiyr7RwQ\n2dBGLOVjBvrbgyNn7R2kdqraTRwbuiFhBBuQe0gBrqHaHTU8MtuexyRIQpEW\n//Cwhc7jzRWtlSEKuXMEzNhAK22M+Rkiluu5w9YrwR1nw56qvTaiargLmfCQ\nqtxvL/U4EvbnkGDwKjcuUPkFFjtYrf6N6osC30rq74t+PD7tatkofjQcemMZ\nCSeS\r\n=l8nw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMA0qoQ8I9IJ+/75oq9ea8HsL8NTCfkTw8gWM5yapeywIhAMQl12vmKxOygbngkpUxNJLXJ/dr6SeLuc/JlS6NNmhE"}]},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.6_1574853005452_0.20121812968864172"},"_hasShrinkwrap":false},"0.6.7":{"name":"graphql.js","version":"0.6.7","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"make test","build":"make build"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"cf36009fdec0830cb7270e6a13ecdddf26083c7c","_id":"graphql.js@0.6.7","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-pGODcTc9cED1XmJ5xbhBIFlq0tx4VFoiBQ+FmQNKm4iNpCKInCQIc1sYeQSC4Co+Da9pCoUmJK8bUXANBMLgKg==","shasum":"e76e6fe36e1c2e1c01a1ff4ae0e690eb8ac3798c","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.7.tgz","fileCount":5,"unpackedSize":53237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4JMRCRA9TVsSAnZWagAAVi8P/0xNu7BsAON22qYHGgcA\nqW/t66JEl5D8Fnupdrt16fc9RJ5bvYWpRFYJ7OcFwz9wQ+5Jm/S6QGLn0ujY\n2FUT8Z/K5I0Zka6q3Fcj9tf2pi403MGpnSV3+fZQG9kw3mbhiZxpGXm/VxCD\nC/znGJ/G309JGBJ6hJmqb7X8kVcTGBgh2rqnm4WIVprdrmi4asW5lQaec6EH\n9K3+3Lmclh7kkfaItS9RGKBABroMNJIkGrpaIxiF2sQfz1GcOzMfFRETtrjX\nAFmPoSpGk9mE4IpYH2crsSW3SRrS8KA+nfF++CiHbZAVcuDGaMheKCHIB7hk\n0E+AOl5m51rhS7DaRh5e8MelxcAo4pxNbivOq9AljdpEOcFf/0KMZ3l/u/ZA\nQ4f7x3tLJgAEWMZPXh+UEfa7wzo0fxO9J1W5Q+dNeKk84YXAA//n0awxtrOX\n3gVmNVGm1w8zreQRtdvG7JHoALcS3F9C+cq+5Qn8HdmMYMpuEfrMpVC0dNll\nAJsauNBtcTbV2QbpiLno/mk8THxgsn+iSq6fp19eHgcvAMWOU4/sNOpVRabt\ndeUmDwaiMOrNokPd1FIvrEtlmBsO9pYBayGMNAkwGojKSwl7bbtntQogSyPz\ndGhwdVBIPFV2z5RhbtlAVSMS/JEL2XxvvaEKBXFv2Eg4vUcJMDYI1eDLbR0B\nPvNE\r\n=r2kM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC6uqluFeomtWuRouhmW06u1+i7EOZGaaHkNQSSmLGBeAiEA6hZcoPoo6RZyo2WkLg/QnGhUiD2KNC+ShL2Rgihndag="}]},"_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.7_1608553232916_0.2227273532040086"},"_hasShrinkwrap":false},"0.6.8":{"name":"graphql.js","version":"0.6.8","description":"GraphQL Client for JavaScript","main":"graphql.js","directories":{"example":"example","test":"test"},"scripts":{"test":"jest --coverage","build":"uglifyjs graphql.js -o graphql.min.js"},"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"devDependencies":{"jest":"^27.4.5","jest-mock-random":"^1.1.1","uglify-js":"^3.14.5"},"keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/f/graphql-client/issues"},"homepage":"https://github.com/f/graphql-client#readme","gitHead":"607be0371297cbb3c4e897cf9821b3a2deb88bea","_id":"graphql.js@0.6.8","_nodeVersion":"14.17.6","_npmVersion":"7.11.2","dist":{"integrity":"sha512-y1OxsvPCfBell00yb2T1E+JQjFXzbmqDT3hsf7Ckof80DlRuQ3SrmLL7KC04Up81vlBj+l9opYJjDLf9OgMH3w==","shasum":"5c2e57311b5e74c6665ff9394394bc76f273542f","tarball":"https://registry.npmjs.org/graphql.js/-/graphql.js-0.6.8.tgz","fileCount":5,"unpackedSize":53393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwNWuCRA9TVsSAnZWagAAVtIP/3D1v64HgOsC1yyjXsJn\n++7EgYaqmkxXPCeGvDE1VkpiFXl7SEo+SMXmThRQS0GIGAE1G2Z4Oup1reXx\nsh1q1y1afiGrUeADqenYzICwq3GDuH48GP3FmtpsXuKg2ZPIsNIpIHVMGsxk\n31wzmYkmj5Ijy9Rs4uS9H3jv+t4iLPluGRRAWwjcqsgUx4NeVP+A/eTmKkix\noyBoot5CieBujUgm9nBFkqYMNGSnA8+3LeKB4wCkWuZvL432yhofH96ew7f7\nBmAH6uCmGcMEsVeCBcb8vDOtaEBwm8OW8UHWmQJ4YsWjtFgsrInCjyh5wa/d\n2g4iviOENmGgXOg7r8qdASqiMQGSpHJRR7x2zCn/st4bW8v1qao5rP0XuVKx\n4aFcfHIrtKiiGnD3lsOZiuoTfAyNFTnIbC638fq+bJQMdVbr+uQtTfGiswwj\nweBXrlrR6bW1131YNv5aHB+rW6dUBERAOn6v6JdI9BGkXHue0SIa6OJs8Ejy\nwWdmY2EurB69vIjSr1rCftPAojLBHzQwChUXaauAvRcDOFVdw/Rk5ythYaek\ni699rmlOVxqGNcvTE14QFQCHRGWakLpw8Kv3lIceqGpFEh9Wl37ApHkQscZS\nhBtVQg7Y2Yy4Oa/0I51Ll1vhZaw4LNh/waEDbjbODpCSCP1thpo7F/4T8o9I\nbdtS\r\n=eZgB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDspNB9i1TRw1oy9NQX7Vnin8DtsCRKOhE7IhmXHjTo3wIgMeXx733j/shTUae2eVKZwiBuvHFtDRJ1HHC47m62lJs="}]},"_npmUser":{"name":"fkadev","email":"fatihkadirakin@gmail.com"},"maintainers":[{"name":"fkadev","email":"fatihkadirakin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/graphql.js_0.6.8_1640027566618_0.300203094133501"},"_hasShrinkwrap":false}},"homepage":"https://github.com/f/graphql-client#readme","keywords":["graphql","graphql-client","jquery","relay","graphql-rails"],"repository":{"type":"git","url":"git+https://github.com/f/graphql-client.git"},"author":{"name":"Fatih Kadir Akın","email":"fatihkadirakin@gmail.com"},"bugs":{"url":"https://github.com/f/graphql-client/issues"},"license":"MIT","readmeFilename":"README.md","users":{"ash0080":true,"flumpus-dev":true}}