1import { gql } from "@urql/core"; 2import { Post } from "./Post"; 3 4const PostsQuery = gql` 5 query PostsList { 6 posts { 7 id 8 } 9 } 10` 11 12Post({ title: '' })