Last active
October 24, 2023 02:04
-
-
Save jayercule/f22b1f9ec9fafc3e464ce5037fcc0f37 to your computer and use it in GitHub Desktop.
Hashnode API - Get publication posts GraphQL request body
This file contains 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 Publication { | |
publication (host:"jayerculetest.hashnode.dev") { | |
posts(first:10) { | |
edges { | |
node { | |
title | |
slug | |
coverImage { | |
url | |
attribution | |
} | |
brief | |
author { | |
name | |
} | |
content { | |
markdown | |
} | |
publishedAt | |
updatedAt | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment