Skip to content

Commit

Permalink
Merge pull request #378 from KPMP/develop
Browse files Browse the repository at this point in the history
Q1 2023 Atlas Release
  • Loading branch information
zwright authored Mar 28, 2023
2 parents 4f66a97 + 9fe73d7 commit e55a50a
Show file tree
Hide file tree
Showing 27 changed files with 915 additions and 1,557 deletions.
25 changes: 25 additions & 0 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@ type Query {
getRTGeneExpressionByTissue(comparisonType: String, geneSymbol: String): RTGeneExpressionByTissue
getRTGeneExpressionByStructure(structure: String): [RTGeneExpression]
getDataSummary(dataType: String): [SummaryData]
getTissueTypeSummaryData: [getTissueTypeSummaryData]
getAtlasSummaryRows: [getAtlasSummaryRows]
}

type getAtlasSummaryRows{
totalFiles: Long,
summaryRows: [SummaryRows]
}

type SummaryRows{
openCount: Long,
controlledCount: Long,
omicsType: String,
linkInformation: [LinkInformation]
}

type LinkInformation{
linkType: String,
linkValue: String
}

type getTissueTypeSummaryData{
akiCount: Long,
ckdCount: Long,
hrtCount: Long
}

type GeneDatasetInformation {
Expand Down
Loading

0 comments on commit e55a50a

Please sign in to comment.