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

Add field filter variables on experiment

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