Skip to content
Snippets Groups Projects
Commit f11cb09a authored by Steve Reis's avatar Steve Reis
Browse files

WIP : uniform experiment and transient

parent df03e969
No related branches found
No related tags found
No related merge requests found
import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class AlgorithmInput {
@Field(() => [String])
datasets: string[];
@Field(() => [String])
variables: string[];
@Field(() => String, { nullable: true })
filter: string;
@Field()
domain: string;
@Field()
algorithm: string;
@Field()
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