Created
September 15, 2021 18:36
-
-
Save JesseRWeigel/dc697aa2c9d27241a5955ba2de485d9e 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
const GET_POSTS = gql` | |
query GetPosts { | |
posts { | |
edges { | |
node { | |
id | |
title | |
author { | |
node { | |
firstName | |
lastName | |
avatar { | |
url | |
} | |
} | |
} | |
excerpt(format: RENDERED) | |
slug | |
content(format: RENDERED) | |
featuredImage { | |
node { | |
title | |
sourceUrl | |
} | |
} | |
} | |
} | |
} | |
} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment