Skip to content

Latest commit

 

History

History
45 lines (41 loc) · 1.27 KB

File metadata and controls

45 lines (41 loc) · 1.27 KB

FREYA WP2 User Story 8: As a longitudinal study, I want to be able to deduplicate the metrics/impact for our data, so that I can see the impact of our study’s data as a whole.

Jupyter Notebook:

Identifier Binder

Examples of GraphQL Queries Used:

{
  dataset(id: "https://doi.org/10.14291/tccon.ggg2014") {
    id
    titles {
      title
    }
    publicationYear
    descriptions {
      description
      descriptionType
    }
    citationCount
    viewCount
    downloadCount
    partCount
    parts {
      nodes {
        id
        titles {
          title
        }
        publicationYear
        descriptions {
          description
          descriptionType
        }
        citationCount
        viewCount
        downloadCount
      }
    }
  }
}