1import { gql } from '@urql/core'; 2 3const PostsQuery = gql` 4 query Posts { 5 posts { 6 title 7 } 8 } 9`;