Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.04 KB

File metadata and controls

30 lines (27 loc) · 1.04 KB

FREYA WP2 User Story 7: 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.

Jupyter Notebook:

Identifier Binder

Examples of GraphQL Queries Used:

{
  dataset(id: "https://doi.org/10.5061/dryad.234") {
    id
    titles {
      title
    }
    citationCount
    citations {
      nodes {
        id
        publisher
        titles {
          title
        }
        citationCount
      }
    }
  }
}