Skip to content

Commit

Permalink
chore: swap sampleId type to ID to support QualityControlQuery (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
irene-han authored Nov 9, 2023
1 parent 106dc4a commit 41dcf2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sources/czid-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ type Query {
pathogenList(version: String): PathogenList!
project(id: Int!): Project!
sample(sampleId: Int!): Sample!
sampleReadsStats(sampleIds: [Int!]!): SampleReadsStatsList!
sampleReadsStats(sampleIds: [String!]!): SampleReadsStatsList!
samplesList(annotations: [Annotation!], basic: Boolean, domain: String, hostIds: [Int!], limit: Int, listAllIds: Boolean, location: String, locationV2: [String!], offset: Int, orderBy: String, orderDir: String, projectId: Int, requestedSampleIds: [Int!], sampleIds: [Int!], searchString: String, taxIds: [Int!], taxLevels: [String!], thresholdFilterInfo: String, time: [String!], tissue: [String!], visibility: [String!], workflow: String): SampleList!
user(archetypes: String!, email: String!, institution: String!, name: String!, role: Int!, segments: String!): User!
}
Expand All @@ -225,7 +225,7 @@ type Sample {
editable: Boolean
hostGenome: HostGenome
hostGenomeId: Int
id: Int!
id: ID!
initialWorkflow: String!
maxInputFragments: Int
name: String!
Expand Down Expand Up @@ -280,7 +280,7 @@ type SampleReadsStats {
initialReads: Int
name: String
pipelineVersion: String
sampleId: Int!
sampleId: ID!
steps: [SampleSteps!]
wdlVersion: String
}
Expand Down

0 comments on commit 41dcf2b

Please sign in to comment.