Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gateway
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
gateway
Commits
f68b317d
Commit
f68b317d
authored
3 years ago
by
stevereis
Browse files
Options
Downloads
Patches
Plain Diff
Add field filter variables on experiment
parent
4ef3347b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/src/engine/models/experiment/experiment.model.ts
+3
-0
3 additions, 0 deletions
api/src/engine/models/experiment/experiment.model.ts
api/src/schema.gql
+2
-0
2 additions, 0 deletions
api/src/schema.gql
with
5 additions
and
0 deletions
api/src/engine/models/experiment/experiment.model.ts
+
3
−
0
View file @
f68b317d
...
...
@@ -47,6 +47,9 @@ export class Experiment {
@
Field
(()
=>
[
String
],
{
nullable
:
true
,
defaultValue
:
[]
})
coVariables
?:
string
[];
@
Field
(()
=>
[
String
],
{
nullable
:
true
,
defaultValue
:
[]
})
filterVariables
?:
string
[];
@
Field
()
algorithm
:
Algorithm
;
...
...
This diff is collapsed.
Click to expand it.
api/src/schema.gql
+
2
−
0
View file @
f68b317d
...
...
@@ -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
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment