Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 1.11 KB

File metadata and controls

36 lines (33 loc) · 1.11 KB

FREYA WP2 User Story 9: As a bibliometrician, I want to know all the co-authors of a particular researcher, so that I can do a network analysis of the researcher's collaborations.

Jupyter Notebook:

Identifier Binder

Examples of GraphQL Queries Used:

{
  person(id: "https://orcid.org/0000-0002-6294-6366") {
    id
    name
    publications(first:300) {
      totalCount
      years {
        title
        count
      }
      nodes {
        id
        type
        versionOfCount
        titles {
          title
        }
        creators {
          id
          name
        }
      }
    }
  }
}