PID Graph GraphQL Example Second Degree Citations

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
      }
    }
  }
}

Related GitHub issues from 2018 FREYA workshop:

I believe his query addresses the user story.

One issue I observed, however, in the example given, (I have not been able to reproduce with other DOIs), is that the number of citations counts differs with the number of cited items listed. That is, there are four citation counts, but the list only shows two citation items. Maybe I’m missing something there?

Thanks for the comment. I will check whether there is a bug in our implementation.