Skip to content

Latest commit

 

History

History
58 lines (54 loc) · 1.55 KB

File metadata and controls

58 lines (54 loc) · 1.55 KB

FREYA WP2 User Story3: As an administrator for the University of Oxford I am interested in the reuse of research outputs from our university, so that I can help identify the most interesting research outputs.

Jupyter Notebook:

Identifier Binder

Examples of GraphQL Queries Used:

{
  organization(id: "https://ror.org/052gg0110") {
    id
    name
    alternateName
    citationCount
    viewCount
    downloadCount
    works(hasViews: 100, first: 100) {
      totalCount
      published {
        title
        count
      }
      resourceTypes {
        title
        count
      }
      nodes {
        id
        type
        publisher
        publicationYear
        titles {
          title
        }
        citations {
            nodes {
              id
        	}
        }        
        creators {
          id
          name
          affiliation {
            id
            name
          }
        }
        citationCount
        viewCount
        downloadCount
      }
    }
  }
}