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

Add field filter variables on experiment

parent 9105074f
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,9 @@ export class Experiment {
@Field(() => [String], { nullable: true, defaultValue: [] })
coVariables?: string[];
@Field(() => [String], { nullable: true, defaultValue: [] })
filterVariables?: string[];
@Field()
algorithm: Algorithm;
......
......@@ -146,6 +146,7 @@ type Experiment {
domain: String!
variables: [String!]!
coVariables: [String!]
filterVariables: [String!]
algorithm: Algorithm!
name: String!
}
......@@ -165,6 +166,7 @@ type PartialExperiment {
domain: String
variables: [String!]
coVariables: [String!]
filterVariables: [String!]
algorithm: Algorithm
name: 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