Skip to content

Commit

Permalink
add additional example query
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Mar 7, 2024
1 parent 32075c5 commit ac2368e
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions server/config/query_examples/evidence_for_variant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Gene And Variant By Name
description: Use an Entrez Gene Symbol and Variant name search to retrieve relevant Molecular Profiles and their Evidence Items
order: 2
query: |
{
gene(entrezSymbol: "BRAF") {
variants(name: "V600") {
pageInfo {
hasNextPage
endCursor
}
nodes {
name
id
link
alleleRegistryId
primaryCoordinates {
start
stop
chromosome
representativeTranscript
}
molecularProfiles {
pageInfo {
hasNextPage
endCursor
}
nodes {
id
name
evidenceItems {
pageInfo {
hasNextPage
endCursor
}
nodes {
id
status
molecularProfile {
id
name
link
}
evidenceType
evidenceLevel
evidenceRating
evidenceDirection
phenotypes {
id
hpoId
name
}
description
disease {
id
doid
name
diseaseAliases
displayName
}
therapies {
id
ncitId
name
therapyAliases
}
source {
ascoAbstractId
citationId
pmcId
sourceType
title
}
therapyInteractionType
}
}
}
}
}
}
}
}

0 comments on commit ac2368e

Please sign in to comment.