gitextract_7arzgge2/ ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── src/ │ └── index.js └── test/ ├── fixtures/ │ ├── apollov3/ │ │ ├── converts inline gql tag to a compiled version/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── converts inline gql tag with fragment interpolation/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── does not transpile template literals without a tag/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── does not transpile template literals without gql tag/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── handles different imports based on options/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── preserves imports when cannot parse query/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── preserves other imports from graphql-tag package/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── strips ignored characters from source/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── transpiles a single unnamed query/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ ├── transpiles a single unnamed query with require/ │ │ │ ├── input.js │ │ │ ├── options.json │ │ │ └── output.mjs │ │ └── transpiles a single unnamed query with require and other tool/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ └── graphql-tag/ │ ├── allows a custom tag identifier/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── converts inline gql tag to a compiled version/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── converts inline gql tag with fragment interpolation/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── does not transpile template literals without a tag/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── does not transpile template literals without gql tag/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── handles different imports based on options/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── handles gql tag with alternative names/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── preserves imports when cannot parse query/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── preserves other imports from graphql-tag package/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── strips ignored characters from source/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ ├── transpiles a single unnamed query/ │ │ ├── input.js │ │ ├── options.json │ │ └── output.mjs │ └── transpiles a single unnamed query with require/ │ ├── input.js │ ├── options.json │ └── output.mjs ├── index.test.js ├── package.json └── unnamed-query.test.js