Subtitle support in the API
complete
Sam Robbins
From what I can see, there is no option in the API to fetch the subtitle of a post, I can query
"title"
, but querying "subtitle"
gives an error.Log In
Sandro Volpicella
complete
Hi Sam Robbins
this is possible with our new API: https://gql.hashnode.com
query PostWithSubtitle {
publication(host: "blog.awsfundamentals.com") {
posts(first: 2) {
edges {
node {
title
subtitle
}
}
}
}
}
If you want to join the beta program please check this post: https://townhall.hashnode.com/hashnode-public-apis-2-closed-beta
Kavir
in progress
Sandro Volpicella
Hi Sam Robbins
this is possible with our new API: https://gql.hashnode.com
query PostWithSubtitle {
publication(host: "blog.awsfundamentals.com") {
posts(first: 2) {
edges {
node {
title
subtitle
}
}
}
}
}
If you want to join the beta program please check this post: https://townhall.hashnode.com/hashnode-public-apis-2-closed-beta
Kavir
planned
Kavir
Hi Sam Robbins we're working on improvements to our APIs and will provide an update on this soon!