Skip to content

Instantly share code, notes, and snippets.

@ludndev
Created July 22, 2024 17:42
Show Gist options
  • Save ludndev/ff14a14cadd068853980406e36414b3e to your computer and use it in GitHub Desktop.
Save ludndev/ff14a14cadd068853980406e36414b3e to your computer and use it in GitHub Desktop.

endpoint: https://gql.hashnode.com/?source=legacy-api-page

query:

{
  user(username: "ludndev") {
    username
    posts(pageSize: 10, page: 1) {
      edges {
        node {
          id
          slug
          canonicalUrl
          title
          views
          coverImage {
            url
            attribution
          }
          brief
          content {
            html
            markdown
            text
          }
        }
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment