grahpql.js 311 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 import gql from "graphql-tag"; export const FETCH_POSTS_QUERY = gql` { getPosts { id body createdAt username likeCount likes { username } commentCount comments { id username createdAt body } } } `;