components/PostInfo/getPost.gql

Summary

Maintainability
Test Coverage
query getPost($postId: ID!) {
  Post(id: $postId) {
    title
    votes
    id
    url
    createdAt
  }
}