User story
As a data center, I want to see the citations of publications that use my repository for the underlying data, so that I can demonstrate the impact of our repository.
Use the following query in the GraphQL client at https://api.datacite.org/graphql
{
dataset(id: "https://doi.org/10.5061/dryad.234") {
id
titles {
title
}
citationCount
citations {
nodes {
id
publisher
titles {
title
}
citationCount
}
}
}
}