Skip to content
Snippets Groups Projects
Commit f8f87f3d authored by stevereis's avatar stevereis
Browse files

Fix misspelling

parent d9c564c8
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ export class EngineResolver {
}
@Query(() => Experiment)
async expriment(@Args('uuid') uuid: string) {
async experiment(@Args('uuid') uuid: string) {
return this.engineService.getExperiment(uuid);
}
......
......@@ -174,7 +174,7 @@ type ListExperiments {
type Query {
domains(ids: [String!] = []): [Domain!]!
experiments(name: String = "", page: Float = 0): ListExperiments!
expriment(uuid: String!): Experiment!
experiment(uuid: String!): Experiment!
algorithms: [Algorithm!]!
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment