gql-tag like but not convert to AST
npm install gql-tag  
 
> An useful utilities, help to highlight、format、auto-compelete Graphql code in you Editor.
``sh`
yarn add gql-tag
`js
import gql from 'gql-tag'
const QUERY_TODO =
query Todos($id: ID) {
todo(id: 5) {
id
title
}
}
const GET_TODO_GQL = gql
query Todos($id: ID) {
todo(id: 5) {
id
title
}
}
expect(QUERY_TODO).toBe(GET_TODO_GQL) // pass
```