populationgenomics / metamist

Sample level metadata system
MIT License
1 stars 1 forks source link

Proof of concept: Allow selecting of slices of assay meta in graphql #827

Open dancoates opened 3 weeks ago

dancoates commented 3 weeks ago

demo query:

query MyQuery {
  project(name: "greek-myth") {
    samples {
      id
      assays {
        id
        type
        coverage: metaValue(path: "$.coverage")
        facility: metaValue(path: "$.facility")
        emoji: metaValue(path: "$.emoji")
      }
    }
  }
}