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

fix: Parameters formula & transfo now optionals

parent ee65a872
No related branches found
No related tags found
No related merge requests found
......@@ -34,8 +34,8 @@ export class ExperimentCreateInput {
name: string;
@Field(() => [FormulaTransformation], { nullable: true })
transformations: FormulaTransformation[];
transformations?: FormulaTransformation[];
@Field(() => [[String]], { nullable: true })
interactions: string[][];
interactions?: string[][];
}
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