Created
April 27, 2020 07:25
-
-
Save rubenRP/79b961ae1b08454935d8d12caa1e99ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query BlogPostBySlug($slug: String!) { | |
mdx(fields: { slug: { eq: $slug } }) { | |
id | |
excerpt(pruneLength: 160) | |
body | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment