Model
No description
type Model {
id: ID!
name: String!
type: ModelType!
organizationId: ID!
credentials: JSON!
projectModels(
first: PageSize!
skip: Int!
): [ProjectModel!]!
createdAt: DateTime!
updatedAt: DateTime!
}
Fields
Model.id
● ID!
non-null scalar
Model.name
● String!
non-null scalar
Model.type
● ModelType!
non-null enum
Model.organizationId
● ID!
non-null scalar
Model.credentials
● JSON!
non-null scalar
Credentials without secrets
Model.projectModels
● [ProjectModel!]!
non-null object
Model.projectModels.first
● PageSize!
non-null scalar
Model.projectModels.skip
● Int!
non-null scalar
Model.createdAt
● DateTime!
non-null scalar
Model.updatedAt
● DateTime!
non-null scalar
Member Of
ProjectModel
object