dictyBase / frontendx

BSD 2-Clause "Simplified" License
0 stars 0 forks source link

Implement phenotypes tab #688

Open cybersiddhu opened 6 months ago

cybersiddhu commented 6 months ago

685

ktun95 commented 4 months ago

Query needed for Phenotypes tab


listStrainsWithGene(gene: String!): [Strain!]

query ListStrainsWithGene($gene: String!) {
  listStrainsWithGene(gene: $gene) {
    id
    label
    characteristics
    in_stock
    phenotypes {
      phenotype
      publication {
        id
        title
        journal
        pages
        volume
        pub_date
        authors {
          last_name
          rank
        }
      }
    }
  }
}