Newer
Older
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type Category {
id: String!
}
type Variable {
id: String!
label: String
type: String!
description: String
groups: [Group!]!
}
type Group {
id: String!
description: String
groups: [Group!]!
variables: [Variable!]!
}
type Domain {
id: String!
description: String
groups: [Group!]!
variables: [Variable!]!
datasets: [Category!]!
type MetaData {
name: String!
type: String!
type Experiment {
title: String!
uuid: String
created_at: DateTime
update_at: DateTime
finished_at: DateTime
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
union ResultUnion = TableResult | DummyResult
type TableResult {
groupBy: String
data: [[String!]!]!
metadatas: [MetaData!]!
}
type DummyResult {
groupBy: String
name: String!
data: [[String!]!]!
listMax: [String!]!
domains(ids: [String!] = []): [Domain!]!
createTransient(data: ExperimentCreateInput!): Experiment!
datasets: [String!]!
variables: [String!]!
filter: String
domain: String!