1import { graphql } from './todo'; 2 3// prettier-ignore 4const x = graphql(` 5 query Todo($id: ID!) { 6 todo(id: $id) { 7 id 8 9 } 10 } 11`);