Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Last active December 17, 2020 10:13
Show Gist options
  • Save velotiotech/ca0b55fb7ec68eabaa746b16817fed03 to your computer and use it in GitHub Desktop.
Save velotiotech/ca0b55fb7ec68eabaa746b16817fed03 to your computer and use it in GitHub Desktop.
query GetBlogPost($postId: ID!) {
blogPostById(id: $postId) {
author {
firstName
lastName
avatarUrl
shortBio
}
title
coverImgUrl
createdAt
tags {
slug
shortName
}
body
likedByMe
likedBy(first: 2) {
totalCount
edges {
node {
firstName
lastName
avatarUrl
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment