Glartek GraphQL API Reference

This page is autogenerated from the Glartek GraphQL API schema and lists all the Operations, Types and Subscriptions of the API.

Version: Production (date: 2025/04/16_14:09)

For more information about the API and to contact us, please go to https://help.glartek.com.

Terms of Service: https://glartek.com/terms.

Queries

account

Response

Returns an Account

Arguments
NameDescription
tenant - ID
where - AccountWhereUniqueInput!

Example

Query
query Account(
  $tenant: ID,
  $where: AccountWhereUniqueInput!
) {
  account(
    tenant: $tenant,
    where: $where
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"tenant": 4, "where": AccountWhereUniqueInput}
Response
{
  "data": {
    "account": {
      "ARUser": false,
      "_id": 4,
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": true,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "xyz789"
    }
  }
}

accountFolder

Response

Returns an AccountFolder

Arguments
NameDescription
tenant - ID
where - AccountFolderWhereUniqueInput!

Example

Query
query AccountFolder(
  $tenant: ID,
  $where: AccountFolderWhereUniqueInput!
) {
  accountFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AccountFolderWhereUniqueInput}
Response
{
  "data": {
    "accountFolder": {
      "_id": 4,
      "accountFoldersCount": 123,
      "accountsCount": 987,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AccountFolder,
      "parentId": "4",
      "parentsTree": [AccountFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

accountFolderWithDeleted

Response

Returns an AccountFolder

Arguments
NameDescription
where - AccountFolderWhereUniqueInput!

Example

Query
query AccountFolderWithDeleted($where: AccountFolderWhereUniqueInput!) {
  accountFolderWithDeleted(where: $where) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AccountFolderWhereUniqueInput}
Response
{
  "data": {
    "accountFolderWithDeleted": {
      "_id": 4,
      "accountFoldersCount": 123,
      "accountsCount": 987,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": AccountFolder,
      "parentId": "4",
      "parentsTree": [AccountFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

accountFolders

Response

Returns [AccountFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AccountFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AccountFolderWhereInputDefault = {}

Example

Query
query AccountFolders(
  $limit: Int,
  $orderBy: [AccountFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AccountFolderWhereInput
) {
  accountFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "accountFolders": [
      {
        "_id": 4,
        "accountFoldersCount": 987,
        "accountsCount": 123,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "xyz789",
        "parent": AccountFolder,
        "parentId": "4",
        "parentsTree": [AccountFolder],
        "parentsTreeIds": [4],
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

accountFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AccountFolderWhereInputDefault = {}

Example

Query
query AccountFoldersCount(
  $tenant: ID,
  $where: AccountFolderWhereInput
) {
  accountFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"accountFoldersCount": 123}}

accountTemplate

deprecated
Response

Returns an AccountTemplate

Arguments
NameDescription
tenant - ID
where - AccountTemplateWhereUniqueInput!

Example

Query
query AccountTemplate(
  $tenant: ID,
  $where: AccountTemplateWhereUniqueInput!
) {
  accountTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AccountTemplateFolderFragment
    }
    folderId
    frame {
      ...AccountTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AccountTemplateWhereUniqueInput
}
Response
{
  "data": {
    "accountTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "folder": AccountTemplateFolder,
      "folderId": "4",
      "frame": AccountTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

accountTemplateFolder

Response

Returns an AccountTemplateFolder

Arguments
NameDescription
tenant - ID
where - AccountTemplateFolderWhereUniqueInput!

Example

Query
query AccountTemplateFolder(
  $tenant: ID,
  $where: AccountTemplateFolderWhereUniqueInput!
) {
  accountTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AccountTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "accountTemplateFolder": {
      "_id": "4",
      "accountTemplateFoldersCount": 123,
      "accountTemplatesCount": 987,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AccountTemplateFolder,
      "parentId": "4",
      "parentsTree": [AccountTemplateFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

accountTemplateFolderWithDeleted

Response

Returns an AccountTemplateFolder

Arguments
NameDescription
where - AccountTemplateFolderWhereUniqueInput!

Example

Query
query AccountTemplateFolderWithDeleted($where: AccountTemplateFolderWhereUniqueInput!) {
  accountTemplateFolderWithDeleted(where: $where) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AccountTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "accountTemplateFolderWithDeleted": {
      "_id": "4",
      "accountTemplateFoldersCount": 123,
      "accountTemplatesCount": 987,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": AccountTemplateFolder,
      "parentId": "4",
      "parentsTree": [AccountTemplateFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

accountTemplateFolders

Response

Returns [AccountTemplateFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AccountTemplateFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AccountTemplateFolderWhereInputDefault = {}

Example

Query
query AccountTemplateFolders(
  $limit: Int,
  $orderBy: [AccountTemplateFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AccountTemplateFolderWhereInput
) {
  accountTemplateFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "accountTemplateFolders": [
      {
        "_id": 4,
        "accountTemplateFoldersCount": 123,
        "accountTemplatesCount": 123,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "xyz789",
        "parent": AccountTemplateFolder,
        "parentId": "4",
        "parentsTree": [AccountTemplateFolder],
        "parentsTreeIds": [4],
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

accountTemplateFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AccountTemplateFolderWhereInputDefault = {}

Example

Query
query AccountTemplateFoldersCount(
  $tenant: ID,
  $where: AccountTemplateFolderWhereInput
) {
  accountTemplateFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"accountTemplateFoldersCount": 987}}

accountTemplates

deprecated
Response

Returns [AccountTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AccountTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AccountTemplateWhereInputDefault = {}

Example

Query
query AccountTemplates(
  $limit: Int,
  $orderBy: [AccountTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AccountTemplateWhereInput
) {
  accountTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AccountTemplateFolderFragment
    }
    folderId
    frame {
      ...AccountTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "accountTemplates": [
      {
        "_id": "4",
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "folder": AccountTemplateFolder,
        "folderId": 4,
        "frame": AccountTemplateFrame,
        "icon": "abc123",
        "protected": false,
        "system": true,
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

accountTemplatesCount

deprecated
Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AccountTemplateWhereInputDefault = {}

Example

Query
query AccountTemplatesCount(
  $tenant: ID,
  $where: AccountTemplateWhereInput
) {
  accountTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"accountTemplatesCount": 123}}

accountWithDeleted

Response

Returns an Account

Arguments
NameDescription
where - AccountWhereUniqueInput!

Example

Query
query AccountWithDeleted($where: AccountWhereUniqueInput!) {
  accountWithDeleted(where: $where) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"where": AccountWhereUniqueInput}
Response
{
  "data": {
    "accountWithDeleted": {
      "ARUser": true,
      "_id": "4",
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 987,
      "clientId": "4",
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [123.45],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": true,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": "4",
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

accounts

Response

Returns [Account]

Arguments
NameDescription
limit - IntDefault = 1000
orderBy - [AccountOrderByInput]
skip - IntDefault = 0
tenant - ID
where - AccountWhereInput

Example

Query
query Accounts(
  $limit: Int,
  $orderBy: [AccountOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AccountWhereInput
) {
  accounts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "limit": 1000,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "tenant": "4",
  "where": AccountWhereInput
}
Response
{
  "data": {
    "accounts": [
      {
        "ARUser": true,
        "_id": 4,
        "actions": 987,
        "agoraUid": "xyz789",
        "authorizedSites": [Site],
        "authorizedSitesFlattened": [Site],
        "authorizedSitesIds": ["4"],
        "chat": 123,
        "clientId": "4",
        "clientMixedRealityEnabled": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "defaultTimeZone": "abc123",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "email": "xyz789",
        "feed": 987,
        "filters": [AccountFilter],
        "firstLogin": false,
        "folder": AccountFolder,
        "folderId": 4,
        "gps": [123.45],
        "impersonatedBy": "4",
        "impersonatedById": "4",
        "inputs": [Input],
        "isActive": false,
        "isContact": false,
        "isPlatformAdmin": false,
        "issues": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lastLogin": "2007-12-03T10:15:30Z",
        "mobileTabs": ["abc123"],
        "myClearances": [MyClearances],
        "name": "xyz789",
        "onBoarding": AccountOnBoarding,
        "photo": "xyz789",
        "preferences": AccountPreferences,
        "protected": false,
        "recoveryEmail": "abc123",
        "requiresPasswordReset": false,
        "roles": [Role],
        "rolesIds": ["4"],
        "seenFeatures": {},
        "ssoLogin": true,
        "system": true,
        "tabs": [Tab],
        "teams": [Team],
        "template": AccountTemplate,
        "templateId": "4",
        "tenantId": "4",
        "tutorialCompleted": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "username": "abc123"
      }
    ]
  }
}

accountsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AccountWhereInput

Example

Query
query AccountsCount(
  $tenant: ID,
  $where: AccountWhereInput
) {
  accountsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": AccountWhereInput}
Response
{"data": {"accountsCount": 987}}

accountsLastActivity

Description

Returns last accounts activity timestamps

Arguments
NameDescription
accountIds - [ID!]!

Example

Query
query AccountsLastActivity($accountIds: [ID!]!) {
  accountsLastActivity(accountIds: $accountIds) {
    _id
    lastActiveDate
  }
}
Variables
{"accountIds": ["4"]}
Response
{"data": {"accountsLastActivity": [{"_id": 4, "lastActiveDate": 987.65}]}}

action

Response

Returns an Action

Arguments
NameDescription
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
query Action(
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  action(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ActionWhereUniqueInput}
Response
{
  "data": {
    "action": {
      "ID": 987,
      "_id": 4,
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": 4,
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "isLocked": true,
      "issueName": "xyz789",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": 4,
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

actionDraft

Response

Returns an ActionDraft

Arguments
NameDescription
tenant - ID
where - ActionDraftWhereUniqueInput!

Example

Query
query ActionDraft(
  $tenant: ID,
  $where: ActionDraftWhereUniqueInput!
) {
  actionDraft(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ActionDraftWhereUniqueInput
}
Response
{
  "data": {
    "actionDraft": {
      "ID": 123,
      "_id": 4,
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": ActionDraftDueDate,
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "issueName": "xyz789",
      "issues": [ActionDraftIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionDraftLog],
      "name": "xyz789",
      "protected": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

actionDraftWithDeleted

Response

Returns an ActionDraft

Arguments
NameDescription
where - ActionDraftWhereUniqueInput!

Example

Query
query ActionDraftWithDeleted($where: ActionDraftWhereUniqueInput!) {
  actionDraftWithDeleted(where: $where) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ActionDraftWhereUniqueInput}
Response
{
  "data": {
    "actionDraftWithDeleted": {
      "ID": 987,
      "_id": "4",
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": ActionDraftDueDate,
      "element": Element,
      "elementId": 4,
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "issueName": "abc123",
      "issues": [ActionDraftIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionDraftLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "site": Site,
      "siteId": 4,
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

actionDrafts

Response

Returns [ActionDraft]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ActionDraftOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ActionDraftWhereInputDefault = {}

Example

Query
query ActionDrafts(
  $limit: Int,
  $orderBy: [ActionDraftOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ActionDraftWhereInput
) {
  actionDrafts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "actionDrafts": [
      {
        "ID": 123,
        "_id": "4",
        "alert": Alert,
        "alertId": "4",
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "catalog": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "dueDate": ActionDraftDueDate,
        "element": Element,
        "elementId": "4",
        "files": [File],
        "filesIds": [4],
        "finishDate": "2007-12-03T10:15:30Z",
        "input": 4,
        "issueName": "abc123",
        "issues": [ActionDraftIssue],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lockedBy": Account,
        "lockedById": "4",
        "log": [ActionDraftLog],
        "name": "abc123",
        "protected": true,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "site": Site,
        "siteId": 4,
        "status": "CANT_DO",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

actionDraftsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ActionDraftWhereInputDefault = {}

Example

Query
query ActionDraftsCount(
  $tenant: ID,
  $where: ActionDraftWhereInput
) {
  actionDraftsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"actionDraftsCount": 987}}

actionWithDeleted

Response

Returns an Action

Arguments
NameDescription
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
query ActionWithDeleted(
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  actionWithDeleted(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ActionWhereUniqueInput}
Response
{
  "data": {
    "actionWithDeleted": {
      "ID": 123,
      "_id": "4",
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "isLocked": true,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

actions

Response

Returns [Action]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ActionOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ActionWhereInputDefault = {}

Example

Query
query Actions(
  $limit: Int,
  $orderBy: [ActionOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ActionWhereInput
) {
  actions(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "actions": [
      {
        "ID": 987,
        "_id": "4",
        "alert": Alert,
        "alertId": "4",
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "catalog": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "element": Element,
        "elementId": 4,
        "files": [File],
        "filesIds": [4],
        "finishDate": "2007-12-03T10:15:30Z",
        "input": 4,
        "isLocked": false,
        "issueName": "abc123",
        "issues": [ActionIssue],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lockedBy": Account,
        "lockedById": 4,
        "log": [ActionLog],
        "name": "abc123",
        "protected": true,
        "seenBy": [Account],
        "seenByIds": [4],
        "site": Site,
        "siteId": "4",
        "status": "CANT_DO",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

actionsCount

Response

Returns an Int

Arguments
NameDescription
where - ActionWhereInput

Example

Query
query ActionsCount($where: ActionWhereInput) {
  actionsCount(where: $where)
}
Variables
{"where": ActionWhereInput}
Response
{"data": {"actionsCount": 987}}

actionsCountMultiple

Response

Returns an ActionsCountMultiple

Arguments
NameDescription
where - [ActionWhereInput!]!

Example

Query
query ActionsCountMultiple($where: [ActionWhereInput!]!) {
  actionsCountMultiple(where: $where) {
    count
  }
}
Variables
{"where": [ActionWhereInput]}
Response
{"data": {"actionsCountMultiple": {"count": [987]}}}

actionsFromIssue

Response

Returns [Action]

Arguments
NameDescription
issueID - ID!

Example

Query
query ActionsFromIssue($issueID: ID!) {
  actionsFromIssue(issueID: $issueID) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"issueID": "4"}
Response
{
  "data": {
    "actionsFromIssue": [
      {
        "ID": 123,
        "_id": 4,
        "alert": Alert,
        "alertId": 4,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "catalog": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "dueDate": "2007-12-03T10:15:30Z",
        "element": Element,
        "elementId": "4",
        "files": [File],
        "filesIds": [4],
        "finishDate": "2007-12-03T10:15:30Z",
        "input": 4,
        "isLocked": true,
        "issueName": "abc123",
        "issues": [ActionIssue],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lockedBy": Account,
        "lockedById": "4",
        "log": [ActionLog],
        "name": "xyz789",
        "protected": false,
        "seenBy": [Account],
        "seenByIds": [4],
        "site": Site,
        "siteId": 4,
        "status": "CANT_DO",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

agendaJob

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
query AgendaJob(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  agendaJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "tenant": "4",
  "where": JobWhereUniqueInput
}
Response
{
  "data": {
    "agendaJob": {
      "_id": "4",
      "data": JobData,
      "failReason": "abc123",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "xyz789",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

alert

Response

Returns an Alert

Arguments
NameDescription
tenant - ID
where - AlertWhereUniqueInput!

Example

Query
query Alert(
  $tenant: ID,
  $where: AlertWhereUniqueInput!
) {
  alert(
    tenant: $tenant,
    where: $where
  ) {
    _id
    closedAt
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    input {
      ...InputFragment
    }
    issue {
      ...IssueInstanceFragment
    }
    issueId
    log {
      ...AlertLogFragment
    }
    name
    protected
    site {
      ...SiteFragment
    }
    siteId
    system
    task
    taskGroup
    trigger {
      ...AlertTriggerFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AlertWhereUniqueInput}
Response
{
  "data": {
    "alert": {
      "_id": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "element": Element,
      "elementId": 4,
      "input": Input,
      "issue": IssueInstance,
      "issueId": 4,
      "log": [AlertLog],
      "name": "abc123",
      "protected": true,
      "site": Site,
      "siteId": 4,
      "system": false,
      "task": 4,
      "taskGroup": 4,
      "trigger": AlertTrigger,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

alertWithDeleted

Response

Returns an Alert

Arguments
NameDescription
where - AlertWhereUniqueInput!

Example

Query
query AlertWithDeleted($where: AlertWhereUniqueInput!) {
  alertWithDeleted(where: $where) {
    _id
    closedAt
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    input {
      ...InputFragment
    }
    issue {
      ...IssueInstanceFragment
    }
    issueId
    log {
      ...AlertLogFragment
    }
    name
    protected
    site {
      ...SiteFragment
    }
    siteId
    system
    task
    taskGroup
    trigger {
      ...AlertTriggerFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AlertWhereUniqueInput}
Response
{
  "data": {
    "alertWithDeleted": {
      "_id": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "element": Element,
      "elementId": 4,
      "input": Input,
      "issue": IssueInstance,
      "issueId": 4,
      "log": [AlertLog],
      "name": "abc123",
      "protected": true,
      "site": Site,
      "siteId": 4,
      "system": true,
      "task": 4,
      "taskGroup": "4",
      "trigger": AlertTrigger,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

alerts

Response

Returns [Alert]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AlertOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AlertWhereInputDefault = {}

Example

Query
query Alerts(
  $limit: Int,
  $orderBy: [AlertOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AlertWhereInput
) {
  alerts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    closedAt
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    input {
      ...InputFragment
    }
    issue {
      ...IssueInstanceFragment
    }
    issueId
    log {
      ...AlertLogFragment
    }
    name
    protected
    site {
      ...SiteFragment
    }
    siteId
    system
    task
    taskGroup
    trigger {
      ...AlertTriggerFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "alerts": [
      {
        "_id": "4",
        "closedAt": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "element": Element,
        "elementId": "4",
        "input": Input,
        "issue": IssueInstance,
        "issueId": "4",
        "log": [AlertLog],
        "name": "abc123",
        "protected": true,
        "site": Site,
        "siteId": 4,
        "system": false,
        "task": "4",
        "taskGroup": 4,
        "trigger": AlertTrigger,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

alertsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AlertWhereInputDefault = {}

Example

Query
query AlertsCount(
  $tenant: ID,
  $where: AlertWhereInput
) {
  alertsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"alertsCount": 123}}

allUnreadMessages

Description

Returns all unread messages

Response

Returns an Int

Example

Query
query AllUnreadMessages {
  allUnreadMessages
}
Response
{"data": {"allUnreadMessages": 123}}

anchor

Response

Returns an Anchor

Arguments
NameDescription
tenant - ID
where - AnchorWhereUniqueInput!

Example

Query
query Anchor(
  $tenant: ID,
  $where: AnchorWhereUniqueInput!
) {
  anchor(
    tenant: $tenant,
    where: $where
  ) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AnchorWhereUniqueInput
}
Response
{
  "data": {
    "anchor": {
      "_id": 4,
      "area": Area,
      "areaId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "spatialAnchorId": "xyz789",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

anchorImage

Response

Returns an AnchorImage

Arguments
NameDescription
tenant - ID
where - AnchorImageWhereUniqueInput!

Example

Query
query AnchorImage(
  $tenant: ID,
  $where: AnchorImageWhereUniqueInput!
) {
  anchorImage(
    tenant: $tenant,
    where: $where
  ) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AnchorImageWhereUniqueInput}
Response
{
  "data": {
    "anchorImage": {
      "_id": 4,
      "coordinates": [123.45],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "height": 123.45,
      "markers": [Marker],
      "markersCount": 123,
      "name": "abc123",
      "photo": File,
      "photoId": 4,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

anchorImageWithDeleted

Response

Returns an AnchorImage

Arguments
NameDescription
where - AnchorImageWhereUniqueInput!

Example

Query
query AnchorImageWithDeleted($where: AnchorImageWhereUniqueInput!) {
  anchorImageWithDeleted(where: $where) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AnchorImageWhereUniqueInput}
Response
{
  "data": {
    "anchorImageWithDeleted": {
      "_id": 4,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "height": 987.65,
      "markers": [Marker],
      "markersCount": 123,
      "name": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

anchorImages

Response

Returns [AnchorImage]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AnchorImageOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AnchorImageWhereInputDefault = {}

Example

Query
query AnchorImages(
  $limit: Int,
  $orderBy: [AnchorImageOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AnchorImageWhereInput
) {
  anchorImages(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "anchorImages": [
      {
        "_id": "4",
        "coordinates": [987.65],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "height": 987.65,
        "markers": [Marker],
        "markersCount": 123,
        "name": "abc123",
        "photo": File,
        "photoId": 4,
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

anchorImagesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AnchorImageWhereInputDefault = {}

Example

Query
query AnchorImagesCount(
  $tenant: ID,
  $where: AnchorImageWhereInput
) {
  anchorImagesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"anchorImagesCount": 987}}

anchorWithDeleted

Response

Returns an Anchor

Arguments
NameDescription
where - AnchorWhereUniqueInput!

Example

Query
query AnchorWithDeleted($where: AnchorWhereUniqueInput!) {
  anchorWithDeleted(where: $where) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AnchorWhereUniqueInput}
Response
{
  "data": {
    "anchorWithDeleted": {
      "_id": 4,
      "area": Area,
      "areaId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "photo": File,
      "photoId": 4,
      "protected": true,
      "spatialAnchorId": "abc123",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

anchors

Response

Returns [Anchor]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AnchorOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AnchorWhereInputDefault = {}

Example

Query
query Anchors(
  $limit: Int,
  $orderBy: [AnchorOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AnchorWhereInput
) {
  anchors(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "anchors": [
      {
        "_id": "4",
        "area": Area,
        "areaId": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "photo": File,
        "photoId": 4,
        "protected": false,
        "spatialAnchorId": "abc123",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

anchorsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AnchorWhereInputDefault = {}

Example

Query
query AnchorsCount(
  $tenant: ID,
  $where: AnchorWhereInput
) {
  anchorsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"anchorsCount": 987}}

area

Response

Returns an Area

Arguments
NameDescription
tenant - ID
where - AreaWhereUniqueInput!

Example

Query
query Area(
  $tenant: ID,
  $where: AreaWhereUniqueInput!
) {
  area(
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AreaWhereUniqueInput}
Response
{
  "data": {
    "area": {
      "_id": "4",
      "anchors": [Anchor],
      "anchorsIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": AreaFolder,
      "folderId": "4",
      "name": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

areaFolder

Response

Returns an AreaFolder

Arguments
NameDescription
tenant - ID
where - AreaFolderWhereUniqueInput!

Example

Query
query AreaFolder(
  $tenant: ID,
  $where: AreaFolderWhereUniqueInput!
) {
  areaFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AreaFolderWhereUniqueInput}
Response
{
  "data": {
    "areaFolder": {
      "_id": "4",
      "areaFoldersCount": 987,
      "areasCount": 123,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AreaFolder,
      "parentId": "4",
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

areaFolderWithDeleted

Response

Returns an AreaFolder

Arguments
NameDescription
where - AreaFolderWhereUniqueInput!

Example

Query
query AreaFolderWithDeleted($where: AreaFolderWhereUniqueInput!) {
  areaFolderWithDeleted(where: $where) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AreaFolderWhereUniqueInput}
Response
{
  "data": {
    "areaFolderWithDeleted": {
      "_id": 4,
      "areaFoldersCount": 987,
      "areasCount": 123,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AreaFolder,
      "parentId": 4,
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

areaFolders

Response

Returns [AreaFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AreaFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AreaFolderWhereInputDefault = {}

Example

Query
query AreaFolders(
  $limit: Int,
  $orderBy: [AreaFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AreaFolderWhereInput
) {
  areaFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "areaFolders": [
      {
        "_id": "4",
        "areaFoldersCount": 987,
        "areasCount": 123,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "xyz789",
        "parent": AreaFolder,
        "parentId": "4",
        "parentsTree": [AreaFolder],
        "parentsTreeIds": [4],
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

areaFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AreaFolderWhereInputDefault = {}

Example

Query
query AreaFoldersCount(
  $tenant: ID,
  $where: AreaFolderWhereInput
) {
  areaFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"areaFoldersCount": 987}}

areaWithDeleted

Response

Returns an Area

Arguments
NameDescription
where - AreaWhereUniqueInput!

Example

Query
query AreaWithDeleted($where: AreaWhereUniqueInput!) {
  areaWithDeleted(where: $where) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AreaWhereUniqueInput}
Response
{
  "data": {
    "areaWithDeleted": {
      "_id": "4",
      "anchors": [Anchor],
      "anchorsIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": AreaFolder,
      "folderId": "4",
      "name": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

areas

Response

Returns [Area]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AreaOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AreaWhereInputDefault = {}

Example

Query
query Areas(
  $limit: Int,
  $orderBy: [AreaOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AreaWhereInput
) {
  areas(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "areas": [
      {
        "_id": "4",
        "anchors": [Anchor],
        "anchorsIds": [4],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "folder": AreaFolder,
        "folderId": 4,
        "name": "abc123",
        "photo": File,
        "photoId": "4",
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

areasCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AreaWhereInputDefault = {}

Example

Query
query AreasCount(
  $tenant: ID,
  $where: AreaWhereInput
) {
  areasCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"areasCount": 987}}

auditLog

Response

Returns an AuditLog

Arguments
NameDescription
tenant - ID
where - AuditLogWhereUniqueInput!

Example

Query
query AuditLog(
  $tenant: ID,
  $where: AuditLogWhereUniqueInput!
) {
  auditLog(
    tenant: $tenant,
    where: $where
  ) {
    _id
    action
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    data
    device
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AuditLogWhereUniqueInput
}
Response
{
  "data": {
    "auditLog": {
      "_id": "4",
      "action": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "data": "abc123",
      "device": "MOBILE",
      "type": "ACTIONS",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

auditLogWithDeleted

Response

Returns an AuditLog

Arguments
NameDescription
where - AuditLogWhereUniqueInput!

Example

Query
query AuditLogWithDeleted($where: AuditLogWhereUniqueInput!) {
  auditLogWithDeleted(where: $where) {
    _id
    action
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    data
    device
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": AuditLogWhereUniqueInput}
Response
{
  "data": {
    "auditLogWithDeleted": {
      "_id": "4",
      "action": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "data": "abc123",
      "device": "MOBILE",
      "type": "ACTIONS",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

auditLogs

Response

Returns [AuditLog]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [AuditLogOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - AuditLogWhereInputDefault = {}

Example

Query
query AuditLogs(
  $limit: Int,
  $orderBy: [AuditLogOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: AuditLogWhereInput
) {
  auditLogs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    action
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    data
    device
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "auditLogs": [
      {
        "_id": "4",
        "action": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "data": "xyz789",
        "device": "MOBILE",
        "type": "ACTIONS",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

auditLogsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - AuditLogWhereInputDefault = {}

Example

Query
query AuditLogsCount(
  $tenant: ID,
  $where: AuditLogWhereInput
) {
  auditLogsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"auditLogsCount": 987}}

brokerAddress

Response

Returns a String

Example

Query
query BrokerAddress {
  brokerAddress
}
Response
{"data": {"brokerAddress": "xyz789"}}

calendar

Response

Returns [Job]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [JobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query Calendar(
  $limit: Int,
  $orderBy: [JobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: JobWhereInput
) {
  calendar(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "calendar": [
      {
        "_id": "4",
        "data": JobData,
        "failReason": "abc123",
        "failed": false,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

chatMessages

Response

Returns [ChatMessage]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ChatMessageOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ChatMessageWhereInput!

Example

Query
query ChatMessages(
  $limit: Int,
  $orderBy: [ChatMessageOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ChatMessageWhereInput!
) {
  chatMessages(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": ChatMessageWhereInput
}
Response
{
  "data": {
    "chatMessages": [
      {
        "_id": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": [4],
        "important": true,
        "infoMessage": ChatMessageInfoMessage,
        "mentions": [ChatMessageMention],
        "pinned": true,
        "protected": true,
        "receivedBy": [Account],
        "receivedByIds": [4],
        "removed": false,
        "replyTo": ChatMessage,
        "replyToId": "4",
        "seenBy": [Account],
        "seenByIds": ["4"],
        "system": false,
        "text": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

chatMessagesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ChatMessageWhereInput

Example

Query
query ChatMessagesCount(
  $tenant: ID,
  $where: ChatMessageWhereInput
) {
  chatMessagesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{
  "tenant": "4",
  "where": ChatMessageWhereInput
}
Response
{"data": {"chatMessagesCount": 987}}

chatRoom

Response

Returns a ChatRoom

Arguments
NameDescription
tenant - ID
where - ChatRoomWhereUniqueInput!

Example

Query
query ChatRoom(
  $tenant: ID,
  $where: ChatRoomWhereUniqueInput!
) {
  chatRoom(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ChatRoomWhereUniqueInput}
Response
{
  "data": {
    "chatRoom": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "xyz789",
      "previewedBy": [Account],
      "previewedByIds": ["4"],
      "protected": true,
      "room": Room,
      "roomId": "xyz789",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

chatRoomFiles

Response

Returns a ChatRoomFilesAndCount

Arguments
NameDescription
chatRoomId - ID!
limit - IntDefault = 25
skip - IntDefault = 0

Example

Query
query ChatRoomFiles(
  $chatRoomId: ID!,
  $limit: Int,
  $skip: Int
) {
  chatRoomFiles(
    chatRoomId: $chatRoomId,
    limit: $limit,
    skip: $skip
  ) {
    count
    data {
      ...FileFragment
    }
  }
}
Variables
{"chatRoomId": 4, "limit": 25, "skip": 0}
Response
{
  "data": {
    "chatRoomFiles": {"count": 987, "data": [File]}
  }
}

chatRoomWithDeleted

Response

Returns a ChatRoom

Arguments
NameDescription
where - ChatRoomWhereUniqueInput!

Example

Query
query ChatRoomWithDeleted($where: ChatRoomWhereUniqueInput!) {
  chatRoomWithDeleted(where: $where) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ChatRoomWhereUniqueInput}
Response
{
  "data": {
    "chatRoomWithDeleted": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "canSendMessage": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "xyz789",
      "previewedBy": [Account],
      "previewedByIds": [4],
      "protected": true,
      "room": Room,
      "roomId": "xyz789",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

chatRooms

Response

Returns [ChatRoom]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ChatRoomOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ChatRoomWhereInputDefault = {}

Example

Query
query ChatRooms(
  $limit: Int,
  $orderBy: [ChatRoomOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ChatRoomWhereInput
) {
  chatRooms(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "chatRooms": [
      {
        "_id": "4",
        "accessControl": [ChatRoomAccessControl],
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "canSendMessage": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "importantMessages": ChatRoomImportantMessage,
        "lastMessage": ChatMessage,
        "name": "xyz789",
        "previewedBy": [Account],
        "previewedByIds": [4],
        "protected": false,
        "room": Room,
        "roomId": "abc123",
        "system": true,
        "type": "GROUP_CHAT",
        "unreadMessages": 987,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

chatRoomsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ChatRoomWhereInputDefault = {}

Example

Query
query ChatRoomsCount(
  $tenant: ID,
  $where: ChatRoomWhereInput
) {
  chatRoomsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"chatRoomsCount": 987}}

checkRecording

Response

Returns a RecordType

Arguments
NameDescription
room_id - String!

Example

Query
query CheckRecording($room_id: String!) {
  checkRecording(room_id: $room_id) {
    expired_time_in_seconds
    started_at_in_seconds
    started_by
    status
  }
}
Variables
{"room_id": "abc123"}
Response
{
  "data": {
    "checkRecording": {
      "expired_time_in_seconds": 123,
      "started_at_in_seconds": 123,
      "started_by": "xyz789",
      "status": "xyz789"
    }
  }
}

clientInfo

use tenantInfo
Response

Returns a ClientBasicInfo

Arguments
NameDescription
domain - String

Example

Query
query ClientInfo($domain: String) {
  clientInfo(domain: $domain) {
    domain
    isRemoteAssistAllowed
    master
    name
    paletteDark {
      ...ClientConfigPaletteDarkFragment
    }
    paletteLight {
      ...ClientConfigPaletteLightFragment
    }
    resources {
      ...ClientResourcesFragment
    }
    samlAuthEndpoint
    sentryEnvironment
    sentryMobileDSN
    sentryWebDSN
    siteURL
    templateLibraryEnabled
    version
  }
}
Variables
{"domain": "abc123"}
Response
{
  "data": {
    "clientInfo": {
      "domain": "abc123",
      "isRemoteAssistAllowed": false,
      "master": false,
      "name": "xyz789",
      "paletteDark": ClientConfigPaletteDark,
      "paletteLight": ClientConfigPaletteLight,
      "resources": ClientResources,
      "samlAuthEndpoint": "abc123",
      "sentryEnvironment": "xyz789",
      "sentryMobileDSN": "xyz789",
      "sentryWebDSN": "xyz789",
      "siteURL": "xyz789",
      "templateLibraryEnabled": true,
      "version": "xyz789"
    }
  }
}

comment

Response

Returns a Comment

Arguments
NameDescription
tenant - ID
where - CommentWhereUniqueInput!

Example

Query
query Comment(
  $tenant: ID,
  $where: CommentWhereUniqueInput!
) {
  comment(
    tenant: $tenant,
    where: $where
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": CommentWhereUniqueInput
}
Response
{
  "data": {
    "comment": {
      "_id": 4,
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": "4",
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": 4,
      "rootReplies": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

commentWithDeleted

Response

Returns a Comment

Arguments
NameDescription
where - CommentWhereUniqueInput!

Example

Query
query CommentWithDeleted($where: CommentWhereUniqueInput!) {
  commentWithDeleted(where: $where) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": CommentWhereUniqueInput}
Response
{
  "data": {
    "commentWithDeleted": {
      "_id": 4,
      "content": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": "4",
      "rootReplies": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

comments

Response

Returns [Comment]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [CommentOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - CommentWhereInputDefault = {}
withRootComment - Booleanwhether to include the top level comments alongside the results

Example

Query
query Comments(
  $limit: Int,
  $orderBy: [CommentOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: CommentWhereInput,
  $withRootComment: Boolean
) {
  comments(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where,
    withRootComment: $withRootComment
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {},
  "withRootComment": true
}
Response
{
  "data": {
    "comments": [
      {
        "_id": "4",
        "content": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "mentions": [CommentMention],
        "parent": Comment,
        "parentId": 4,
        "parentsTree": [Comment],
        "parentsTreeIds": ["4"],
        "post": Post,
        "postId": "4",
        "rootReplies": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

commentsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - CommentWhereInputDefault = {}

Example

Query
query CommentsCount(
  $tenant: ID,
  $where: CommentWhereInput
) {
  commentsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"commentsCount": 987}}

contact

Response

Returns a Contact

Arguments
NameDescription
tenant - ID
where - ContactWhereUniqueInput!

Example

Query
query Contact(
  $tenant: ID,
  $where: ContactWhereUniqueInput!
) {
  contact(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{
  "tenant": "4",
  "where": ContactWhereUniqueInput
}
Response
{
  "data": {
    "contact": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "user": Account,
      "userContact": Account,
      "userContactId": 4,
      "userId": 4
    }
  }
}

contactWithDeleted

Response

Returns a Contact

Arguments
NameDescription
where - ContactWhereUniqueInput!

Example

Query
query ContactWithDeleted($where: ContactWhereUniqueInput!) {
  contactWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{"where": ContactWhereUniqueInput}
Response
{
  "data": {
    "contactWithDeleted": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "user": Account,
      "userContact": Account,
      "userContactId": "4",
      "userId": "4"
    }
  }
}

contacts

Response

Returns [Contact]

Arguments
NameDescription
limit - IntDefault = 25
orderBy - [ContactOrderByInput]
skip - IntDefault = 0
where - ContactWhereInput

Example

Query
query Contacts(
  $limit: Int,
  $orderBy: [ContactOrderByInput],
  $skip: Int,
  $where: ContactWhereInput
) {
  contacts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{
  "limit": 25,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "where": ContactWhereInput
}
Response
{
  "data": {
    "contacts": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "user": Account,
        "userContact": Account,
        "userContactId": 4,
        "userId": "4"
      }
    ]
  }
}

contactsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ContactWhereInputDefault = {}

Example

Query
query ContactsCount(
  $tenant: ID,
  $where: ContactWhereInput
) {
  contactsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"contactsCount": 987}}

createARCoreToken

Response

Returns a String

Example

Query
query CreateARCoreToken {
  createARCoreToken
}
Response
{"data": {"createARCoreToken": "abc123"}}

createMixedRealityToken

Response

Returns a String

Example

Query
query CreateMixedRealityToken {
  createMixedRealityToken
}
Response
{
  "data": {
    "createMixedRealityToken": "xyz789"
  }
}

createRoom

Response

Returns a Room

Example

Query
query CreateRoom {
  createRoom {
    chatroom_id
    code
    create_at
    create_by
    delete_at
    duration
    entity_id
    id
    labels
    last_activity_at
    name
    permissions {
      ...RoomPermissionsFragment
    }
    tenant_id
    update_at
    user_details {
      ...RoomDetailsFragment
    }
    valid_until
  }
}
Response
{
  "data": {
    "createRoom": {
      "chatroom_id": "abc123",
      "code": "abc123",
      "create_at": "abc123",
      "create_by": "xyz789",
      "delete_at": "xyz789",
      "duration": "xyz789",
      "entity_id": "abc123",
      "id": "xyz789",
      "labels": ["abc123"],
      "last_activity_at": "abc123",
      "name": "xyz789",
      "permissions": RoomPermissions,
      "tenant_id": "abc123",
      "update_at": "xyz789",
      "user_details": RoomDetails,
      "valid_until": "xyz789"
    }
  }
}

dashboardFolder

Response

Returns a DashboardFolder

Arguments
NameDescription
tenant - ID
where - DashboardFolderWhereUniqueInput!

Example

Query
query DashboardFolder(
  $tenant: ID,
  $where: DashboardFolderWhereUniqueInput!
) {
  dashboardFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboardFoldersCount
    dashboardsCount
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...DashboardFolderFragment
    }
    parentId
    parentsTree {
      ...DashboardFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": DashboardFolderWhereUniqueInput}
Response
{
  "data": {
    "dashboardFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "dashboardFoldersCount": 987,
      "dashboardsCount": 123,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": DashboardFolder,
      "parentId": 4,
      "parentsTree": [DashboardFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

dashboardFolders

Response

Returns [DashboardFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [DashboardFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - DashboardFolderWhereInputDefault = {}

Example

Query
query DashboardFolders(
  $limit: Int,
  $orderBy: [DashboardFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: DashboardFolderWhereInput
) {
  dashboardFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboardFoldersCount
    dashboardsCount
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...DashboardFolderFragment
    }
    parentId
    parentsTree {
      ...DashboardFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "dashboardFolders": [
      {
        "_id": 4,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "dashboardFoldersCount": 123,
        "dashboardsCount": 987,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "abc123",
        "parent": DashboardFolder,
        "parentId": "4",
        "parentsTree": [DashboardFolder],
        "parentsTreeIds": [4],
        "protected": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

dashboardFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - DashboardFolderWhereInputDefault = {}

Example

Query
query DashboardFoldersCount(
  $tenant: ID,
  $where: DashboardFolderWhereInput
) {
  dashboardFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"dashboardFoldersCount": 987}}

dashboards

Response

Returns [Dashboard]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [DashboardOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - DashboardWhereInputDefault = {}

Example

Query
query Dashboards(
  $limit: Int,
  $orderBy: [DashboardOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: DashboardWhereInput
) {
  dashboards(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    default
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...DashboardFolderFragment
    }
    folderId
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "dashboards": [
      {
        "_id": 4,
        "account": Account,
        "accountId": "4",
        "autoRefresh": false,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "default": false,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "folder": DashboardFolder,
        "folderId": "4",
        "name": "abc123",
        "protected": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "widgets": [Widget]
      }
    ]
  }
}

dashboardsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - DashboardWhereInputDefault = {}

Example

Query
query DashboardsCount(
  $tenant: ID,
  $where: DashboardWhereInput
) {
  dashboardsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"dashboardsCount": 123}}

defaultArConfiguration

Response

Returns an ArConfiguration

Example

Query
query DefaultArConfiguration {
  defaultArConfiguration {
    _id
    blockedMarkersColor
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    finishedMarkersColor
    markersOnFinishingTask
    markersSize
    markersToShow
    markersType
    notSequentialMarkersColor
    protected
    sequentialMarkersColor
    system
    timerFinishTask
    typeOfInput
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Response
{
  "data": {
    "defaultArConfiguration": {
      "_id": 4,
      "blockedMarkersColor": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "finishedMarkersColor": "xyz789",
      "markersOnFinishingTask": "CLOSE",
      "markersSize": 123,
      "markersToShow": "ALL",
      "markersType": "ARROW",
      "notSequentialMarkersColor": "xyz789",
      "protected": true,
      "sequentialMarkersColor": "abc123",
      "system": true,
      "timerFinishTask": "FIVESECONDS",
      "typeOfInput": "BASIC",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

device

Response

Returns a Device

Arguments
NameDescription
tenant - ID
where - DeviceWhereUniqueInput!

Example

Query
query Device(
  $tenant: ID,
  $where: DeviceWhereUniqueInput!
) {
  device(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": DeviceWhereUniqueInput
}
Response
{
  "data": {
    "device": {
      "_id": "4",
      "address": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "abc123",
      "name": "abc123",
      "protected": false,
      "protocol": "generic",
      "site": Site,
      "siteId": "4",
      "status": "xyz789",
      "system": false,
      "topic": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deviceWithDeleted

Response

Returns a Device

Arguments
NameDescription
where - DeviceWhereUniqueInput!

Example

Query
query DeviceWithDeleted($where: DeviceWhereUniqueInput!) {
  deviceWithDeleted(where: $where) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": DeviceWhereUniqueInput}
Response
{
  "data": {
    "deviceWithDeleted": {
      "_id": "4",
      "address": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "xyz789",
      "name": "xyz789",
      "protected": false,
      "protocol": "generic",
      "site": Site,
      "siteId": "4",
      "status": "xyz789",
      "system": true,
      "topic": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

devices

Response

Returns [Device]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [DeviceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - DeviceWhereInputDefault = {}

Example

Query
query Devices(
  $limit: Int,
  $orderBy: [DeviceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: DeviceWhereInput
) {
  devices(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "devices": [
      {
        "_id": 4,
        "address": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "deviceType": "other_generic",
        "lastBrowse": {},
        "lastRead": {},
        "mqttBrockerAddress": "xyz789",
        "mqttConfig": DeviceMqttConfig,
        "mqttId": "abc123",
        "name": "xyz789",
        "protected": true,
        "protocol": "generic",
        "site": Site,
        "siteId": "4",
        "status": "abc123",
        "system": false,
        "topic": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

devicesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - DeviceWhereInputDefault = {}

Example

Query
query DevicesCount(
  $tenant: ID,
  $where: DeviceWhereInput
) {
  devicesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"devicesCount": 987}}

distinctActionValues

Response

Returns an ActionDistinctValues

Example

Query
query DistinctActionValues {
  distinctActionValues {
    ID
    assignedAccounts {
      ...AccountFragment
    }
    elements {
      ...ElementFragment
    }
    issues {
      ...IssueInstanceFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    lastUpdater {
      ...AccountFragment
    }
    names
    parentElements {
      ...ElementFragment
    }
    parentSites {
      ...SiteFragment
    }
    rootElements {
      ...ElementFragment
    }
    rootSites {
      ...SiteFragment
    }
    sites {
      ...SiteFragment
    }
    status
  }
}
Response
{
  "data": {
    "distinctActionValues": {
      "ID": ["4"],
      "assignedAccounts": [Account],
      "elements": [Element],
      "issues": [IssueInstance],
      "labelValues": [LabelValue],
      "lastUpdater": [Account],
      "names": ["xyz789"],
      "parentElements": [Element],
      "parentSites": [Site],
      "rootElements": [Element],
      "rootSites": [Site],
      "sites": [Site],
      "status": ["xyz789"]
    }
  }
}

distinctElementSiteReportValues

Arguments
NameDescription
_id - ID!
inputsIds - [ID]

Example

Query
query DistinctElementSiteReportValues(
  $_id: ID!,
  $inputsIds: [ID]
) {
  distinctElementSiteReportValues(
    _id: $_id,
    inputsIds: $inputsIds
  ) {
    description
    inputs {
      ...ElementSiteReportTaskInputDistinctFragment
    }
    name
    parentElement {
      ...ElementFragment
    }
    parentSite {
      ...SiteFragment
    }
    profile {
      ...ProfileFragment
    }
    rootElement {
      ...ElementFragment
    }
    rootSite {
      ...SiteFragment
    }
  }
}
Variables
{"_id": 4, "inputsIds": [4]}
Response
{
  "data": {
    "distinctElementSiteReportValues": {
      "description": ["xyz789"],
      "inputs": [ElementSiteReportTaskInputDistinct],
      "name": ["abc123"],
      "parentElement": [Element],
      "parentSite": [Site],
      "profile": [Profile],
      "rootElement": [Element],
      "rootSite": [Site]
    }
  }
}

distinctIssueCatalogValues

Response

Returns an IssueCatalogDistinctValues

Arguments
NameDescription
where - IssueCatalogWhereInput

Example

Query
query DistinctIssueCatalogValues($where: IssueCatalogWhereInput) {
  distinctIssueCatalogValues(where: $where) {
    author {
      ...AccountFragment
    }
    element {
      ...ElementFragment
    }
    labels {
      ...LabelValueFragment
    }
    name
    site {
      ...SiteFragment
    }
    updateLog {
      ...AccountFragment
    }
  }
}
Variables
{"where": IssueCatalogWhereInput}
Response
{
  "data": {
    "distinctIssueCatalogValues": {
      "author": [Account],
      "element": [Element],
      "labels": [LabelValue],
      "name": ["abc123"],
      "site": [Site],
      "updateLog": [Account]
    }
  }
}

distinctTaskTemplateIds

Response

Returns [TaskTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TaskTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskTemplateWhereInputDefault = {}

Example

Query
query DistinctTaskTemplateIds(
  $limit: Int,
  $orderBy: [TaskTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskTemplateWhereInput
) {
  distinctTaskTemplateIds(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "distinctTaskTemplateIds": [
      {
        "_id": 4,
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "estimatedDuration": 987,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": "4",
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [TaskTemplateLog],
        "manualId": "xyz789",
        "mapping": TaskMapping,
        "name": "abc123",
        "onResponseId": 4,
        "order": 987,
        "parentsTree": ["4"],
        "protected": true,
        "remarks": [TaskTemplateRemark],
        "show": false,
        "system": true,
        "totalScore": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": TaskTemplateVariant
      }
    ]
  }
}

distinctTaskTemplates

Response

Returns [TaskTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TaskTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskTemplateWhereInputDefault = {}

Example

Query
query DistinctTaskTemplates(
  $limit: Int,
  $orderBy: [TaskTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskTemplateWhereInput
) {
  distinctTaskTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "distinctTaskTemplates": [
      {
        "_id": "4",
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "estimatedDuration": 123,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": 4,
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [TaskTemplateLog],
        "manualId": "xyz789",
        "mapping": TaskMapping,
        "name": "xyz789",
        "onResponseId": "4",
        "order": 987,
        "parentsTree": ["4"],
        "protected": false,
        "remarks": [TaskTemplateRemark],
        "show": false,
        "system": false,
        "totalScore": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": TaskTemplateVariant
      }
    ]
  }
}

element

Response

Returns an Element

Arguments
NameDescription
tenant - ID
where - ElementWhereUniqueInput!

Example

Query
query Element(
  $tenant: ID,
  $where: ElementWhereUniqueInput!
) {
  element(
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ElementWhereUniqueInput
}
Response
{
  "data": {
    "element": {
      "_id": 4,
      "arLocked": true,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "elements": [Element],
      "elementsCount": 123,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": "4",
      "name": "abc123",
      "needsApproval": true,
      "parent": Element,
      "parentId": 4,
      "parentsTree": [Element],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": 4,
      "protected": true,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": "4",
      "system": true,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 987,
      "template": ElementTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elementSiteReport

Response

Returns an ElementSiteReport

Arguments
NameDescription
tenant - ID
where - ElementSiteReportWhereUniqueInput!

Example

Query
query ElementSiteReport(
  $tenant: ID,
  $where: ElementSiteReportWhereUniqueInput!
) {
  elementSiteReport(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ElementSiteReportWhereUniqueInput
}
Response
{
  "data": {
    "elementSiteReport": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplate": ElementTemplate,
      "elementTemplateId": "4",
      "folder": ElementSiteReportFolder,
      "folderId": "4",
      "generalFields": ["description"],
      "inputFields": [4],
      "myConfig": ElementSiteReportConfig,
      "name": "abc123",
      "protected": false,
      "siteTemplate": SiteTemplate,
      "siteTemplateId": "4",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementSiteReportFolder

Response

Returns an ElementSiteReportFolder

Arguments
NameDescription
tenant - ID
where - ElementSiteReportFolderWhereUniqueInput!

Example

Query
query ElementSiteReportFolder(
  $tenant: ID,
  $where: ElementSiteReportFolderWhereUniqueInput!
) {
  elementSiteReportFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": ElementSiteReportFolderWhereUniqueInput
}
Response
{
  "data": {
    "elementSiteReportFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementSiteReportFoldersCount": 123,
      "elementSiteReportsCount": 123,
      "name": "xyz789",
      "parent": ElementSiteReportFolder,
      "parentId": "4",
      "parentsTree": [ElementSiteReportFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elementSiteReportFolderWithDeleted

Response

Returns an ElementSiteReportFolder

Arguments
NameDescription
where - ElementSiteReportFolderWhereUniqueInput!

Example

Query
query ElementSiteReportFolderWithDeleted($where: ElementSiteReportFolderWhereUniqueInput!) {
  elementSiteReportFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ElementSiteReportFolderWhereUniqueInput}
Response
{
  "data": {
    "elementSiteReportFolderWithDeleted": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementSiteReportFoldersCount": 987,
      "elementSiteReportsCount": 123,
      "name": "xyz789",
      "parent": ElementSiteReportFolder,
      "parentId": 4,
      "parentsTree": [ElementSiteReportFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementSiteReportFolders

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementSiteReportFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementSiteReportFolderWhereInputDefault = {}

Example

Query
query ElementSiteReportFolders(
  $limit: Int,
  $orderBy: [ElementSiteReportFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementSiteReportFolderWhereInput
) {
  elementSiteReportFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "elementSiteReportFolders": [
      {
        "_id": "4",
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "elementSiteReportFoldersCount": 123,
        "elementSiteReportsCount": 987,
        "name": "xyz789",
        "parent": ElementSiteReportFolder,
        "parentId": 4,
        "parentsTree": [ElementSiteReportFolder],
        "parentsTreeIds": [4],
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

elementSiteReportFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ElementSiteReportFolderWhereInputDefault = {}

Example

Query
query ElementSiteReportFoldersCount(
  $tenant: ID,
  $where: ElementSiteReportFolderWhereInput
) {
  elementSiteReportFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"elementSiteReportFoldersCount": 123}}

elementSiteReportWithDeleted

Response

Returns an ElementSiteReport

Arguments
NameDescription
where - ElementSiteReportWhereUniqueInput!

Example

Query
query ElementSiteReportWithDeleted($where: ElementSiteReportWhereUniqueInput!) {
  elementSiteReportWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ElementSiteReportWhereUniqueInput}
Response
{
  "data": {
    "elementSiteReportWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplate": ElementTemplate,
      "elementTemplateId": "4",
      "folder": ElementSiteReportFolder,
      "folderId": 4,
      "generalFields": ["description"],
      "inputFields": [4],
      "myConfig": ElementSiteReportConfig,
      "name": "abc123",
      "protected": false,
      "siteTemplate": SiteTemplate,
      "siteTemplateId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementSiteReports

Response

Returns [ElementSiteReport]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementSiteReportOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementSiteReportWhereInputDefault = {}

Example

Query
query ElementSiteReports(
  $limit: Int,
  $orderBy: [ElementSiteReportOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementSiteReportWhereInput
) {
  elementSiteReports(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "elementSiteReports": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "elementTemplate": ElementTemplate,
        "elementTemplateId": "4",
        "folder": ElementSiteReportFolder,
        "folderId": 4,
        "generalFields": ["description"],
        "inputFields": [4],
        "myConfig": ElementSiteReportConfig,
        "name": "abc123",
        "protected": true,
        "siteTemplate": SiteTemplate,
        "siteTemplateId": 4,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

elementSiteReportsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ElementSiteReportWhereInputDefault = {}

Example

Query
query ElementSiteReportsCount(
  $tenant: ID,
  $where: ElementSiteReportWhereInput
) {
  elementSiteReportsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"elementSiteReportsCount": 123}}

elementTemplate

Response

Returns an ElementTemplate

Arguments
NameDescription
tenant - ID
where - ElementTemplateWhereUniqueInput!

Example

Query
query ElementTemplate(
  $tenant: ID,
  $where: ElementTemplateWhereUniqueInput!
) {
  elementTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ElementTemplateWhereUniqueInput}
Response
{
  "data": {
    "elementTemplate": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": ElementTemplateFolder,
      "folderId": 4,
      "frame": ElementTemplateFrame,
      "icon": "xyz789",
      "protected": false,
      "system": true,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elementTemplateFolder

Response

Returns an ElementTemplateFolder

Arguments
NameDescription
tenant - ID
where - ElementTemplateFolderWhereUniqueInput!

Example

Query
query ElementTemplateFolder(
  $tenant: ID,
  $where: ElementTemplateFolderWhereUniqueInput!
) {
  elementTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ElementTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "elementTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplateFoldersCount": 123,
      "elementTemplatesCount": 123,
      "name": "xyz789",
      "parent": ElementTemplateFolder,
      "parentId": 4,
      "parentsTree": [ElementTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementTemplateFolderWithDeleted

Response

Returns an ElementTemplateFolder

Arguments
NameDescription
where - ElementTemplateFolderWhereUniqueInput!

Example

Query
query ElementTemplateFolderWithDeleted($where: ElementTemplateFolderWhereUniqueInput!) {
  elementTemplateFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ElementTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "elementTemplateFolderWithDeleted": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementTemplateFoldersCount": 123,
      "elementTemplatesCount": 123,
      "name": "abc123",
      "parent": ElementTemplateFolder,
      "parentId": 4,
      "parentsTree": [ElementTemplateFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elementTemplateFolders

Response

Returns [ElementTemplateFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementTemplateFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementTemplateFolderWhereInputDefault = {}

Example

Query
query ElementTemplateFolders(
  $limit: Int,
  $orderBy: [ElementTemplateFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementTemplateFolderWhereInput
) {
  elementTemplateFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "elementTemplateFolders": [
      {
        "_id": 4,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "elementTemplateFoldersCount": 987,
        "elementTemplatesCount": 987,
        "name": "abc123",
        "parent": ElementTemplateFolder,
        "parentId": 4,
        "parentsTree": [ElementTemplateFolder],
        "parentsTreeCount": 123,
        "parentsTreeIds": ["4"],
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

elementTemplateFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ElementTemplateFolderWhereInputDefault = {}

Example

Query
query ElementTemplateFoldersCount(
  $tenant: ID,
  $where: ElementTemplateFolderWhereInput
) {
  elementTemplateFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"elementTemplateFoldersCount": 987}}

elementTemplateWithDeleted

Response

Returns an ElementTemplate

Arguments
NameDescription
where - ElementTemplateWhereUniqueInput!

Example

Query
query ElementTemplateWithDeleted($where: ElementTemplateWhereUniqueInput!) {
  elementTemplateWithDeleted(where: $where) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ElementTemplateWhereUniqueInput}
Response
{
  "data": {
    "elementTemplateWithDeleted": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": ElementTemplateFolder,
      "folderId": "4",
      "frame": ElementTemplateFrame,
      "icon": "abc123",
      "protected": false,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementTemplates

Response

Returns [ElementTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementTemplateWhereInputDefault = {}

Example

Query
query ElementTemplates(
  $limit: Int,
  $orderBy: [ElementTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementTemplateWhereInput
) {
  elementTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "elementTemplates": [
      {
        "_id": "4",
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "folder": ElementTemplateFolder,
        "folderId": "4",
        "frame": ElementTemplateFrame,
        "icon": "xyz789",
        "protected": false,
        "system": true,
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

elementTemplatesAndFolders

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [ElementTemplateFolderOrderByInput!]!
templateFolderWhere - ElementTemplateFolderWhereInput
templateOrderBy - [ElementTemplateOrderByInput!]!
templateWhere - ElementTemplateWhereInput
tenant - ID

Example

Query
query ElementTemplatesAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [ElementTemplateFolderOrderByInput!]!,
  $templateFolderWhere: ElementTemplateFolderWhereInput,
  $templateOrderBy: [ElementTemplateOrderByInput!]!,
  $templateWhere: ElementTemplateWhereInput,
  $tenant: ID
) {
  elementTemplatesAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on ElementTemplate {
      ...ElementTemplateFragment
    }
    ... on ElementTemplateFolder {
      ...ElementTemplateFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": ElementTemplateFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": ElementTemplateWhereInput,
  "tenant": 4
}
Response
{
  "data": {
    "elementTemplatesAndFolders": [ElementTemplate]
  }
}

elementTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ElementTemplateWhereInputDefault = {}

Example

Query
query ElementTemplatesCount(
  $tenant: ID,
  $where: ElementTemplateWhereInput
) {
  elementTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"elementTemplatesCount": 123}}

elementWithDeleted

Response

Returns an Element

Arguments
NameDescription
tenant - ID
where - ElementWhereUniqueInput!

Example

Query
query ElementWithDeleted(
  $tenant: ID,
  $where: ElementWhereUniqueInput!
) {
  elementWithDeleted(
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ElementWhereUniqueInput}
Response
{
  "data": {
    "elementWithDeleted": {
      "_id": "4",
      "arLocked": false,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "elements": [Element],
      "elementsCount": 987,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": 4,
      "name": "xyz789",
      "needsApproval": false,
      "parent": Element,
      "parentId": "4",
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": 4,
      "protected": true,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": "4",
      "system": true,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 123,
      "template": ElementTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elements

Response

Returns [Element]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementWhereInputDefault = {}

Example

Query
query Elements(
  $limit: Int,
  $orderBy: [ElementOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementWhereInput
) {
  elements(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "elements": [
      {
        "_id": "4",
        "arLocked": false,
        "awaitingApproval": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "elements": [Element],
        "elementsCount": 123,
        "icon": "abc123",
        "image": File,
        "imageDetails": ElementImageDetail,
        "imageId": "4",
        "inputs": [Input],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "log": [ElementLog],
        "marker": Marker,
        "markerId": "4",
        "name": "abc123",
        "needsApproval": false,
        "parent": Element,
        "parentId": "4",
        "parentsTree": [Element],
        "parentsTreeIds": [4],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": "4",
        "pendingInputs": [Input],
        "profile": Profile,
        "profileId": 4,
        "protected": true,
        "responsibles": Responsibles,
        "site": Site,
        "siteId": "4",
        "system": false,
        "tags": [ElementTag],
        "tasks": [Task],
        "tasksCount": 987,
        "template": ElementTemplate,
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

elementsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ElementWhereInputDefault = {}

Example

Query
query ElementsCount(
  $tenant: ID,
  $where: ElementWhereInput
) {
  elementsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"elementsCount": 123}}

elementsV2

use the regular findMany query
Response

Returns [LeanElement]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementWhereInputDefault = {}

Example

Query
query ElementsV2(
  $limit: Int,
  $orderBy: [ElementOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementWhereInput
) {
  elementsV2(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    createdAt
    createdById
    deleted
    deletedAt
    deletedById
    description
    hasChildren
    icon
    imageDetails {
      ...LeanElementImageDetailFragment
    }
    imageId
    labelValuesIds
    log {
      ...LeanElementLogFragment
    }
    markerId
    name
    parentId
    parentsTreeIds
    profileId
    protected
    site {
      ...LeanParentSiteFragment
    }
    siteId
    system
    tags {
      ...LeanElementTagFragment
    }
    templateIcon
    templateId
    updatedAt
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "elementsV2": [
      {
        "_id": 4,
        "arLocked": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedById": "4",
        "description": "abc123",
        "hasChildren": false,
        "icon": "abc123",
        "imageDetails": LeanElementImageDetail,
        "imageId": "4",
        "labelValuesIds": ["4"],
        "log": [LeanElementLog],
        "markerId": 4,
        "name": "abc123",
        "parentId": "4",
        "parentsTreeIds": ["4"],
        "profileId": "4",
        "protected": true,
        "site": LeanParentSite,
        "siteId": 4,
        "system": true,
        "tags": [LeanElementTag],
        "templateIcon": "abc123",
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedById": 4
      }
    ]
  }
}

elementsWithDeleted

Response

Returns [Element]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ElementOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ElementWhereInputDefault = {}

Example

Query
query ElementsWithDeleted(
  $limit: Int,
  $orderBy: [ElementOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ElementWhereInput
) {
  elementsWithDeleted(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "elementsWithDeleted": [
      {
        "_id": 4,
        "arLocked": false,
        "awaitingApproval": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "elements": [Element],
        "elementsCount": 123,
        "icon": "xyz789",
        "image": File,
        "imageDetails": ElementImageDetail,
        "imageId": 4,
        "inputs": [Input],
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [ElementLog],
        "marker": Marker,
        "markerId": "4",
        "name": "xyz789",
        "needsApproval": true,
        "parent": Element,
        "parentId": "4",
        "parentsTree": [Element],
        "parentsTreeIds": [4],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": "4",
        "pendingInputs": [Input],
        "profile": Profile,
        "profileId": 4,
        "protected": true,
        "responsibles": Responsibles,
        "site": Site,
        "siteId": 4,
        "system": true,
        "tags": [ElementTag],
        "tasks": [Task],
        "tasksCount": 987,
        "template": ElementTemplate,
        "templateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

executionInput

Response

Returns an Input

Arguments
NameDescription
_id - ID!
taskId - ID!

Example

Query
query ExecutionInput(
  $_id: ID!,
  $taskId: ID!
) {
  executionInput(
    _id: $_id,
    taskId: $taskId
  ) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{"_id": "4", "taskId": 4}
Response
{
  "data": {
    "executionInput": {
      "_id": "4",
      "actions": [Action],
      "container": "abc123",
      "date": InputDate,
      "datetime": InputDatetime,
      "description": "abc123",
      "element": InputElement,
      "file": InputFile,
      "getURLsOfDescriptionFiles": "xyz789",
      "instruction": InputInstruction,
      "isMutable": true,
      "labelValue": InputLabelValue,
      "log": [InputLog],
      "name": "xyz789",
      "note": InputNote,
      "number": InputNumber,
      "order": 123,
      "required": false,
      "signature": InputSignature,
      "site": InputSite,
      "string": InputString,
      "table": InputTable,
      "tag": "xyz789",
      "tags": InputTag,
      "time": InputTime,
      "tool": InputTool,
      "tooltip": "xyz789",
      "type": "date",
      "value": InputDate
    }
  }
}

executionInputHistory

Response

Returns [Input]

Arguments
NameDescription
limit - IntDefault = 100
skip - IntDefault = 0
where - InputWhereUniqueInput

Example

Query
query ExecutionInputHistory(
  $limit: Int,
  $skip: Int,
  $where: InputWhereUniqueInput
) {
  executionInputHistory(
    limit: $limit,
    skip: $skip,
    where: $where
  ) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{"limit": 100, "skip": 0, "where": InputWhereUniqueInput}
Response
{
  "data": {
    "executionInputHistory": [
      {
        "_id": 4,
        "actions": [Action],
        "container": "xyz789",
        "date": InputDate,
        "datetime": InputDatetime,
        "description": "abc123",
        "element": InputElement,
        "file": InputFile,
        "getURLsOfDescriptionFiles": "abc123",
        "instruction": InputInstruction,
        "isMutable": true,
        "labelValue": InputLabelValue,
        "log": [InputLog],
        "name": "abc123",
        "note": InputNote,
        "number": InputNumber,
        "order": 123,
        "required": true,
        "signature": InputSignature,
        "site": InputSite,
        "string": InputString,
        "table": InputTable,
        "tag": "xyz789",
        "tags": InputTag,
        "time": InputTime,
        "tool": InputTool,
        "tooltip": "xyz789",
        "type": "date",
        "value": InputDate
      }
    ]
  }
}

executionInputHistoryCount

Response

Returns an Int

Arguments
NameDescription
where - InputWhereUniqueInput

Example

Query
query ExecutionInputHistoryCount($where: InputWhereUniqueInput) {
  executionInputHistoryCount(where: $where)
}
Variables
{"where": InputWhereUniqueInput}
Response
{"data": {"executionInputHistoryCount": 987}}

failedJobs

Response

Returns [Job]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [JobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query FailedJobs(
  $limit: Int,
  $orderBy: [JobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: JobWhereInput
) {
  failedJobs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "failedJobs": [
      {
        "_id": "4",
        "data": JobData,
        "failReason": "xyz789",
        "failed": true,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "abc123",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

file

Response

Returns a File

Arguments
NameDescription
tenant - ID
where - FileWhereUniqueInput!

Example

Query
query File(
  $tenant: ID,
  $where: FileWhereUniqueInput!
) {
  file(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{"tenant": 4, "where": FileWhereUniqueInput}
Response
{
  "data": {
    "file": {
      "_id": "4",
      "accessToken": "xyz789",
      "awsId": "xyz789",
      "comment": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "xyz789",
      "hasThumbnail": false,
      "mime": "abc123",
      "name": "abc123",
      "path": "abc123",
      "protected": true,
      "size": 123.45,
      "system": false,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "uploadedFromLibrary": false
    }
  }
}

fileWithDeleted

Response

Returns a File

Arguments
NameDescription
where - FileWhereUniqueInput!

Example

Query
query FileWithDeleted($where: FileWhereUniqueInput!) {
  fileWithDeleted(where: $where) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{"where": FileWhereUniqueInput}
Response
{
  "data": {
    "fileWithDeleted": {
      "_id": 4,
      "accessToken": "abc123",
      "awsId": "abc123",
      "comment": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "abc123",
      "hasThumbnail": true,
      "mime": "abc123",
      "name": "abc123",
      "path": "abc123",
      "protected": true,
      "size": 987.65,
      "system": true,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "uploadedFromLibrary": false
    }
  }
}

files

Response

Returns [File]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [FileOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - FileWhereInputDefault = {}

Example

Query
query Files(
  $limit: Int,
  $orderBy: [FileOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: FileWhereInput
) {
  files(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "files": [
      {
        "_id": "4",
        "accessToken": "xyz789",
        "awsId": "xyz789",
        "comment": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "details": FileDetail,
        "download": DownloadFileInfo,
        "extension": "abc123",
        "hasThumbnail": false,
        "mime": "xyz789",
        "name": "abc123",
        "path": "xyz789",
        "protected": true,
        "size": 123.45,
        "system": true,
        "type": "All",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "uploadedFromLibrary": false
      }
    ]
  }
}

filesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - FileWhereInputDefault = {}

Example

Query
query FilesCount(
  $tenant: ID,
  $where: FileWhereInput
) {
  filesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"filesCount": 123}}

filterBuilderConditionLabelValues

Response

Returns [LabelValue]

Example

Query
query FilterBuilderConditionLabelValues($filter: TaskTemplateAdvancedLabelSelectionFilterUpdateInput) {
  filterBuilderConditionLabelValues(filter: $filter) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{
  "filter": TaskTemplateAdvancedLabelSelectionFilterUpdateInput
}
Response
{
  "data": {
    "filterBuilderConditionLabelValues": [
      {
        "_id": 4,
        "backgroundColor": "abc123",
        "color": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "label": Label,
        "labelId": "4",
        "order": 123,
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "value": "abc123"
      }
    ]
  }
}

getAlarmHistory

Response

Returns a JSON

Arguments
NameDescription
limit - IntLimit. Default = 1
offset - IntOffset. Default = 0

Example

Query
query GetAlarmHistory(
  $limit: Int,
  $offset: Int
) {
  getAlarmHistory(
    limit: $limit,
    offset: $offset
  )
}
Variables
{"limit": 1, "offset": 0}
Response
{"data": {"getAlarmHistory": {}}}

getAlarmHistoryCount

Response

Returns a Float

Example

Query
query GetAlarmHistoryCount {
  getAlarmHistoryCount
}
Response
{"data": {"getAlarmHistoryCount": 987.65}}

getAlarmTasks

Response

Returns a JSON

Example

Query
query GetAlarmTasks {
  getAlarmTasks
}
Response
{"data": {"getAlarmTasks": {}}}

getAssistConfiguration

Response

Returns an AssistConfiguration

Example

Query
query GetAssistConfiguration {
  getAssistConfiguration {
    AgoraIOAppID
    WebDebug
  }
}
Response
{
  "data": {
    "getAssistConfiguration": {
      "AgoraIOAppID": "abc123",
      "WebDebug": "xyz789"
    }
  }
}

getConfigurations

Response

Returns a Configuration

Example

Query
query GetConfigurations {
  getConfigurations {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Response
{
  "data": {
    "getConfigurations": {
      "_id": "4",
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

getDraftTimeMap

Response

Returns [timeMapSelectionResult]

Arguments
NameDescription
_id - ID!

Example

Query
query GetDraftTimeMap($_id: ID!) {
  getDraftTimeMap(_id: $_id) {
    columns {
      ...timeMapColumnFragment
    }
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "getDraftTimeMap": [{"columns": [timeMapColumn]}]
  }
}

getDraftTimeTable

Arguments
NameDescription
_id - ID!

Example

Query
query GetDraftTimeTable($_id: ID!) {
  getDraftTimeTable(_id: $_id) {
    columns {
      ...timeTableColumnFragment
    }
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "getDraftTimeTable": [{"columns": [timeTableColumn]}]
  }
}

getElementSiteReportInfo

Response

Returns [ElementSiteReportInfo]

Arguments
NameDescription
inputOrderBy - ElementSiteReportInfoInputOrderBy
limit - IntDefault = 0
orderBy - ElementSiteReportInfoOrderByEnum
skip - IntDefault = 0
where - ElementSiteReportFilters!

Example

Query
query GetElementSiteReportInfo(
  $inputOrderBy: ElementSiteReportInfoInputOrderBy,
  $limit: Int,
  $orderBy: ElementSiteReportInfoOrderByEnum,
  $skip: Int,
  $where: ElementSiteReportFilters!
) {
  getElementSiteReportInfo(
    inputOrderBy: $inputOrderBy,
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    description
    inputs {
      ...InputFragment
    }
    name
    parentElement {
      ...ElementFragment
    }
    parentSite {
      ...SiteFragment
    }
    parentsTreeElement {
      ...ElementFragment
    }
    parentsTreeSite {
      ...SiteFragment
    }
    profile {
      ...ProfileFragment
    }
    reportGeneralFields
    reportId
    reportType
    rootElement {
      ...ElementFragment
    }
    rootSite {
      ...SiteFragment
    }
    site {
      ...SiteFragment
    }
  }
}
Variables
{
  "inputOrderBy": ElementSiteReportInfoInputOrderBy,
  "limit": 0,
  "orderBy": "description_ASC",
  "skip": 0,
  "where": ElementSiteReportFilters
}
Response
{
  "data": {
    "getElementSiteReportInfo": [
      {
        "_id": "4",
        "description": "abc123",
        "inputs": [Input],
        "name": "abc123",
        "parentElement": Element,
        "parentSite": Site,
        "parentsTreeElement": [Element],
        "parentsTreeSite": [Site],
        "profile": Profile,
        "reportGeneralFields": ["xyz789"],
        "reportId": "xyz789",
        "reportType": "xyz789",
        "rootElement": Element,
        "rootSite": Site,
        "site": Site
      }
    ]
  }
}

getElementSiteReportInfoBulk

Response

Returns [ElementSiteReportInfo]

Arguments
NameDescription
_ids - [ID]

Example

Query
query GetElementSiteReportInfoBulk($_ids: [ID]) {
  getElementSiteReportInfoBulk(_ids: $_ids) {
    _id
    description
    inputs {
      ...InputFragment
    }
    name
    parentElement {
      ...ElementFragment
    }
    parentSite {
      ...SiteFragment
    }
    parentsTreeElement {
      ...ElementFragment
    }
    parentsTreeSite {
      ...SiteFragment
    }
    profile {
      ...ProfileFragment
    }
    reportGeneralFields
    reportId
    reportType
    rootElement {
      ...ElementFragment
    }
    rootSite {
      ...SiteFragment
    }
    site {
      ...SiteFragment
    }
  }
}
Variables
{"_ids": ["4"]}
Response
{
  "data": {
    "getElementSiteReportInfoBulk": [
      {
        "_id": 4,
        "description": "abc123",
        "inputs": [Input],
        "name": "xyz789",
        "parentElement": Element,
        "parentSite": Site,
        "parentsTreeElement": [Element],
        "parentsTreeSite": [Site],
        "profile": Profile,
        "reportGeneralFields": ["abc123"],
        "reportId": "xyz789",
        "reportType": "abc123",
        "rootElement": Element,
        "rootSite": Site,
        "site": Site
      }
    ]
  }
}

getElementSiteReportInfoCount

Response

Returns an Int

Arguments
NameDescription
where - ElementSiteReportFilters!

Example

Query
query GetElementSiteReportInfoCount($where: ElementSiteReportFilters!) {
  getElementSiteReportInfoCount(where: $where)
}
Variables
{"where": ElementSiteReportFilters}
Response
{"data": {"getElementSiteReportInfoCount": 123}}

getFile

Response

Returns a FileResponse

Arguments
NameDescription
fileName - String!
isFreezeFile - Boolean
roomId - String!

Example

Query
query GetFile(
  $fileName: String!,
  $isFreezeFile: Boolean,
  $roomId: String!
) {
  getFile(
    fileName: $fileName,
    isFreezeFile: $isFreezeFile,
    roomId: $roomId
  ) {
    content_type
    file_name
    last_modified
    link
    metadata
    size
    valid_until
  }
}
Variables
{
  "fileName": "xyz789",
  "isFreezeFile": true,
  "roomId": "abc123"
}
Response
{
  "data": {
    "getFile": {
      "content_type": "abc123",
      "file_name": "abc123",
      "last_modified": 123,
      "link": "abc123",
      "metadata": {},
      "size": 123,
      "valid_until": 123
    }
  }
}

getInputs

Response

Returns [Input]

Arguments
NameDescription
inputs - [ID!]!

Example

Query
query GetInputs($inputs: [ID!]!) {
  getInputs(inputs: $inputs) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{"inputs": [4]}
Response
{
  "data": {
    "getInputs": [
      {
        "_id": 4,
        "actions": [Action],
        "container": "abc123",
        "date": InputDate,
        "datetime": InputDatetime,
        "description": "abc123",
        "element": InputElement,
        "file": InputFile,
        "getURLsOfDescriptionFiles": "abc123",
        "instruction": InputInstruction,
        "isMutable": false,
        "labelValue": InputLabelValue,
        "log": [InputLog],
        "name": "xyz789",
        "note": InputNote,
        "number": InputNumber,
        "order": 987,
        "required": false,
        "signature": InputSignature,
        "site": InputSite,
        "string": InputString,
        "table": InputTable,
        "tag": "xyz789",
        "tags": InputTag,
        "time": InputTime,
        "tool": InputTool,
        "tooltip": "abc123",
        "type": "date",
        "value": InputDate
      }
    ]
  }
}

getIssueReportInfo

Response

Returns [ReportInfo]

Arguments
NameDescription
inputOrderBy - [ReportInfoInputOrderBy]
limit - IntDefault = 0
orderBy - [ReportInfoOrderByEnum]
skip - IntDefault = 0
where - IssueReportFilters!

Example

Query
query GetIssueReportInfo(
  $inputOrderBy: [ReportInfoInputOrderBy],
  $limit: Int,
  $orderBy: [ReportInfoOrderByEnum],
  $skip: Int,
  $where: IssueReportFilters!
) {
  getIssueReportInfo(
    inputOrderBy: $inputOrderBy,
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    approvedAt
    approvedBy {
      ...AccountFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedLabelValues {
      ...LabelValueFragment
    }
    description
    element {
      ...ElementFragment
    }
    endDate
    executedBy {
      ...AccountFragment
    }
    executionTime
    expectedTime {
      ...EstimatedDurationFragment
    }
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    issueCatalog
    issueId
    labels {
      ...LabelValueFragment
    }
    lastAction
    name
    parentElement {
      ...ElementFragment
    }
    parentSite {
      ...SiteFragment
    }
    reportGeneralFields
    reportId
    rootElement {
      ...ElementFragment
    }
    rootSite {
      ...SiteFragment
    }
    score {
      ...IssueReportScoreFragment
    }
    site {
      ...SiteFragment
    }
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskConditionalInputs {
      ...InputFragment
    }
    taskInputs {
      ...InputFragment
    }
    triggeredBy {
      ...TriggeredByFragment
    }
    wrongAnswer
  }
}
Variables
{
  "inputOrderBy": [ReportInfoInputOrderBy],
  "limit": 0,
  "orderBy": ["approvedAt_ASC"],
  "skip": 0,
  "where": IssueReportFilters
}
Response
{
  "data": {
    "getIssueReportInfo": [
      {
        "_id": 4,
        "approvedAt": "2007-12-03T10:15:30Z",
        "approvedBy": [Account],
        "assignedAccounts": [Account],
        "assignedLabelValues": [LabelValue],
        "description": "abc123",
        "element": Element,
        "endDate": "2007-12-03",
        "executedBy": [Account],
        "executionTime": 123.45,
        "expectedTime": EstimatedDuration,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "issueCatalog": "4",
        "issueId": "4",
        "labels": [LabelValue],
        "lastAction": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "parentElement": Element,
        "parentSite": Site,
        "reportGeneralFields": ["abc123"],
        "reportId": "xyz789",
        "rootElement": Element,
        "rootSite": Site,
        "score": IssueReportScore,
        "site": Site,
        "startDate": "2007-12-03",
        "stateMachineInstance": StateMachineInstance,
        "taskConditionalInputs": [Input],
        "taskInputs": [Input],
        "triggeredBy": TriggeredBy,
        "wrongAnswer": 123
      }
    ]
  }
}

getIssueReportInfoBulk

Response

Returns [ReportInfo]

Arguments
NameDescription
_ids - [ID]

Example

Query
query GetIssueReportInfoBulk($_ids: [ID]) {
  getIssueReportInfoBulk(_ids: $_ids) {
    _id
    approvedAt
    approvedBy {
      ...AccountFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedLabelValues {
      ...LabelValueFragment
    }
    description
    element {
      ...ElementFragment
    }
    endDate
    executedBy {
      ...AccountFragment
    }
    executionTime
    expectedTime {
      ...EstimatedDurationFragment
    }
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    issueCatalog
    issueId
    labels {
      ...LabelValueFragment
    }
    lastAction
    name
    parentElement {
      ...ElementFragment
    }
    parentSite {
      ...SiteFragment
    }
    reportGeneralFields
    reportId
    rootElement {
      ...ElementFragment
    }
    rootSite {
      ...SiteFragment
    }
    score {
      ...IssueReportScoreFragment
    }
    site {
      ...SiteFragment
    }
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskConditionalInputs {
      ...InputFragment
    }
    taskInputs {
      ...InputFragment
    }
    triggeredBy {
      ...TriggeredByFragment
    }
    wrongAnswer
  }
}
Variables
{"_ids": ["4"]}
Response
{
  "data": {
    "getIssueReportInfoBulk": [
      {
        "_id": "4",
        "approvedAt": "2007-12-03T10:15:30Z",
        "approvedBy": [Account],
        "assignedAccounts": [Account],
        "assignedLabelValues": [LabelValue],
        "description": "abc123",
        "element": Element,
        "endDate": "2007-12-03",
        "executedBy": [Account],
        "executionTime": 987.65,
        "expectedTime": EstimatedDuration,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "issueCatalog": 4,
        "issueId": "4",
        "labels": [LabelValue],
        "lastAction": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "parentElement": Element,
        "parentSite": Site,
        "reportGeneralFields": ["xyz789"],
        "reportId": "xyz789",
        "rootElement": Element,
        "rootSite": Site,
        "score": IssueReportScore,
        "site": Site,
        "startDate": "2007-12-03",
        "stateMachineInstance": StateMachineInstance,
        "taskConditionalInputs": [Input],
        "taskInputs": [Input],
        "triggeredBy": TriggeredBy,
        "wrongAnswer": 123
      }
    ]
  }
}

getIssueReportInfoCount

Response

Returns an Int

Arguments
NameDescription
where - IssueReportFilters!

Example

Query
query GetIssueReportInfoCount($where: IssueReportFilters!) {
  getIssueReportInfoCount(where: $where)
}
Variables
{"where": IssueReportFilters}
Response
{"data": {"getIssueReportInfoCount": 987}}

getMatrixData

Response

Returns a SkillMatrix

Arguments
NameDescription
skillSubjectId - ID!
where - SkillMatrixWhere

Example

Query
query GetMatrixData(
  $skillSubjectId: ID!,
  $where: SkillMatrixWhere
) {
  getMatrixData(
    skillSubjectId: $skillSubjectId,
    where: $where
  ) {
    data {
      ...SkillMatrixDataFragment
    }
    headers {
      ...SkillMatrixHeaderFragment
    }
  }
}
Variables
{"skillSubjectId": 4, "where": SkillMatrixWhere}
Response
{
  "data": {
    "getMatrixData": {
      "data": [SkillMatrixData],
      "headers": [SkillMatrixHeader]
    }
  }
}

getMessagesToLoad

Response

Returns an Int

Arguments
NameDescription
messageId - ID!

Example

Query
query GetMessagesToLoad($messageId: ID!) {
  getMessagesToLoad(messageId: $messageId)
}
Variables
{"messageId": 4}
Response
{"data": {"getMessagesToLoad": 123}}

getMixedRealityAuthSettings

Response

Returns a TenantConfigMixedReality

Example

Query
query GetMixedRealityAuthSettings {
  getMixedRealityAuthSettings {
    accountDomain
    accountId
    accountKey
  }
}
Response
{
  "data": {
    "getMixedRealityAuthSettings": {
      "accountDomain": "xyz789",
      "accountId": "xyz789",
      "accountKey": "abc123"
    }
  }
}

getMoreResults

Response

Returns a Boolean

Arguments
NameDescription
connectionId - String!

Example

Query
query GetMoreResults($connectionId: String!) {
  getMoreResults(connectionId: $connectionId)
}
Variables
{"connectionId": "abc123"}
Response
{"data": {"getMoreResults": false}}

getRecord

Response

Returns a GetRecord

Arguments
NameDescription
file_name - String!
room_id - String!

Example

Query
query GetRecord(
  $file_name: String!,
  $room_id: String!
) {
  getRecord(
    file_name: $file_name,
    room_id: $room_id
  ) {
    file_name
    link
    valid_until
  }
}
Variables
{
  "file_name": "abc123",
  "room_id": "abc123"
}
Response
{
  "data": {
    "getRecord": {
      "file_name": "abc123",
      "link": "xyz789",
      "valid_until": "abc123"
    }
  }
}

getRecordInfo

Response

Returns a RecordInfo

Arguments
NameDescription
file_name - String!
room_id - String!

Example

Query
query GetRecordInfo(
  $file_name: String!,
  $room_id: String!
) {
  getRecordInfo(
    file_name: $file_name,
    room_id: $room_id
  ) {
    content_type
    file_name
    last_modified
    size
  }
}
Variables
{
  "file_name": "xyz789",
  "room_id": "abc123"
}
Response
{
  "data": {
    "getRecordInfo": {
      "content_type": "abc123",
      "file_name": "abc123",
      "last_modified": 123,
      "size": 987
    }
  }
}

getRoomHistoryDetails

Response

Returns a RoomHistoryDetails

Arguments
NameDescription
roomCode - String!

Example

Query
query GetRoomHistoryDetails($roomCode: String!) {
  getRoomHistoryDetails(roomCode: $roomCode) {
    chatroom_id
    code
    create_at
    create_by
    duration
    id
    last_activity_at
    name
    participants {
      ...AccountFragment
    }
    user_create_by {
      ...AccountFragment
    }
    users
    valid_until
  }
}
Variables
{"roomCode": "abc123"}
Response
{
  "data": {
    "getRoomHistoryDetails": {
      "chatroom_id": "xyz789",
      "code": "abc123",
      "create_at": "2007-12-03T10:15:30Z",
      "create_by": "xyz789",
      "duration": "xyz789",
      "id": "abc123",
      "last_activity_at": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "participants": [Account],
      "user_create_by": Account,
      "users": ["xyz789"],
      "valid_until": "abc123"
    }
  }
}

getSkillLevelMembers

Response

Returns [Account]

Arguments
NameDescription
labelValuesIn - [String]
limit - Int
nameContains - String
skillSubjectId - ID!
skip - Int

Example

Query
query GetSkillLevelMembers(
  $labelValuesIn: [String],
  $limit: Int,
  $nameContains: String,
  $skillSubjectId: ID!,
  $skip: Int
) {
  getSkillLevelMembers(
    labelValuesIn: $labelValuesIn,
    limit: $limit,
    nameContains: $nameContains,
    skillSubjectId: $skillSubjectId,
    skip: $skip
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "labelValuesIn": ["abc123"],
  "limit": 987,
  "nameContains": "xyz789",
  "skillSubjectId": "4",
  "skip": 987
}
Response
{
  "data": {
    "getSkillLevelMembers": [
      {
        "ARUser": true,
        "_id": "4",
        "actions": 987,
        "agoraUid": "xyz789",
        "authorizedSites": [Site],
        "authorizedSitesFlattened": [Site],
        "authorizedSitesIds": ["4"],
        "chat": 987,
        "clientId": "4",
        "clientMixedRealityEnabled": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "defaultTimeZone": "abc123",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "email": "xyz789",
        "feed": 123,
        "filters": [AccountFilter],
        "firstLogin": false,
        "folder": AccountFolder,
        "folderId": "4",
        "gps": [123.45],
        "impersonatedBy": "4",
        "impersonatedById": 4,
        "inputs": [Input],
        "isActive": true,
        "isContact": true,
        "isPlatformAdmin": true,
        "issues": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lastLogin": "2007-12-03T10:15:30Z",
        "mobileTabs": ["xyz789"],
        "myClearances": [MyClearances],
        "name": "abc123",
        "onBoarding": AccountOnBoarding,
        "photo": "abc123",
        "preferences": AccountPreferences,
        "protected": true,
        "recoveryEmail": "xyz789",
        "requiresPasswordReset": true,
        "roles": [Role],
        "rolesIds": [4],
        "seenFeatures": {},
        "ssoLogin": false,
        "system": true,
        "tabs": [Tab],
        "teams": [Team],
        "template": AccountTemplate,
        "templateId": "4",
        "tenantId": "4",
        "tutorialCompleted": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "username": "xyz789"
      }
    ]
  }
}

getSkillLevelsBySubject

Response

Returns [SkillLevel]

Arguments
NameDescription
subjectId - ID!

Example

Query
query GetSkillLevelsBySubject($subjectId: ID!) {
  getSkillLevelsBySubject(subjectId: $subjectId) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"subjectId": "4"}
Response
{
  "data": {
    "getSkillLevelsBySubject": [
      {
        "_id": "4",
        "account": Account,
        "accountId": 4,
        "acquisitionDate": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "files": [File],
        "filesIds": [4],
        "level": "EXPERT",
        "protected": true,
        "requiredLevel": "EXPERT",
        "skill": Skill,
        "skillId": "4",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

getSuggestedToolItems

Response

Returns [ToolItem]

Arguments
NameDescription
tools - [ID!]!

Example

Query
query GetSuggestedToolItems($tools: [ID!]!) {
  getSuggestedToolItems(tools: $tools) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{"tools": [4]}
Response
{
  "data": {
    "getSuggestedToolItems": [
      {
        "_id": 4,
        "associatedWith": [ToolItem],
        "available": false,
        "code": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "customFields": [ToolItemCustomField],
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "hiddenFields": ["abc123"],
        "location": Location,
        "locationId": 4,
        "protected": true,
        "serialNumber": "abc123",
        "status": "IN_MAINTENANCE",
        "system": true,
        "tool": Tool,
        "toolId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usedBy": Account,
        "usedById": 4,
        "usedIn": IssueInstance,
        "usedInId": "4"
      }
    ]
  }
}

getTagKeys

Response

Returns a JSON

Example

Query
query GetTagKeys {
  getTagKeys
}
Response
{"data": {"getTagKeys": {}}}

getTagValuesWithKey

Response

Returns a JSON

Arguments
NameDescription
key - String!Key

Example

Query
query GetTagValuesWithKey($key: String!) {
  getTagValuesWithKey(key: $key)
}
Variables
{"key": "xyz789"}
Response
{"data": {"getTagValuesWithKey": {}}}

getTimeMap

Response

Returns [timeMapSelectionResult]

Arguments
NameDescription
_id - ID!

Example

Query
query GetTimeMap($_id: ID!) {
  getTimeMap(_id: $_id) {
    columns {
      ...timeMapColumnFragment
    }
  }
}
Variables
{"_id": 4}
Response
{"data": {"getTimeMap": [{"columns": [timeMapColumn]}]}}

getTimeSeriesDeviceSensors

Response

Returns a JSON

Arguments
NameDescription
topic - String!

Example

Query
query GetTimeSeriesDeviceSensors($topic: String!) {
  getTimeSeriesDeviceSensors(topic: $topic)
}
Variables
{"topic": "xyz789"}
Response
{"data": {"getTimeSeriesDeviceSensors": {}}}

getTimeTable

Arguments
NameDescription
_id - ID!

Example

Query
query GetTimeTable($_id: ID!) {
  getTimeTable(_id: $_id) {
    columns {
      ...timeTableColumnFragment
    }
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "getTimeTable": [{"columns": [timeTableColumn]}]
  }
}

glarPrefixes

Response

Returns [String]

Arguments
NameDescription
searchString - StringDefault = ""

Example

Query
query GlarPrefixes($searchString: String) {
  glarPrefixes(searchString: $searchString)
}
Variables
{"searchString": ""}
Response
{"data": {"glarPrefixes": ["xyz789"]}}

groupTimerJobs

Response

Returns [Job]

Arguments
NameDescription
issue - ID!

Example

Query
query GroupTimerJobs($issue: ID!) {
  groupTimerJobs(issue: $issue) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"issue": 4}
Response
{
  "data": {
    "groupTimerJobs": [
      {
        "_id": "4",
        "data": JobData,
        "failReason": "abc123",
        "failed": true,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

heatmapConfiguration

Response

Returns a HeatmapConfiguration

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationWhereUniqueInput!

Example

Query
query HeatmapConfiguration(
  $tenant: ID,
  $where: HeatmapConfigurationWhereUniqueInput!
) {
  heatmapConfiguration(
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": HeatmapConfigurationWhereUniqueInput
}
Response
{
  "data": {
    "heatmapConfiguration": {
      "_id": 4,
      "colorsRange": [HeatmapConfigurationColorsRange],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "protected": true,
      "system": true,
      "taskTime": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

heatmapConfigurationDraft

Response

Returns a HeatmapConfigurationDraft

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationDraftWhereUniqueInput!

Example

Query
query HeatmapConfigurationDraft(
  $tenant: ID,
  $where: HeatmapConfigurationDraftWhereUniqueInput!
) {
  heatmapConfigurationDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": HeatmapConfigurationDraftWhereUniqueInput
}
Response
{
  "data": {
    "heatmapConfigurationDraft": {
      "_id": 4,
      "colorsRange": [
        HeatmapConfigurationDraftColorsRange
      ],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplate": IssueTemplate,
      "issueTemplateDraft": IssueTemplateDraft,
      "issueTemplateDraftId": 4,
      "issueTemplateId": 4,
      "protected": true,
      "system": false,
      "taskTime": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

heatmapConfigurationDraftWithDeleted

Response

Returns a HeatmapConfigurationDraft

Arguments
NameDescription
where - HeatmapConfigurationDraftWhereUniqueInput!

Example

Query
query HeatmapConfigurationDraftWithDeleted($where: HeatmapConfigurationDraftWhereUniqueInput!) {
  heatmapConfigurationDraftWithDeleted(where: $where) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": HeatmapConfigurationDraftWhereUniqueInput}
Response
{
  "data": {
    "heatmapConfigurationDraftWithDeleted": {
      "_id": 4,
      "colorsRange": [
        HeatmapConfigurationDraftColorsRange
      ],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateDraft": IssueTemplateDraft,
      "issueTemplateDraftId": "4",
      "issueTemplateId": "4",
      "protected": true,
      "system": false,
      "taskTime": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

heatmapConfigurationDrafts

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [HeatmapConfigurationDraftOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - HeatmapConfigurationDraftWhereInputDefault = {}

Example

Query
query HeatmapConfigurationDrafts(
  $limit: Int,
  $orderBy: [HeatmapConfigurationDraftOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: HeatmapConfigurationDraftWhereInput
) {
  heatmapConfigurationDrafts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "heatmapConfigurationDrafts": [
      {
        "_id": "4",
        "colorsRange": [
          HeatmapConfigurationDraftColorsRange
        ],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "issueTemplate": IssueTemplate,
        "issueTemplateDraft": IssueTemplateDraft,
        "issueTemplateDraftId": 4,
        "issueTemplateId": "4",
        "protected": false,
        "system": false,
        "taskTime": 987,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

heatmapConfigurationDraftsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationDraftWhereInputDefault = {}

Example

Query
query HeatmapConfigurationDraftsCount(
  $tenant: ID,
  $where: HeatmapConfigurationDraftWhereInput
) {
  heatmapConfigurationDraftsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"heatmapConfigurationDraftsCount": 987}}

heatmapConfigurationWithDeleted

Response

Returns a HeatmapConfiguration

Arguments
NameDescription
where - HeatmapConfigurationWhereUniqueInput!

Example

Query
query HeatmapConfigurationWithDeleted($where: HeatmapConfigurationWhereUniqueInput!) {
  heatmapConfigurationWithDeleted(where: $where) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": HeatmapConfigurationWhereUniqueInput}
Response
{
  "data": {
    "heatmapConfigurationWithDeleted": {
      "_id": 4,
      "colorsRange": [HeatmapConfigurationColorsRange],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "protected": false,
      "system": false,
      "taskTime": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

heatmapConfigurations

Response

Returns [HeatmapConfiguration]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [HeatmapConfigurationOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - HeatmapConfigurationWhereInputDefault = {}

Example

Query
query HeatmapConfigurations(
  $limit: Int,
  $orderBy: [HeatmapConfigurationOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: HeatmapConfigurationWhereInput
) {
  heatmapConfigurations(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "heatmapConfigurations": [
      {
        "_id": "4",
        "colorsRange": [HeatmapConfigurationColorsRange],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueTemplate": IssueTemplate,
        "issueTemplateId": 4,
        "protected": true,
        "system": true,
        "taskTime": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

heatmapConfigurationsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationWhereInputDefault = {}

Example

Query
query HeatmapConfigurationsCount(
  $tenant: ID,
  $where: HeatmapConfigurationWhereInput
) {
  heatmapConfigurationsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"heatmapConfigurationsCount": 987}}

httpAddress

Response

Returns a String

Example

Query
query HttpAddress {
  httpAddress
}
Response
{"data": {"httpAddress": "abc123"}}

inputApprovals

Response

Returns [InputApproval]

Arguments
NameDescription
elementWhere - ElementWhereInput!
limit - Int!
orderBy - [InputApprovalOrderBy]
siteWhere - SiteWhereInput!
skip - IntDefault = 0

Example

Query
query InputApprovals(
  $elementWhere: ElementWhereInput!,
  $limit: Int!,
  $orderBy: [InputApprovalOrderBy],
  $siteWhere: SiteWhereInput!,
  $skip: Int
) {
  inputApprovals(
    elementWhere: $elementWhere,
    limit: $limit,
    orderBy: $orderBy,
    siteWhere: $siteWhere,
    skip: $skip
  ) {
    _id
    context
    name
    originalInput {
      ...InputFragment
    }
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingInput {
      ...InputFragment
    }
    responsibles {
      ...ResponsiblesFragment
    }
    updatedAt
  }
}
Variables
{
  "elementWhere": ElementWhereInput,
  "limit": 123,
  "orderBy": ["name_ASC"],
  "siteWhere": SiteWhereInput,
  "skip": 0
}
Response
{
  "data": {
    "inputApprovals": [
      {
        "_id": "4",
        "context": "Element",
        "name": "abc123",
        "originalInput": Input,
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingInput": Input,
        "responsibles": Responsibles,
        "updatedAt": "2007-12-03"
      }
    ]
  }
}

inputApprovalsCount

Response

Returns an Int

Arguments
NameDescription
elementWhere - ElementWhereInput!
siteWhere - SiteWhereInput!

Example

Query
query InputApprovalsCount(
  $elementWhere: ElementWhereInput!,
  $siteWhere: SiteWhereInput!
) {
  inputApprovalsCount(
    elementWhere: $elementWhere,
    siteWhere: $siteWhere
  )
}
Variables
{
  "elementWhere": ElementWhereInput,
  "siteWhere": SiteWhereInput
}
Response
{"data": {"inputApprovalsCount": 987}}

invite

Response

Returns an Invite

Arguments
NameDescription
tenant - ID
where - InviteWhereUniqueInput!

Example

Query
query Invite(
  $tenant: ID,
  $where: InviteWhereUniqueInput!
) {
  invite(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "tenant": "4",
  "where": InviteWhereUniqueInput
}
Response
{
  "data": {
    "invite": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": false,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

inviteToRoom

Response

Returns an InviteResponse

Arguments
NameDescription
domain - String
emails - [String]
phoneNumbers - [String]
roomCode - String!

Example

Query
query InviteToRoom(
  $domain: String,
  $emails: [String],
  $phoneNumbers: [String],
  $roomCode: String!
) {
  inviteToRoom(
    domain: $domain,
    emails: $emails,
    phoneNumbers: $phoneNumbers,
    roomCode: $roomCode
  ) {
    emailResponses {
      ...InviteEmailResponseFragment
    }
    smsResponses {
      ...InviteSMSResponseFragment
    }
  }
}
Variables
{
  "domain": "xyz789",
  "emails": ["xyz789"],
  "phoneNumbers": ["abc123"],
  "roomCode": "abc123"
}
Response
{
  "data": {
    "inviteToRoom": {
      "emailResponses": [InviteEmailResponse],
      "smsResponses": [InviteSMSResponse]
    }
  }
}

inviteWithDeleted

Response

Returns an Invite

Arguments
NameDescription
where - InviteWhereUniqueInput!

Example

Query
query InviteWithDeleted($where: InviteWhereUniqueInput!) {
  inviteWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{"where": InviteWhereUniqueInput}
Response
{
  "data": {
    "inviteWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": false,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

invites

Response

Returns [Invite]

Arguments
NameDescription
limit - IntDefault = 25
orderBy - [InviteOrderByInput]
skip - IntDefault = 0
tenant - ID
where - InviteWhereInput

Example

Query
query Invites(
  $limit: Int,
  $orderBy: [InviteOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: InviteWhereInput
) {
  invites(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "limit": 25,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "tenant": 4,
  "where": InviteWhereInput
}
Response
{
  "data": {
    "invites": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "extra": InviteExtra,
        "lastSentAt": "2007-12-03T10:15:30Z",
        "protected": false,
        "system": false,
        "token": "abc123",
        "type": "invite_user_to_application",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "validUntil": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

invitesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - InviteWhereInputDefault = {}

Example

Query
query InvitesCount(
  $tenant: ID,
  $where: InviteWhereInput
) {
  invitesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"invitesCount": 987}}

isRolesAssignedToAccounts

Response

Returns a Boolean

Arguments
NameDescription
_ids - [ID!]!

Example

Query
query IsRolesAssignedToAccounts($_ids: [ID!]!) {
  isRolesAssignedToAccounts(_ids: $_ids)
}
Variables
{"_ids": [4]}
Response
{"data": {"isRolesAssignedToAccounts": true}}

isValidDomain

Response

Returns a Boolean

Arguments
NameDescription
domain - String!

Example

Query
query IsValidDomain($domain: String!) {
  isValidDomain(domain: $domain)
}
Variables
{"domain": "xyz789"}
Response
{"data": {"isValidDomain": true}}

isValidInvite

Response

Returns a Boolean

Arguments
NameDescription
domain - String!
token - String!

Example

Query
query IsValidInvite(
  $domain: String!,
  $token: String!
) {
  isValidInvite(
    domain: $domain,
    token: $token
  )
}
Variables
{
  "domain": "xyz789",
  "token": "abc123"
}
Response
{"data": {"isValidInvite": false}}

isValidToken

Response

Returns a String

Arguments
NameDescription
token - StringToken string

Example

Query
query IsValidToken($token: String) {
  isValidToken(token: $token)
}
Variables
{"token": "abc123"}
Response
{"data": {"isValidToken": "abc123"}}

issue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
query Issue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  issue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "issue": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

issueCatalog

Response

Returns an IssueCatalog

Arguments
NameDescription
tenant - ID
where - IssueCatalogWhereUniqueInput!

Example

Query
query IssueCatalog(
  $tenant: ID,
  $where: IssueCatalogWhereUniqueInput!
) {
  issueCatalog(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueCatalogWhereUniqueInput
}
Response
{
  "data": {
    "issueCatalog": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": false,
      "remarksOnTasks": true,
      "report": IssueCatalogReport,
      "requestDescription": true,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": false,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogDraft

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
tenant - ID
where - IssueCatalogDraftWhereUniqueInput!

Example

Query
query IssueCatalogDraft(
  $tenant: ID,
  $where: IssueCatalogDraftWhereUniqueInput!
) {
  issueCatalogDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueCatalogDraftWhereUniqueInput
}
Response
{
  "data": {
    "issueCatalogDraft": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogDraftReport,
      "requestDescription": false,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": false,
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueCatalogDraftWithDeleted

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
where - IssueCatalogDraftWhereUniqueInput!

Example

Query
query IssueCatalogDraftWithDeleted($where: IssueCatalogDraftWhereUniqueInput!) {
  issueCatalogDraftWithDeleted(where: $where) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": IssueCatalogDraftWhereUniqueInput}
Response
{
  "data": {
    "issueCatalogDraftWithDeleted": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": false,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": true,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": false,
      "remarksOnTasks": true,
      "report": IssueCatalogDraftReport,
      "requestDescription": false,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": false,
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueCatalogDrafts

Response

Returns [IssueCatalogDraft]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogDraftOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueCatalogDraftWhereInputDefault = {}

Example

Query
query IssueCatalogDrafts(
  $limit: Int,
  $orderBy: [IssueCatalogDraftOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueCatalogDraftWhereInput
) {
  issueCatalogDrafts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "issueCatalogDrafts": [
      {
        "_id": 4,
        "acknowledgeRequired": false,
        "allowTracking": false,
        "approval": IssueCatalogDraftApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": ["4"],
        "assignedSkills": [
          IssueCatalogDraftAssignedSkill
        ],
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "element": Element,
        "elementId": "4",
        "emailsToSendReport": ["abc123"],
        "filterTasksByLabels": true,
        "folder": IssueCatalogFolder,
        "folderId": 4,
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isActive": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "materialLegendAndComments": true,
        "name": "xyz789",
        "needsApproval": true,
        "paperForm": IssueCatalogDraftPaperForm,
        "protected": false,
        "remarksOnTasks": true,
        "report": IssueCatalogDraftReport,
        "requestDescription": false,
        "scheduleTasks": true,
        "scheduler": [IssueCatalogDraftScheduler],
        "scoreInputs": true,
        "sequential": true,
        "site": Site,
        "siteId": 4,
        "stateMachine": StateMachine,
        "stateMachineId": 4,
        "system": true,
        "taskMappings": [IssueCatalogDraftTaskMapping],
        "tasksFallbackStateMachine": StateMachine,
        "tasksFallbackStateMachineId": 4,
        "template": IssueTemplate,
        "templateId": 4,
        "toolLegendAndComments": true,
        "updateCatalog": IssueCatalog,
        "updateCatalogId": 4,
        "updateLog": [IssueCatalogDraftUpdateLog],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

issueCatalogDraftsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueCatalogDraftWhereInputDefault = {}

Example

Query
query IssueCatalogDraftsCount(
  $tenant: ID,
  $where: IssueCatalogDraftWhereInput
) {
  issueCatalogDraftsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issueCatalogDraftsCount": 987}}

issueCatalogFolder

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
tenant - ID
where - IssueCatalogFolderWhereUniqueInput!

Example

Query
query IssueCatalogFolder(
  $tenant: ID,
  $where: IssueCatalogFolderWhereUniqueInput!
) {
  issueCatalogFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": IssueCatalogFolderWhereUniqueInput}
Response
{
  "data": {
    "issueCatalogFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 987,
      "issueCatalogsCount": 987,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": "4",
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogFolderWithDeleted

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
where - IssueCatalogFolderWhereUniqueInput!

Example

Query
query IssueCatalogFolderWithDeleted($where: IssueCatalogFolderWhereUniqueInput!) {
  issueCatalogFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": IssueCatalogFolderWhereUniqueInput}
Response
{
  "data": {
    "issueCatalogFolderWithDeleted": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 123,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": "4",
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogFolders

Response

Returns [IssueCatalogFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueCatalogFolderWhereInputDefault = {}

Example

Query
query IssueCatalogFolders(
  $limit: Int,
  $orderBy: [IssueCatalogFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueCatalogFolderWhereInput
) {
  issueCatalogFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issueCatalogFolders": [
      {
        "_id": 4,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueCatalogFoldersCount": 123,
        "issueCatalogsCount": 987,
        "name": "abc123",
        "parent": IssueCatalogFolder,
        "parentId": 4,
        "parentsTree": [IssueCatalogFolder],
        "parentsTreeIds": [4],
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

issueCatalogFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueCatalogFolderWhereInputDefault = {}

Example

Query
query IssueCatalogFoldersCount(
  $tenant: ID,
  $where: IssueCatalogFolderWhereInput
) {
  issueCatalogFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issueCatalogFoldersCount": 123}}

issueCatalogFoldersWithDeleted

Response

Returns [IssueCatalogFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueCatalogFolderWhereInputDefault = {}

Example

Query
query IssueCatalogFoldersWithDeleted(
  $limit: Int,
  $orderBy: [IssueCatalogFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueCatalogFolderWhereInput
) {
  issueCatalogFoldersWithDeleted(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "issueCatalogFoldersWithDeleted": [
      {
        "_id": "4",
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "issueCatalogFoldersCount": 123,
        "issueCatalogsCount": 123,
        "name": "abc123",
        "parent": IssueCatalogFolder,
        "parentId": "4",
        "parentsTree": [IssueCatalogFolder],
        "parentsTreeIds": [4],
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

issueCatalogWithDeleted

Response

Returns an IssueCatalog

Arguments
NameDescription
tenant - ID
where - IssueCatalogWhereUniqueInput!

Example

Query
query IssueCatalogWithDeleted(
  $tenant: ID,
  $where: IssueCatalogWhereUniqueInput!
) {
  issueCatalogWithDeleted(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueCatalogWhereUniqueInput
}
Response
{
  "data": {
    "issueCatalogWithDeleted": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": true,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsApproval": true,
      "paperForm": IssueCatalogPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": false,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueCatalogs

Response

Returns [IssueCatalog]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogOrderByEnum]This orderBy is deprecated
orderByEnum - [IssueCatalogOrderByEnum]
skip - IntDefault = 0
where - IssueCatalogWhereInput

Example

Query
query IssueCatalogs(
  $limit: Int,
  $orderBy: [IssueCatalogOrderByEnum],
  $orderByEnum: [IssueCatalogOrderByEnum],
  $skip: Int,
  $where: IssueCatalogWhereInput
) {
  issueCatalogs(
    limit: $limit,
    orderBy: $orderBy,
    orderByEnum: $orderByEnum,
    skip: $skip,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": ["_id_ASC"],
  "orderByEnum": ["_id_ASC"],
  "skip": 0,
  "where": IssueCatalogWhereInput
}
Response
{
  "data": {
    "issueCatalogs": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "allowTracking": false,
        "approval": IssueCatalogApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueCatalogAssignedSkill],
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["abc123"],
        "filterTasksByLabels": false,
        "folder": IssueCatalogFolder,
        "folderId": 4,
        "glarPrefix": "xyz789",
        "inputs": [Input],
        "isActive": true,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsApproval": true,
        "paperForm": IssueCatalogPaperForm,
        "protected": false,
        "remarksOnTasks": true,
        "report": IssueCatalogReport,
        "requestDescription": true,
        "scheduleTasks": false,
        "scheduler": [IssueCatalogScheduler],
        "scoreInputs": false,
        "sequential": false,
        "site": Site,
        "siteId": "4",
        "stateMachine": StateMachine,
        "stateMachineId": "4",
        "system": true,
        "taskMappings": [TaskMapping],
        "tasksFallbackStateMachine": StateMachine,
        "tasksFallbackStateMachineId": "4",
        "template": IssueTemplate,
        "templateId": 4,
        "toolLegendAndComments": false,
        "totalExecutionInstances": 987,
        "updateLog": [IssueCatalogUpdateLog],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

issueCatalogsAndFolders

Response

Returns [IssueCatalogOrFolder]

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [IssueCatalogFolderOrderByInput!]!
templateFolderWhere - IssueCatalogFolderWhereInput
templateOrderBy - [IssueCatalogOrderByInput!]!
templateWhere - IssueCatalogWhereInput
tenant - ID

Example

Query
query IssueCatalogsAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [IssueCatalogFolderOrderByInput!]!,
  $templateFolderWhere: IssueCatalogFolderWhereInput,
  $templateOrderBy: [IssueCatalogOrderByInput!]!,
  $templateWhere: IssueCatalogWhereInput,
  $tenant: ID
) {
  issueCatalogsAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on IssueCatalog {
      ...IssueCatalogFragment
    }
    ... on IssueCatalogFolder {
      ...IssueCatalogFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": IssueCatalogFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": IssueCatalogWhereInput,
  "tenant": "4"
}
Response
{"data": {"issueCatalogsAndFolders": [IssueCatalog]}}

issueCatalogsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueCatalogWhereInputDefault = {}

Example

Query
query IssueCatalogsCount(
  $tenant: ID,
  $where: IssueCatalogWhereInput
) {
  issueCatalogsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issueCatalogsCount": 987}}

issueCatalogsWithDeleted

Response

Returns [IssueCatalog]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogOrderByEnum]This orderBy is deprecated
orderByEnum - [IssueCatalogOrderByEnum]
skip - IntDefault = 0
where - IssueCatalogWhereInput

Example

Query
query IssueCatalogsWithDeleted(
  $limit: Int,
  $orderBy: [IssueCatalogOrderByEnum],
  $orderByEnum: [IssueCatalogOrderByEnum],
  $skip: Int,
  $where: IssueCatalogWhereInput
) {
  issueCatalogsWithDeleted(
    limit: $limit,
    orderBy: $orderBy,
    orderByEnum: $orderByEnum,
    skip: $skip,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": ["_id_ASC"],
  "orderByEnum": ["_id_ASC"],
  "skip": 0,
  "where": IssueCatalogWhereInput
}
Response
{
  "data": {
    "issueCatalogsWithDeleted": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "allowTracking": false,
        "approval": IssueCatalogApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": ["4"],
        "assignedSkills": [IssueCatalogAssignedSkill],
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["abc123"],
        "filterTasksByLabels": true,
        "folder": IssueCatalogFolder,
        "folderId": "4",
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isActive": true,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "materialLegendAndComments": false,
        "name": "xyz789",
        "needsApproval": true,
        "paperForm": IssueCatalogPaperForm,
        "protected": true,
        "remarksOnTasks": true,
        "report": IssueCatalogReport,
        "requestDescription": true,
        "scheduleTasks": false,
        "scheduler": [IssueCatalogScheduler],
        "scoreInputs": false,
        "sequential": false,
        "site": Site,
        "siteId": "4",
        "stateMachine": StateMachine,
        "stateMachineId": 4,
        "system": true,
        "taskMappings": [TaskMapping],
        "tasksFallbackStateMachine": StateMachine,
        "tasksFallbackStateMachineId": 4,
        "template": IssueTemplate,
        "templateId": "4",
        "toolLegendAndComments": false,
        "totalExecutionInstances": 987,
        "updateLog": [IssueCatalogUpdateLog],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

issueInstance

This method will be replaced by 'issue'
Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
query IssueInstance(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  issueInstance(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "issueInstance": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": true,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["abc123"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

issueInstanceExecutionInputs

Response

Returns [Input]

Arguments
NameDescription
_ids - [ID!]!List of execution input IDs
issueId - ID!

Example

Query
query IssueInstanceExecutionInputs(
  $_ids: [ID!]!,
  $issueId: ID!
) {
  issueInstanceExecutionInputs(
    _ids: $_ids,
    issueId: $issueId
  ) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{
  "_ids": ["4"],
  "issueId": "4"
}
Response
{
  "data": {
    "issueInstanceExecutionInputs": [
      {
        "_id": 4,
        "actions": [Action],
        "container": "abc123",
        "date": InputDate,
        "datetime": InputDatetime,
        "description": "abc123",
        "element": InputElement,
        "file": InputFile,
        "getURLsOfDescriptionFiles": "xyz789",
        "instruction": InputInstruction,
        "isMutable": true,
        "labelValue": InputLabelValue,
        "log": [InputLog],
        "name": "abc123",
        "note": InputNote,
        "number": InputNumber,
        "order": 987,
        "required": true,
        "signature": InputSignature,
        "site": InputSite,
        "string": InputString,
        "table": InputTable,
        "tag": "abc123",
        "tags": InputTag,
        "time": InputTime,
        "tool": InputTool,
        "tooltip": "xyz789",
        "type": "date",
        "value": InputDate
      }
    ]
  }
}

issueInstanceWithDeleted

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
query IssueInstanceWithDeleted(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  issueInstanceWithDeleted(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "tenant": "4",
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "issueInstanceWithDeleted": {
      "_id": 4,
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

issueInstances

This method will be replaced by 'issues'
Response

Returns [IssueInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueInstanceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query IssueInstances(
  $limit: Int,
  $orderBy: [IssueInstanceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  issueInstances(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issueInstances": [
      {
        "_id": 4,
        "acknowledgeRequired": false,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": [4],
        "allTaskScore": IssueTasksScore,
        "allowTracking": true,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": 4,
        "chatRoom": ChatRoom,
        "chatRoomId": "4",
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 987,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "createdBySystem": true,
        "customArConfiguration": true,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 123,
        "element": Element,
        "elementId": "4",
        "emailsToSendReport": ["xyz789"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 987,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 123,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": ["4"],
        "finishedByConditionalInput": false,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "glarPrefix": "xyz789",
        "inputs": [Input],
        "isLocked": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": 4,
        "markers": [Marker],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsAcknowledge": false,
        "needsApproval": true,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": 4,
        "possibleActions": ["abc123"],
        "protected": false,
        "remarksOnTasks": false,
        "requestDescription": true,
        "rootElement": Element,
        "rootElementId": 4,
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": true,
        "seenBy": [Account],
        "seenByIds": [4],
        "sequential": false,
        "site": Site,
        "siteId": "4",
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": true,
        "taskGroups": [TaskGroup],
        "timesheetCount": 123,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": [4],
        "toolLegendAndComments": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usersNotBlocked": [4],
        "workPackage": JobDataWorkPackage,
        "workPackageId": "4"
      }
    ]
  }
}

issueInstancesCount

This method will be replaced by 'issuesCount'
Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query IssueInstancesCount(
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  issueInstancesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"issueInstancesCount": 123}}

issueReport

Response

Returns an IssueReport

Arguments
NameDescription
tenant - ID
where - IssueReportWhereUniqueInput!

Example

Query
query IssueReport(
  $tenant: ID,
  $where: IssueReportWhereUniqueInput!
) {
  issueReport(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueReportWhereUniqueInput
}
Response
{
  "data": {
    "issueReport": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "distinctIssueReportValues": IssueReportDistinctValues,
      "folder": IssueReportFolder,
      "folderId": 4,
      "generalFields": ["actions"],
      "issueCatalog": IssueCatalog,
      "issueCatalogId": 4,
      "myConfig": IssueReportConfig,
      "name": "abc123",
      "protected": true,
      "system": false,
      "taskConditionalInputFields": [4],
      "taskInputFields": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueReportFolder

Response

Returns an IssueReportFolder

Arguments
NameDescription
tenant - ID
where - IssueReportFolderWhereUniqueInput!

Example

Query
query IssueReportFolder(
  $tenant: ID,
  $where: IssueReportFolderWhereUniqueInput!
) {
  issueReportFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": IssueReportFolderWhereUniqueInput}
Response
{
  "data": {
    "issueReportFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueReportFoldersCount": 987,
      "issueReportsCount": 123,
      "name": "abc123",
      "parent": IssueReportFolder,
      "parentId": "4",
      "parentsTree": [IssueReportFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueReportFolderWithDeleted

Response

Returns an IssueReportFolder

Arguments
NameDescription
where - IssueReportFolderWhereUniqueInput!

Example

Query
query IssueReportFolderWithDeleted($where: IssueReportFolderWhereUniqueInput!) {
  issueReportFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": IssueReportFolderWhereUniqueInput}
Response
{
  "data": {
    "issueReportFolderWithDeleted": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueReportFoldersCount": 123,
      "issueReportsCount": 987,
      "name": "xyz789",
      "parent": IssueReportFolder,
      "parentId": 4,
      "parentsTree": [IssueReportFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueReportFolders

Response

Returns [IssueReportFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueReportFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueReportFolderWhereInputDefault = {}

Example

Query
query IssueReportFolders(
  $limit: Int,
  $orderBy: [IssueReportFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueReportFolderWhereInput
) {
  issueReportFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "issueReportFolders": [
      {
        "_id": "4",
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueReportFoldersCount": 987,
        "issueReportsCount": 987,
        "name": "xyz789",
        "parent": IssueReportFolder,
        "parentId": 4,
        "parentsTree": [IssueReportFolder],
        "parentsTreeIds": [4],
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

issueReportFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueReportFolderWhereInputDefault = {}

Example

Query
query IssueReportFoldersCount(
  $tenant: ID,
  $where: IssueReportFolderWhereInput
) {
  issueReportFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"issueReportFoldersCount": 987}}

issueReportWithDeleted

Response

Returns an IssueReport

Arguments
NameDescription
where - IssueReportWhereUniqueInput!

Example

Query
query IssueReportWithDeleted($where: IssueReportWhereUniqueInput!) {
  issueReportWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": IssueReportWhereUniqueInput}
Response
{
  "data": {
    "issueReportWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "distinctIssueReportValues": IssueReportDistinctValues,
      "folder": IssueReportFolder,
      "folderId": "4",
      "generalFields": ["actions"],
      "issueCatalog": IssueCatalog,
      "issueCatalogId": 4,
      "myConfig": IssueReportConfig,
      "name": "xyz789",
      "protected": false,
      "system": true,
      "taskConditionalInputFields": ["4"],
      "taskInputFields": ["4"],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueReports

Response

Returns [IssueReport]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueReportOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueReportWhereInputDefault = {}

Example

Query
query IssueReports(
  $limit: Int,
  $orderBy: [IssueReportOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueReportWhereInput
) {
  issueReports(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issueReports": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "distinctIssueReportValues": IssueReportDistinctValues,
        "folder": IssueReportFolder,
        "folderId": 4,
        "generalFields": ["actions"],
        "issueCatalog": IssueCatalog,
        "issueCatalogId": "4",
        "myConfig": IssueReportConfig,
        "name": "xyz789",
        "protected": false,
        "system": false,
        "taskConditionalInputFields": [4],
        "taskInputFields": ["4"],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

issueReportsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueReportWhereInputDefault = {}

Example

Query
query IssueReportsCount(
  $tenant: ID,
  $where: IssueReportWhereInput
) {
  issueReportsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issueReportsCount": 987}}

issueSkills

Arguments
NameDescription
issueId - ID!

Example

Query
query IssueSkills($issueId: ID!) {
  issueSkills(issueId: $issueId) {
    _id
    choosenSkillLevelName
    id
    level
    skillname
  }
}
Variables
{"issueId": 4}
Response
{
  "data": {
    "issueSkills": [
      {
        "_id": "4",
        "choosenSkillLevelName": "abc123",
        "id": 4,
        "level": "abc123",
        "skillname": "abc123"
      }
    ]
  }
}

issueTemplate

Response

Returns an IssueTemplate

Arguments
NameDescription
tenant - ID
where - IssueTemplateWhereUniqueInput!

Example

Query
query IssueTemplate(
  $tenant: ID,
  $where: IssueTemplateWhereUniqueInput!
) {
  issueTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"tenant": 4, "where": IssueTemplateWhereUniqueInput}
Response
{
  "data": {
    "issueTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

issueTemplateDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
tenant - ID
where - IssueTemplateDraftWhereUniqueInput!

Example

Query
query IssueTemplateDraft(
  $tenant: ID,
  $where: IssueTemplateDraftWhereUniqueInput!
) {
  issueTemplateDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "tenant": "4",
  "where": IssueTemplateDraftWhereUniqueInput
}
Response
{
  "data": {
    "issueTemplateDraft": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

issueTemplateDraftWithDeleted

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
where - IssueTemplateDraftWhereUniqueInput!

Example

Query
query IssueTemplateDraftWithDeleted($where: IssueTemplateDraftWhereUniqueInput!) {
  issueTemplateDraftWithDeleted(where: $where) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"where": IssueTemplateDraftWhereUniqueInput}
Response
{
  "data": {
    "issueTemplateDraftWithDeleted": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

issueTemplateDrafts

Response

Returns [IssueTemplateDraft]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueTemplateDraftOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueTemplateDraftWhereInputDefault = {}

Example

Query
query IssueTemplateDrafts(
  $limit: Int,
  $orderBy: [IssueTemplateDraftOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueTemplateDraftWhereInput
) {
  issueTemplateDrafts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "issueTemplateDrafts": [
      {
        "_id": "4",
        "assignedSkills": [
          IssueTemplateDraftAssignedSkill
        ],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "favorites": [IssueTemplateDraftFavorite],
        "folder": IssueTemplateFolder,
        "folderId": 4,
        "frame": IssueTemplateDraftFrame,
        "icon": "xyz789",
        "protected": false,
        "selectedVariant": "4",
        "system": true,
        "taskTemplateGroups": [
          IssueTemplateDraftTaskTemplateGroup
        ],
        "timeMapColumns": [
          IssueTemplateDraftTimeMapColumn
        ],
        "timeTableFilters": [
          IssueTemplateDraftTimeTableFilter
        ],
        "title": "abc123",
        "updateTemplate": IssueTemplate,
        "updateTemplateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "variant": IssueTemplateDraftVariant
      }
    ]
  }
}

issueTemplateDraftsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueTemplateDraftWhereInputDefault = {}

Example

Query
query IssueTemplateDraftsCount(
  $tenant: ID,
  $where: IssueTemplateDraftWhereInput
) {
  issueTemplateDraftsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"issueTemplateDraftsCount": 123}}

issueTemplateFolder

Response

Returns an IssueTemplateFolder

Arguments
NameDescription
tenant - ID
where - IssueTemplateFolderWhereUniqueInput!

Example

Query
query IssueTemplateFolder(
  $tenant: ID,
  $where: IssueTemplateFolderWhereUniqueInput!
) {
  issueTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": IssueTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "issueTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplateFoldersCount": 123,
      "issueTemplatesCount": 987,
      "name": "xyz789",
      "parent": IssueTemplateFolder,
      "parentId": 4,
      "parentsTree": [IssueTemplateFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueTemplateFolderWithDeleted

Response

Returns an IssueTemplateFolder

Arguments
NameDescription
where - IssueTemplateFolderWhereUniqueInput!

Example

Query
query IssueTemplateFolderWithDeleted($where: IssueTemplateFolderWhereUniqueInput!) {
  issueTemplateFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": IssueTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "issueTemplateFolderWithDeleted": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplateFoldersCount": 123,
      "issueTemplatesCount": 123,
      "name": "xyz789",
      "parent": IssueTemplateFolder,
      "parentId": 4,
      "parentsTree": [IssueTemplateFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueTemplateFolders

Response

Returns [IssueTemplateFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueTemplateFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueTemplateFolderWhereInputDefault = {}

Example

Query
query IssueTemplateFolders(
  $limit: Int,
  $orderBy: [IssueTemplateFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueTemplateFolderWhereInput
) {
  issueTemplateFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issueTemplateFolders": [
      {
        "_id": "4",
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueTemplateFoldersCount": 123,
        "issueTemplatesCount": 123,
        "name": "abc123",
        "parent": IssueTemplateFolder,
        "parentId": 4,
        "parentsTree": [IssueTemplateFolder],
        "parentsTreeIds": ["4"],
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

issueTemplateFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueTemplateFolderWhereInputDefault = {}

Example

Query
query IssueTemplateFoldersCount(
  $tenant: ID,
  $where: IssueTemplateFolderWhereInput
) {
  issueTemplateFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"issueTemplateFoldersCount": 987}}

issueTemplateLibrary

Response

Returns [IssueTemplate]

Arguments
NameDescription
limit - IntDefault = 20
orderBy - [IssueTemplateOrderByInput!]!
search - String
skip - IntDefault = 0
type - String

Example

Query
query IssueTemplateLibrary(
  $limit: Int,
  $orderBy: [IssueTemplateOrderByInput!]!,
  $search: String,
  $skip: Int,
  $type: String
) {
  issueTemplateLibrary(
    limit: $limit,
    orderBy: $orderBy,
    search: $search,
    skip: $skip,
    type: $type
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "limit": 20,
  "orderBy": ["_id_ASC"],
  "search": "abc123",
  "skip": 0,
  "type": "abc123"
}
Response
{
  "data": {
    "issueTemplateLibrary": [
      {
        "_id": 4,
        "archived": true,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "favorites": [IssueTemplateFavorite],
        "folder": IssueTemplateFolder,
        "folderId": "4",
        "frame": IssueTemplateFrame,
        "icon": "abc123",
        "protected": false,
        "selectedVariant": 4,
        "system": true,
        "taskTemplateGroups": [TaskTemplateGroup],
        "timeMapColumns": [IssueTemplateTimeMapColumn],
        "timeTableFilters": [
          IssueTemplateTimeTableFilter
        ],
        "title": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "variant": IssueTemplateVariant
      }
    ]
  }
}

issueTemplateLibraryCount

Response

Returns an Int

Arguments
NameDescription
search - String
type - String

Example

Query
query IssueTemplateLibraryCount(
  $search: String,
  $type: String
) {
  issueTemplateLibraryCount(
    search: $search,
    type: $type
  )
}
Variables
{
  "search": "abc123",
  "type": "abc123"
}
Response
{"data": {"issueTemplateLibraryCount": 987}}

issueTemplateWithDeleted

Response

Returns an IssueTemplate

Arguments
NameDescription
where - IssueTemplateWhereUniqueInput!

Example

Query
query IssueTemplateWithDeleted($where: IssueTemplateWhereUniqueInput!) {
  issueTemplateWithDeleted(where: $where) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"where": IssueTemplateWhereUniqueInput}
Response
{
  "data": {
    "issueTemplateWithDeleted": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

issueTemplates

Response

Returns [IssueTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueTemplateOrderByEnum]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueTemplateWhereInputDefault = {}

Example

Query
query IssueTemplates(
  $limit: Int,
  $orderBy: [IssueTemplateOrderByEnum],
  $skip: Int,
  $tenant: ID,
  $where: IssueTemplateWhereInput
) {
  issueTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issueTemplates": [
      {
        "_id": "4",
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "favorites": [IssueTemplateFavorite],
        "folder": IssueTemplateFolder,
        "folderId": "4",
        "frame": IssueTemplateFrame,
        "icon": "abc123",
        "protected": true,
        "selectedVariant": 4,
        "system": true,
        "taskTemplateGroups": [TaskTemplateGroup],
        "timeMapColumns": [IssueTemplateTimeMapColumn],
        "timeTableFilters": [
          IssueTemplateTimeTableFilter
        ],
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": IssueTemplateVariant
      }
    ]
  }
}

issueTemplatesAndFolders

Response

Returns [IssueTemplateOrFolder]

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [IssueTemplateFolderOrderByInput!]!
templateFolderWhere - IssueTemplateFolderWhereInput
templateOrderBy - [IssueTemplateOrderByInput!]!
templateWhere - IssueTemplateWhereInput
tenant - ID

Example

Query
query IssueTemplatesAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [IssueTemplateFolderOrderByInput!]!,
  $templateFolderWhere: IssueTemplateFolderWhereInput,
  $templateOrderBy: [IssueTemplateOrderByInput!]!,
  $templateWhere: IssueTemplateWhereInput,
  $tenant: ID
) {
  issueTemplatesAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on IssueTemplate {
      ...IssueTemplateFragment
    }
    ... on IssueTemplateFolder {
      ...IssueTemplateFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": IssueTemplateFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": IssueTemplateWhereInput,
  "tenant": "4"
}
Response
{"data": {"issueTemplatesAndFolders": [IssueTemplate]}}

issueTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueTemplateWhereInputDefault = {}

Example

Query
query IssueTemplatesCount(
  $tenant: ID,
  $where: IssueTemplateWhereInput
) {
  issueTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issueTemplatesCount": 123}}

issues

Response

Returns [IssueInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueInstanceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query Issues(
  $limit: Int,
  $orderBy: [IssueInstanceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  issues(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "issues": [
      {
        "_id": 4,
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": ["4"],
        "allTaskScore": IssueTasksScore,
        "allowTracking": true,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": "4",
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 987,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "createdBySystem": true,
        "customArConfiguration": false,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 987,
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["xyz789"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 987,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 123,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": [4],
        "finishedByConditionalInput": false,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isLocked": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": "4",
        "markers": [Marker],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsAcknowledge": true,
        "needsApproval": false,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": "4",
        "possibleActions": ["xyz789"],
        "protected": true,
        "remarksOnTasks": true,
        "requestDescription": true,
        "rootElement": Element,
        "rootElementId": 4,
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": true,
        "seenBy": [Account],
        "seenByIds": [4],
        "sequential": false,
        "site": Site,
        "siteId": 4,
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": false,
        "taskGroups": [TaskGroup],
        "timesheetCount": 123,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": ["4"],
        "toolLegendAndComments": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usersNotBlocked": ["4"],
        "workPackage": JobDataWorkPackage,
        "workPackageId": "4"
      }
    ]
  }
}

issuesAndActions

Response

Returns [IssueOrAction]

Arguments
NameDescription
actionOrderBy - [ActionOrderByInput]Default = [name_ASC]
actionWhere - ActionWhereInput
issueOrderBy - [IssueInstanceOrderByInput]Default = [name_ASC]
issueWhere - IssueInstanceWhereInput!
limit - Int
skip - Int

Example

Query
query IssuesAndActions(
  $actionOrderBy: [ActionOrderByInput],
  $actionWhere: ActionWhereInput,
  $issueOrderBy: [IssueInstanceOrderByInput],
  $issueWhere: IssueInstanceWhereInput!,
  $limit: Int,
  $skip: Int
) {
  issuesAndActions(
    actionOrderBy: $actionOrderBy,
    actionWhere: $actionWhere,
    issueOrderBy: $issueOrderBy,
    issueWhere: $issueWhere,
    limit: $limit,
    skip: $skip
  ) {
    ... on Action {
      ...ActionFragment
    }
    ... on IssueInstance {
      ...IssueInstanceFragment
    }
  }
}
Variables
{
  "actionOrderBy": ["name_ASC"],
  "actionWhere": ActionWhereInput,
  "issueOrderBy": ["name_ASC"],
  "issueWhere": IssueInstanceWhereInput,
  "limit": 987,
  "skip": 123
}
Response
{"data": {"issuesAndActions": [Action]}}

issuesByTaskInputs

Description

Supported types: string, number, instruction, file, element, site, datetime. Non-supported types: table, signature. Make sure to pass the whole value.

Response

Returns [ID]

Arguments
NameDescription
issueCatalog - ID
type - String!
value - String!

Example

Query
query IssuesByTaskInputs(
  $issueCatalog: ID,
  $type: String!,
  $value: String!
) {
  issuesByTaskInputs(
    issueCatalog: $issueCatalog,
    type: $type,
    value: $value
  )
}
Variables
{
  "issueCatalog": "4",
  "type": "xyz789",
  "value": "xyz789"
}
Response
{"data": {"issuesByTaskInputs": ["4"]}}

issuesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query IssuesCount(
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  issuesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"issuesCount": 123}}

issuesWithTimesheets

Response

Returns [IssueInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueInstanceOrderByInput]
skip - IntDefault = 0
where - TimesheetWhereInput

Example

Query
query IssuesWithTimesheets(
  $limit: Int,
  $orderBy: [IssueInstanceOrderByInput],
  $skip: Int,
  $where: TimesheetWhereInput
) {
  issuesWithTimesheets(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "limit": 100,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "where": TimesheetWhereInput
}
Response
{
  "data": {
    "issuesWithTimesheets": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": [4],
        "allTaskScore": IssueTasksScore,
        "allowTracking": false,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": ["4"],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": 4,
        "chatRoom": ChatRoom,
        "chatRoomId": 4,
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 123,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "createdBySystem": false,
        "customArConfiguration": false,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 987,
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["abc123"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 123,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 123,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": ["4"],
        "finishedByConditionalInput": false,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "glarPrefix": "xyz789",
        "inputs": [Input],
        "isLocked": false,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lockedBy": Account,
        "lockedById": 4,
        "markers": [Marker],
        "materialLegendAndComments": true,
        "name": "abc123",
        "needsAcknowledge": false,
        "needsApproval": false,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": 4,
        "possibleActions": ["xyz789"],
        "protected": false,
        "remarksOnTasks": true,
        "requestDescription": false,
        "rootElement": Element,
        "rootElementId": "4",
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": false,
        "seenBy": [Account],
        "seenByIds": [4],
        "sequential": true,
        "site": Site,
        "siteId": "4",
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": false,
        "taskGroups": [TaskGroup],
        "timesheetCount": 123,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": ["4"],
        "toolLegendAndComments": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "usersNotBlocked": ["4"],
        "workPackage": JobDataWorkPackage,
        "workPackageId": "4"
      }
    ]
  }
}

issuesWithTimesheetsCount

Response

Returns [IssueInstance]

Arguments
NameDescription
where - TimesheetWhereInput

Example

Query
query IssuesWithTimesheetsCount($where: TimesheetWhereInput) {
  issuesWithTimesheetsCount(where: $where) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"where": TimesheetWhereInput}
Response
{
  "data": {
    "issuesWithTimesheetsCount": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": [4],
        "allTaskScore": IssueTasksScore,
        "allowTracking": false,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": 4,
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 123,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "createdBySystem": true,
        "customArConfiguration": true,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 987,
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["xyz789"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 987,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 987,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": [4],
        "finishedByConditionalInput": true,
        "frequency": IssueInstanceFrequency,
        "glarID": "xyz789",
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isLocked": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": 4,
        "markers": [Marker],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsAcknowledge": false,
        "needsApproval": false,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": "4",
        "parentSite": Site,
        "parentSiteId": "4",
        "possibleActions": ["abc123"],
        "protected": true,
        "remarksOnTasks": true,
        "requestDescription": false,
        "rootElement": Element,
        "rootElementId": "4",
        "rootSite": Site,
        "rootSiteId": 4,
        "scoreInputs": true,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "sequential": true,
        "site": Site,
        "siteId": "4",
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": false,
        "taskGroups": [TaskGroup],
        "timesheetCount": 987,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": ["4"],
        "toolLegendAndComments": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "usersNotBlocked": ["4"],
        "workPackage": JobDataWorkPackage,
        "workPackageId": 4
      }
    ]
  }
}

job

Response

Returns a CalendarJob

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
query Job(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  job(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...CalendarJobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"tenant": 4, "where": JobWhereUniqueInput}
Response
{
  "data": {
    "job": {
      "_id": "4",
      "data": CalendarJobData,
      "failReason": "xyz789",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

jobs

Response

Returns [Job]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [JobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query Jobs(
  $limit: Int,
  $orderBy: [JobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: JobWhereInput
) {
  jobs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "jobs": [
      {
        "_id": 4,
        "data": JobData,
        "failReason": "xyz789",
        "failed": false,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "abc123",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

jobsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query JobsCount(
  $tenant: ID,
  $where: JobWhereInput
) {
  jobsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"jobsCount": 123}}

label

Response

Returns a Label

Arguments
NameDescription
tenant - ID
where - LabelWhereUniqueInput!

Example

Query
query Label(
  $tenant: ID,
  $where: LabelWhereUniqueInput!
) {
  label(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": LabelWhereUniqueInput
}
Response
{
  "data": {
    "label": {
      "_id": 4,
      "context": "Account",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "icon": "xyz789",
      "labelValues": [LabelValue],
      "name": "abc123",
      "order": 123,
      "protected": true,
      "singleSelection": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

labelValue

Response

Returns a LabelValue

Arguments
NameDescription
tenant - ID
where - LabelValueWhereUniqueInput!

Example

Query
query LabelValue(
  $tenant: ID,
  $where: LabelValueWhereUniqueInput!
) {
  labelValue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{
  "tenant": "4",
  "where": LabelValueWhereUniqueInput
}
Response
{
  "data": {
    "labelValue": {
      "_id": 4,
      "backgroundColor": "xyz789",
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "label": Label,
      "labelId": 4,
      "order": 987,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "value": "abc123"
    }
  }
}

labelValues

Response

Returns [LabelValue]

Arguments
NameDescription
limit - Int
orderBy - [LabelValueOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - LabelValueWhereInputDefault = {}

Example

Query
query LabelValues(
  $limit: Int,
  $orderBy: [LabelValueOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: LabelValueWhereInput
) {
  labelValues(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{"limit": 123, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "labelValues": [
      {
        "_id": 4,
        "backgroundColor": "abc123",
        "color": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "label": Label,
        "labelId": "4",
        "order": 123,
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "value": "xyz789"
      }
    ]
  }
}

labelValuesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - LabelValueWhereInputDefault = {}

Example

Query
query LabelValuesCount(
  $tenant: ID,
  $where: LabelValueWhereInput
) {
  labelValuesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"labelValuesCount": 987}}

labelWithDeleted

Response

Returns a Label

Arguments
NameDescription
where - LabelWhereUniqueInput!

Example

Query
query LabelWithDeleted($where: LabelWhereUniqueInput!) {
  labelWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": LabelWhereUniqueInput}
Response
{
  "data": {
    "labelWithDeleted": {
      "_id": "4",
      "context": "Account",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "icon": "xyz789",
      "labelValues": [LabelValue],
      "name": "abc123",
      "order": 123,
      "protected": false,
      "singleSelection": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

labels

Response

Returns [Label]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [LabelOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - LabelWhereInputDefault = {}

Example

Query
query Labels(
  $limit: Int,
  $orderBy: [LabelOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: LabelWhereInput
) {
  labels(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "labels": [
      {
        "_id": "4",
        "context": "Account",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "icon": "abc123",
        "labelValues": [LabelValue],
        "name": "abc123",
        "order": 123,
        "protected": false,
        "singleSelection": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

labelsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - LabelWhereInputDefault = {}

Example

Query
query LabelsCount(
  $tenant: ID,
  $where: LabelWhereInput
) {
  labelsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"labelsCount": 987}}

lastSamlCallbackResponse

Response

Returns a JSON

Example

Query
query LastSamlCallbackResponse {
  lastSamlCallbackResponse
}
Response
{"data": {"lastSamlCallbackResponse": {}}}

linkedWithThisInputCount

Response

Returns an Int

Arguments
NameDescription
_id - ID!
taskId - ID!

Example

Query
query LinkedWithThisInputCount(
  $_id: ID!,
  $taskId: ID!
) {
  linkedWithThisInputCount(
    _id: $_id,
    taskId: $taskId
  )
}
Variables
{
  "_id": "4",
  "taskId": "4"
}
Response
{"data": {"linkedWithThisInputCount": 123}}

location

Response

Returns a Location

Arguments
NameDescription
tenant - ID
where - LocationWhereUniqueInput!

Example

Query
query Location(
  $tenant: ID,
  $where: LocationWhereUniqueInput!
) {
  location(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": LocationWhereUniqueInput}
Response
{
  "data": {
    "location": {
      "_id": 4,
      "address": LocationAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "protected": true,
      "storage": Storage,
      "storageId": 4,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

locationWithDeleted

Response

Returns a Location

Arguments
NameDescription
where - LocationWhereUniqueInput!

Example

Query
query LocationWithDeleted($where: LocationWhereUniqueInput!) {
  locationWithDeleted(where: $where) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": LocationWhereUniqueInput}
Response
{
  "data": {
    "locationWithDeleted": {
      "_id": "4",
      "address": LocationAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "protected": true,
      "storage": Storage,
      "storageId": "4",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

locations

Response

Returns [Location]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [LocationOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - LocationWhereInputDefault = {}

Example

Query
query Locations(
  $limit: Int,
  $orderBy: [LocationOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: LocationWhereInput
) {
  locations(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "locations": [
      {
        "_id": 4,
        "address": LocationAddress,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "protected": false,
        "storage": Storage,
        "storageId": "4",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

locationsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - LocationWhereInputDefault = {}

Example

Query
query LocationsCount(
  $tenant: ID,
  $where: LocationWhereInput
) {
  locationsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"locationsCount": 123}}

marker

Response

Returns a Marker

Arguments
NameDescription
tenant - ID
where - MarkerWhereUniqueInput!

Example

Query
query Marker(
  $tenant: ID,
  $where: MarkerWhereUniqueInput!
) {
  marker(
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": MarkerWhereUniqueInput
}
Response
{
  "data": {
    "marker": {
      "_id": "4",
      "anchorId": "abc123",
      "anchorImage": AnchorImage,
      "anchorImageId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "position": [987.65],
      "protected": true,
      "rotation": [123.45],
      "scale": [123.45],
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

markerWithDeleted

Response

Returns a Marker

Arguments
NameDescription
where - MarkerWhereUniqueInput!

Example

Query
query MarkerWithDeleted($where: MarkerWhereUniqueInput!) {
  markerWithDeleted(where: $where) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": MarkerWhereUniqueInput}
Response
{
  "data": {
    "markerWithDeleted": {
      "_id": 4,
      "anchorId": "xyz789",
      "anchorImage": AnchorImage,
      "anchorImageId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "position": [987.65],
      "protected": true,
      "rotation": [123.45],
      "scale": [123.45],
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

markers

Response

Returns [Marker]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [MarkerOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - MarkerWhereInputDefault = {}

Example

Query
query Markers(
  $limit: Int,
  $orderBy: [MarkerOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: MarkerWhereInput
) {
  markers(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "markers": [
      {
        "_id": "4",
        "anchorId": "abc123",
        "anchorImage": AnchorImage,
        "anchorImageId": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "element": Element,
        "position": [123.45],
        "protected": true,
        "rotation": [123.45],
        "scale": [987.65],
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

markersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - MarkerWhereInputDefault = {}

Example

Query
query MarkersCount(
  $tenant: ID,
  $where: MarkerWhereInput
) {
  markersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"markersCount": 123}}

material

Response

Returns a Material

Arguments
NameDescription
tenant - ID
where - MaterialWhereUniqueInput!

Example

Query
query Material(
  $tenant: ID,
  $where: MaterialWhereUniqueInput!
) {
  material(
    tenant: $tenant,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": MaterialWhereUniqueInput
}
Response
{
  "data": {
    "material": {
      "_id": 4,
      "brand": "xyz789",
      "brandModel": "abc123",
      "code": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dimension": MaterialDimension,
      "images": [File],
      "imagesIds": [4],
      "iva": 123.45,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "price": 987.65,
      "protected": true,
      "quantity": 123.45,
      "sellingPrice": 123.45,
      "stockPerStorage": [MaterialStockPerStorage],
      "system": true,
      "totalStock": 123,
      "type": "SERIALIZED",
      "unit": Unit,
      "unitId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

materialItem

Response

Returns a MaterialItem

Arguments
NameDescription
tenant - ID
where - MaterialItemWhereUniqueInput!

Example

Query
query MaterialItem(
  $tenant: ID,
  $where: MaterialItemWhereUniqueInput!
) {
  materialItem(
    tenant: $tenant,
    where: $where
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": MaterialItemWhereUniqueInput}
Response
{
  "data": {
    "materialItem": {
      "_id": 4,
      "buyOrder": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "customFields": [MaterialItemCustomField],
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "expirationDate": "2007-12-03T10:15:30Z",
      "expirationDateType": "abc123",
      "hiddenFields": ["abc123"],
      "location": Location,
      "locationId": 4,
      "material": Material,
      "materialId": "4",
      "protected": true,
      "quantity": 987.65,
      "serialNumber": "xyz789",
      "state": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

materialItemWithDeleted

Response

Returns a MaterialItem

Arguments
NameDescription
where - MaterialItemWhereUniqueInput!

Example

Query
query MaterialItemWithDeleted($where: MaterialItemWhereUniqueInput!) {
  materialItemWithDeleted(where: $where) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": MaterialItemWhereUniqueInput}
Response
{
  "data": {
    "materialItemWithDeleted": {
      "_id": "4",
      "buyOrder": "xyz789",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "customFields": [MaterialItemCustomField],
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "expirationDate": "2007-12-03T10:15:30Z",
      "expirationDateType": "abc123",
      "hiddenFields": ["xyz789"],
      "location": Location,
      "locationId": "4",
      "material": Material,
      "materialId": "4",
      "protected": false,
      "quantity": 123.45,
      "serialNumber": "xyz789",
      "state": "abc123",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

materialItems

Response

Returns [MaterialItem]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [MaterialItemOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - MaterialItemWhereInputDefault = {}

Example

Query
query MaterialItems(
  $limit: Int,
  $orderBy: [MaterialItemOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: MaterialItemWhereInput
) {
  materialItems(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "materialItems": [
      {
        "_id": "4",
        "buyOrder": "abc123",
        "code": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "customFields": [MaterialItemCustomField],
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "expirationDate": "2007-12-03T10:15:30Z",
        "expirationDateType": "abc123",
        "hiddenFields": ["xyz789"],
        "location": Location,
        "locationId": "4",
        "material": Material,
        "materialId": "4",
        "protected": true,
        "quantity": 987.65,
        "serialNumber": "abc123",
        "state": "xyz789",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

materialItemsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - MaterialItemWhereInputDefault = {}

Example

Query
query MaterialItemsCount(
  $tenant: ID,
  $where: MaterialItemWhereInput
) {
  materialItemsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"materialItemsCount": 987}}

materialUsage

Response

Returns [MaterialUsage]

Arguments
NameDescription
filters - MaterialUsageFilters
limit - IntDefault = 100
material - ID!
orderBy - [MaterialUsageOrderByEnum]
skip - IntDefault = 0

Example

Query
query MaterialUsage(
  $filters: MaterialUsageFilters,
  $limit: Int,
  $material: ID!,
  $orderBy: [MaterialUsageOrderByEnum],
  $skip: Int
) {
  materialUsage(
    filters: $filters,
    limit: $limit,
    material: $material,
    orderBy: $orderBy,
    skip: $skip
  ) {
    ID
    group
    quantity
    task
    taskVariant
    template
    templateVariant
  }
}
Variables
{
  "filters": MaterialUsageFilters,
  "limit": 100,
  "material": 4,
  "orderBy": ["ID_ASC"],
  "skip": 0
}
Response
{
  "data": {
    "materialUsage": [
      {
        "ID": "abc123",
        "group": "abc123",
        "quantity": 987,
        "task": "xyz789",
        "taskVariant": "xyz789",
        "template": "xyz789",
        "templateVariant": "xyz789"
      }
    ]
  }
}

materialWithDeleted

Response

Returns a Material

Arguments
NameDescription
where - MaterialWhereUniqueInput!

Example

Query
query MaterialWithDeleted($where: MaterialWhereUniqueInput!) {
  materialWithDeleted(where: $where) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": MaterialWhereUniqueInput}
Response
{
  "data": {
    "materialWithDeleted": {
      "_id": 4,
      "brand": "xyz789",
      "brandModel": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dimension": MaterialDimension,
      "images": [File],
      "imagesIds": [4],
      "iva": 987.65,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "price": 123.45,
      "protected": false,
      "quantity": 123.45,
      "sellingPrice": 123.45,
      "stockPerStorage": [MaterialStockPerStorage],
      "system": false,
      "totalStock": 123,
      "type": "SERIALIZED",
      "unit": Unit,
      "unitId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

materials

Response

Returns [Material]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [MaterialOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - MaterialWhereInputDefault = {}

Example

Query
query Materials(
  $limit: Int,
  $orderBy: [MaterialOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: MaterialWhereInput
) {
  materials(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "materials": [
      {
        "_id": 4,
        "brand": "xyz789",
        "brandModel": "abc123",
        "code": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "dimension": MaterialDimension,
        "images": [File],
        "imagesIds": ["4"],
        "iva": 987.65,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "xyz789",
        "price": 123.45,
        "protected": false,
        "quantity": 987.65,
        "sellingPrice": 987.65,
        "stockPerStorage": [MaterialStockPerStorage],
        "system": false,
        "totalStock": 987,
        "type": "SERIALIZED",
        "unit": Unit,
        "unitId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

materialsByStorage

Response

Returns [Material]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [MaterialOrderByInput]Default = []
skip - IntDefault = 0
storage - ID
where - MaterialWhereInputDefault = {}

Example

Query
query MaterialsByStorage(
  $limit: Int,
  $orderBy: [MaterialOrderByInput],
  $skip: Int,
  $storage: ID,
  $where: MaterialWhereInput
) {
  materialsByStorage(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    storage: $storage,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "storage": "4",
  "where": {}
}
Response
{
  "data": {
    "materialsByStorage": [
      {
        "_id": 4,
        "brand": "abc123",
        "brandModel": "abc123",
        "code": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "dimension": MaterialDimension,
        "images": [File],
        "imagesIds": ["4"],
        "iva": 987.65,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "price": 123.45,
        "protected": false,
        "quantity": 123.45,
        "sellingPrice": 123.45,
        "stockPerStorage": [MaterialStockPerStorage],
        "system": false,
        "totalStock": 123,
        "type": "SERIALIZED",
        "unit": Unit,
        "unitId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

materialsByStorageCount

Response

Returns an Int

Arguments
NameDescription
storage - ID
where - MaterialWhereInputDefault = {}

Example

Query
query MaterialsByStorageCount(
  $storage: ID,
  $where: MaterialWhereInput
) {
  materialsByStorageCount(
    storage: $storage,
    where: $where
  )
}
Variables
{"storage": "4", "where": {}}
Response
{"data": {"materialsByStorageCount": 123}}

materialsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - MaterialWhereInputDefault = {}

Example

Query
query MaterialsCount(
  $tenant: ID,
  $where: MaterialWhereInput
) {
  materialsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"materialsCount": 987}}

materialsSearch

Response

Returns [Material]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [MaterialOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - MaterialWhereInputDefault = {}

Example

Query
query MaterialsSearch(
  $limit: Int,
  $orderBy: [MaterialOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: MaterialWhereInput
) {
  materialsSearch(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "materialsSearch": [
      {
        "_id": "4",
        "brand": "xyz789",
        "brandModel": "abc123",
        "code": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "dimension": MaterialDimension,
        "images": [File],
        "imagesIds": ["4"],
        "iva": 987.65,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "xyz789",
        "price": 987.65,
        "protected": true,
        "quantity": 987.65,
        "sellingPrice": 987.65,
        "stockPerStorage": [MaterialStockPerStorage],
        "system": false,
        "totalStock": 123,
        "type": "SERIALIZED",
        "unit": Unit,
        "unitId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

me

Response

Returns an Account

Example

Query
query Me {
  me {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Response
{
  "data": {
    "me": {
      "ARUser": true,
      "_id": 4,
      "actions": 987,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "xyz789"
    }
  }
}

modelInstance

Response

Returns a ModelInstance

Arguments
NameDescription
tenant - ID
where - ModelInstanceWhereUniqueInput!

Example

Query
query ModelInstance(
  $tenant: ID,
  $where: ModelInstanceWhereUniqueInput!
) {
  modelInstance(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ModelInstanceWhereUniqueInput
}
Response
{
  "data": {
    "modelInstance": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "model": File,
      "modelId": "4",
      "position": [987.65],
      "protected": true,
      "rotation": [987.65],
      "scale": [987.65],
      "spatialAnchorId": "xyz789",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

modelInstanceWithDeleted

Response

Returns a ModelInstance

Arguments
NameDescription
where - ModelInstanceWhereUniqueInput!

Example

Query
query ModelInstanceWithDeleted($where: ModelInstanceWhereUniqueInput!) {
  modelInstanceWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ModelInstanceWhereUniqueInput}
Response
{
  "data": {
    "modelInstanceWithDeleted": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "model": File,
      "modelId": "4",
      "position": [987.65],
      "protected": false,
      "rotation": [987.65],
      "scale": [987.65],
      "spatialAnchorId": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

modelInstances

Response

Returns [ModelInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ModelInstanceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ModelInstanceWhereInputDefault = {}

Example

Query
query ModelInstances(
  $limit: Int,
  $orderBy: [ModelInstanceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ModelInstanceWhereInput
) {
  modelInstances(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "modelInstances": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "model": File,
        "modelId": "4",
        "position": [123.45],
        "protected": false,
        "rotation": [987.65],
        "scale": [123.45],
        "spatialAnchorId": "abc123",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

modelInstancesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ModelInstanceWhereInputDefault = {}

Example

Query
query ModelInstancesCount(
  $tenant: ID,
  $where: ModelInstanceWhereInput
) {
  modelInstancesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"modelInstancesCount": 987}}

mqttAuthorizationDevices

Response

Returns [DeviceMqttConfig]

Example

Query
query MqttAuthorizationDevices {
  mqttAuthorizationDevices {
    clientId
    id
    name
    password
    topic
    username
  }
}
Response
{
  "data": {
    "mqttAuthorizationDevices": [
      {
        "clientId": "xyz789",
        "id": "xyz789",
        "name": "xyz789",
        "password": "xyz789",
        "topic": "xyz789",
        "username": "abc123"
      }
    ]
  }
}

myCalendar

This method will be replaced 'myCalendarJobs'
Response

Returns [CalendarJob]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [JobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - JobWhereInput

Example

Query
query MyCalendar(
  $limit: Int,
  $orderBy: [JobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: JobWhereInput
) {
  myCalendar(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...CalendarJobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": 4,
  "where": JobWhereInput
}
Response
{
  "data": {
    "myCalendar": [
      {
        "_id": "4",
        "data": CalendarJobData,
        "failReason": "xyz789",
        "failed": true,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

myCalendarJobs

Response

Returns [Job]

Arguments
NameDescription
limit - Int
orderBy - [JobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query MyCalendarJobs(
  $limit: Int,
  $orderBy: [JobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: JobWhereInput
) {
  myCalendarJobs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"limit": 123, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "myCalendarJobs": [
      {
        "_id": 4,
        "data": JobData,
        "failReason": "xyz789",
        "failed": false,
        "lastRunAt": "2007-12-03T10:15:30Z",
        "name": "xyz789",
        "nextRunAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

myCalendarJobsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - JobWhereInputDefault = {}

Example

Query
query MyCalendarJobsCount(
  $tenant: ID,
  $where: JobWhereInput
) {
  myCalendarJobsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"myCalendarJobsCount": 123}}

myIssueInstances

This method will be replaced by 'myIssues'
Response

Returns [IssueInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueInstanceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query MyIssueInstances(
  $limit: Int,
  $orderBy: [IssueInstanceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  myIssueInstances(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "myIssueInstances": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": ["4"],
        "allTaskScore": IssueTasksScore,
        "allowTracking": true,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": "4",
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 123,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "createdBySystem": false,
        "customArConfiguration": true,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 123,
        "element": Element,
        "elementId": "4",
        "emailsToSendReport": ["xyz789"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 123,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 123,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": ["4"],
        "finishedByConditionalInput": true,
        "frequency": IssueInstanceFrequency,
        "glarID": "xyz789",
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isLocked": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": 4,
        "markers": [Marker],
        "materialLegendAndComments": true,
        "name": "xyz789",
        "needsAcknowledge": true,
        "needsApproval": false,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": "4",
        "possibleActions": ["abc123"],
        "protected": true,
        "remarksOnTasks": false,
        "requestDescription": true,
        "rootElement": Element,
        "rootElementId": "4",
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": false,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "sequential": true,
        "site": Site,
        "siteId": 4,
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": false,
        "taskGroups": [TaskGroup],
        "timesheetCount": 987,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": [4],
        "toolLegendAndComments": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usersNotBlocked": [4],
        "workPackage": JobDataWorkPackage,
        "workPackageId": "4"
      }
    ]
  }
}

myIssueInstancesCount

This method will be replaced by 'myIssuesCount'
Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query MyIssueInstancesCount(
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  myIssueInstancesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"myIssueInstancesCount": 987}}

myIssues

Response

Returns [IssueInstance]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueInstanceOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query MyIssues(
  $limit: Int,
  $orderBy: [IssueInstanceOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  myIssues(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "myIssues": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": [4],
        "allTaskScore": IssueTasksScore,
        "allowTracking": true,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": 4,
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 123,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "createdBySystem": true,
        "customArConfiguration": true,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 987,
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["abc123"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 987,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 987,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": [4],
        "finishedByConditionalInput": true,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "glarPrefix": "xyz789",
        "inputs": [Input],
        "isLocked": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": "4",
        "markers": [Marker],
        "materialLegendAndComments": true,
        "name": "xyz789",
        "needsAcknowledge": true,
        "needsApproval": false,
        "note": "xyz789",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": 4,
        "possibleActions": ["abc123"],
        "protected": true,
        "remarksOnTasks": false,
        "requestDescription": false,
        "rootElement": Element,
        "rootElementId": "4",
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": false,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "sequential": true,
        "site": Site,
        "siteId": 4,
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": false,
        "taskGroups": [TaskGroup],
        "timesheetCount": 987,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": ["4"],
        "toolLegendAndComments": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "usersNotBlocked": ["4"],
        "workPackage": JobDataWorkPackage,
        "workPackageId": 4
      }
    ]
  }
}

myIssuesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereInputDefault = {}

Example

Query
query MyIssuesCount(
  $tenant: ID,
  $where: IssueInstanceWhereInput
) {
  myIssuesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"myIssuesCount": 123}}

myPushNotifications

Response

Returns [PushNotification]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [PushNotificationOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - PushNotificationWhereInputDefault = {}

Example

Query
query MyPushNotifications(
  $limit: Int,
  $orderBy: [PushNotificationOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: PushNotificationWhereInput
) {
  myPushNotifications(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "myPushNotifications": [
      {
        "_id": 4,
        "acknowledged": true,
        "body": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "data": PushNotificationDatum,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": ["4"],
        "protected": true,
        "system": false,
        "title": "abc123",
        "to": Account,
        "toId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "viewed": true
      }
    ]
  }
}

myPushNotificationsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - PushNotificationWhereInputDefault = {}

Example

Query
query MyPushNotificationsCount(
  $tenant: ID,
  $where: PushNotificationWhereInput
) {
  myPushNotificationsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"myPushNotificationsCount": 987}}

myPushNotificationsCounts

Response

Returns a PushNotificationsCounts

Example

Query
query MyPushNotificationsCounts {
  myPushNotificationsCounts {
    notAcknowledgedCount
    notViewedCount
  }
}
Response
{
  "data": {
    "myPushNotificationsCounts": {
      "notAcknowledgedCount": 987,
      "notViewedCount": 987
    }
  }
}

nfcTag

Response

Returns a NfcTag

Arguments
NameDescription
tenant - ID
where - NfcTagWhereUniqueInput!

Example

Query
query NfcTag(
  $tenant: ID,
  $where: NfcTagWhereUniqueInput!
) {
  nfcTag(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": NfcTagWhereUniqueInput}
Response
{
  "data": {
    "nfcTag": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "linkedTo": NfcTagLinkedTo,
      "protected": true,
      "system": true,
      "uid": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

nfcTagWithDeleted

Response

Returns a NfcTag

Arguments
NameDescription
where - NfcTagWhereUniqueInput!

Example

Query
query NfcTagWithDeleted($where: NfcTagWhereUniqueInput!) {
  nfcTagWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": NfcTagWhereUniqueInput}
Response
{
  "data": {
    "nfcTagWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "linkedTo": NfcTagLinkedTo,
      "protected": false,
      "system": true,
      "uid": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

nfcTags

Response

Returns [NfcTag]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [NfcTagOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - NfcTagWhereInputDefault = {}

Example

Query
query NfcTags(
  $limit: Int,
  $orderBy: [NfcTagOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: NfcTagWhereInput
) {
  nfcTags(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "nfcTags": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "linkedTo": NfcTagLinkedTo,
        "protected": false,
        "system": true,
        "uid": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

nfcTagsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - NfcTagWhereInputDefault = {}

Example

Query
query NfcTagsCount(
  $tenant: ID,
  $where: NfcTagWhereInput
) {
  nfcTagsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"nfcTagsCount": 123}}

pdfJob

Response

Returns a PdfJob

Arguments
NameDescription
tenant - ID
where - PdfJobWhereUniqueInput!

Example

Query
query PdfJob(
  $tenant: ID,
  $where: PdfJobWhereUniqueInput!
) {
  pdfJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{"tenant": 4, "where": PdfJobWhereUniqueInput}
Response
{
  "data": {
    "pdfJob": {
      "_id": "4",
      "contentId": 4,
      "contentType": "issue",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "error": "xyz789",
      "pdfType": "detailed",
      "protected": false,
      "status": "failed",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "url": "abc123",
      "validUntil": 123
    }
  }
}

pdfJobWithDeleted

Response

Returns a PdfJob

Arguments
NameDescription
where - PdfJobWhereUniqueInput!

Example

Query
query PdfJobWithDeleted($where: PdfJobWhereUniqueInput!) {
  pdfJobWithDeleted(where: $where) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{"where": PdfJobWhereUniqueInput}
Response
{
  "data": {
    "pdfJobWithDeleted": {
      "_id": "4",
      "contentId": 4,
      "contentType": "issue",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "error": "abc123",
      "pdfType": "detailed",
      "protected": false,
      "status": "failed",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "url": "abc123",
      "validUntil": 987
    }
  }
}

pdfJobs

Response

Returns [PdfJob]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [PdfJobOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - PdfJobWhereInputDefault = {}

Example

Query
query PdfJobs(
  $limit: Int,
  $orderBy: [PdfJobOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: PdfJobWhereInput
) {
  pdfJobs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "pdfJobs": [
      {
        "_id": 4,
        "contentId": 4,
        "contentType": "issue",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "error": "xyz789",
        "pdfType": "detailed",
        "protected": true,
        "status": "failed",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "url": "abc123",
        "validUntil": 987
      }
    ]
  }
}

pdfJobsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - PdfJobWhereInputDefault = {}

Example

Query
query PdfJobsCount(
  $tenant: ID,
  $where: PdfJobWhereInput
) {
  pdfJobsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"pdfJobsCount": 123}}

permissionBundles

Response

Returns [PermissionBundle]

Example

Query
query PermissionBundles {
  permissionBundles {
    groups {
      ...PermissionBundleGroupFragment
    }
    name
  }
}
Response
{
  "data": {
    "permissionBundles": [
      {
        "groups": [PermissionBundleGroup],
        "name": "abc123"
      }
    ]
  }
}

post

Response

Returns a Post

Arguments
NameDescription
tenant - ID
where - PostWhereUniqueInput!

Example

Query
query Post(
  $tenant: ID,
  $where: PostWhereUniqueInput!
) {
  post(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": PostWhereUniqueInput
}
Response
{
  "data": {
    "post": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 123,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

postWithDeleted

Response

Returns a Post

Arguments
NameDescription
where - PostWhereUniqueInput!

Example

Query
query PostWithDeleted($where: PostWhereUniqueInput!) {
  postWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": PostWhereUniqueInput}
Response
{
  "data": {
    "postWithDeleted": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": ["4"],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "xyz789",
      "totalComments": 987,
      "totalRootComments": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

posts

Response

Returns [Post]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [PostOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - PostWhereInputDefault = {}

Example

Query
query Posts(
  $limit: Int,
  $orderBy: [PostOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: PostWhereInput
) {
  posts(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "posts": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "editedAt": "2007-12-03T10:15:30Z",
        "files": [File],
        "filesIds": [4],
        "hasSeen": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "likes": [Account],
        "likesIds": [4],
        "mentions": [PostMention],
        "seenBy": [Account],
        "subject": "abc123",
        "totalComments": 123,
        "totalRootComments": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

postsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - PostWhereInputDefault = {}

Example

Query
query PostsCount(
  $tenant: ID,
  $where: PostWhereInput
) {
  postsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"postsCount": 123}}

previewWidgetData

Response

Returns a PreviewWidgetData

Arguments
NameDescription
data - WidgetPreviewInput!

Example

Query
query PreviewWidgetData($data: WidgetPreviewInput!) {
  previewWidgetData(data: $data) {
    data
  }
}
Variables
{"data": WidgetPreviewInput}
Response
{"data": {"previewWidgetData": {"data": {}}}}

profile

Response

Returns a Profile

Arguments
NameDescription
tenant - ID
where - ProfileWhereUniqueInput!

Example

Query
query Profile(
  $tenant: ID,
  $where: ProfileWhereUniqueInput!
) {
  profile(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ProfileWhereUniqueInput
}
Response
{
  "data": {
    "profile": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "elementsCount": 123,
      "folder": ProfileFolder,
      "folderId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "abc123",
      "parent": Profile,
      "parentId": 4,
      "parentsTree": [Profile],
      "parentsTreeIds": [4],
      "profilesCount": 987,
      "protected": true,
      "system": false,
      "template": ProfileTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

profileFolder

Response

Returns a ProfileFolder

Arguments
NameDescription
tenant - ID
where - ProfileFolderWhereUniqueInput!

Example

Query
query ProfileFolder(
  $tenant: ID,
  $where: ProfileFolderWhereUniqueInput!
) {
  profileFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ProfileFolderWhereUniqueInput
}
Response
{
  "data": {
    "profileFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": ProfileFolder,
      "parentId": "4",
      "parentsTree": [ProfileFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": ["4"],
      "profileFoldersCount": 123,
      "profilesCount": 987,
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

profileFolderWithDeleted

Response

Returns a ProfileFolder

Arguments
NameDescription
where - ProfileFolderWhereUniqueInput!

Example

Query
query ProfileFolderWithDeleted($where: ProfileFolderWhereUniqueInput!) {
  profileFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ProfileFolderWhereUniqueInput}
Response
{
  "data": {
    "profileFolderWithDeleted": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": ProfileFolder,
      "parentId": "4",
      "parentsTree": [ProfileFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "profileFoldersCount": 123,
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

profileFolders

Response

Returns [ProfileFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ProfileFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ProfileFolderWhereInputDefault = {}

Example

Query
query ProfileFolders(
  $limit: Int,
  $orderBy: [ProfileFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ProfileFolderWhereInput
) {
  profileFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "profileFolders": [
      {
        "_id": 4,
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "xyz789",
        "parent": ProfileFolder,
        "parentId": 4,
        "parentsTree": [ProfileFolder],
        "parentsTreeCount": 123,
        "parentsTreeIds": ["4"],
        "profileFoldersCount": 987,
        "profilesCount": 987,
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

profileFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ProfileFolderWhereInputDefault = {}

Example

Query
query ProfileFoldersCount(
  $tenant: ID,
  $where: ProfileFolderWhereInput
) {
  profileFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"profileFoldersCount": 123}}

profileTemplate

Response

Returns a ProfileTemplate

Arguments
NameDescription
tenant - ID
where - ProfileTemplateWhereUniqueInput!

Example

Query
query ProfileTemplate(
  $tenant: ID,
  $where: ProfileTemplateWhereUniqueInput!
) {
  profileTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ProfileTemplateWhereUniqueInput
}
Response
{
  "data": {
    "profileTemplate": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": ProfileTemplateFolder,
      "folderId": 4,
      "frame": ProfileTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

profileTemplateFolder

Response

Returns a ProfileTemplateFolder

Arguments
NameDescription
tenant - ID
where - ProfileTemplateFolderWhereUniqueInput!

Example

Query
query ProfileTemplateFolder(
  $tenant: ID,
  $where: ProfileTemplateFolderWhereUniqueInput!
) {
  profileTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": ProfileTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "profileTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": ProfileTemplateFolder,
      "parentId": "4",
      "parentsTree": [ProfileTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "profileTemplateFoldersCount": 987,
      "profileTemplatesCount": 987,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

profileTemplateFolderWithDeleted

Response

Returns a ProfileTemplateFolder

Arguments
NameDescription
where - ProfileTemplateFolderWhereUniqueInput!

Example

Query
query ProfileTemplateFolderWithDeleted($where: ProfileTemplateFolderWhereUniqueInput!) {
  profileTemplateFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ProfileTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "profileTemplateFolderWithDeleted": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": ProfileTemplateFolder,
      "parentId": 4,
      "parentsTree": [ProfileTemplateFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": [4],
      "profileTemplateFoldersCount": 123,
      "profileTemplatesCount": 987,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

profileTemplateFolders

Response

Returns [ProfileTemplateFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ProfileTemplateFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ProfileTemplateFolderWhereInputDefault = {}

Example

Query
query ProfileTemplateFolders(
  $limit: Int,
  $orderBy: [ProfileTemplateFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ProfileTemplateFolderWhereInput
) {
  profileTemplateFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "profileTemplateFolders": [
      {
        "_id": "4",
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "abc123",
        "parent": ProfileTemplateFolder,
        "parentId": "4",
        "parentsTree": [ProfileTemplateFolder],
        "parentsTreeCount": 987,
        "parentsTreeIds": [4],
        "profileTemplateFoldersCount": 987,
        "profileTemplatesCount": 987,
        "protected": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

profileTemplateFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ProfileTemplateFolderWhereInputDefault = {}

Example

Query
query ProfileTemplateFoldersCount(
  $tenant: ID,
  $where: ProfileTemplateFolderWhereInput
) {
  profileTemplateFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"profileTemplateFoldersCount": 123}}

profileTemplateWithDeleted

Response

Returns a ProfileTemplate

Arguments
NameDescription
where - ProfileTemplateWhereUniqueInput!

Example

Query
query ProfileTemplateWithDeleted($where: ProfileTemplateWhereUniqueInput!) {
  profileTemplateWithDeleted(where: $where) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ProfileTemplateWhereUniqueInput}
Response
{
  "data": {
    "profileTemplateWithDeleted": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": ProfileTemplateFolder,
      "folderId": 4,
      "frame": ProfileTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

profileTemplates

Response

Returns [ProfileTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ProfileTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ProfileTemplateWhereInputDefault = {}

Example

Query
query ProfileTemplates(
  $limit: Int,
  $orderBy: [ProfileTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ProfileTemplateWhereInput
) {
  profileTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "profileTemplates": [
      {
        "_id": 4,
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "folder": ProfileTemplateFolder,
        "folderId": "4",
        "frame": ProfileTemplateFrame,
        "icon": "xyz789",
        "protected": false,
        "system": true,
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

profileTemplatesAndFolders

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [ProfileTemplateFolderOrderByInput!]!
templateFolderWhere - ProfileTemplateFolderWhereInput
templateOrderBy - [ProfileTemplateOrderByInput!]!
templateWhere - ProfileTemplateWhereInput
tenant - ID

Example

Query
query ProfileTemplatesAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [ProfileTemplateFolderOrderByInput!]!,
  $templateFolderWhere: ProfileTemplateFolderWhereInput,
  $templateOrderBy: [ProfileTemplateOrderByInput!]!,
  $templateWhere: ProfileTemplateWhereInput,
  $tenant: ID
) {
  profileTemplatesAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on ProfileTemplate {
      ...ProfileTemplateFragment
    }
    ... on ProfileTemplateFolder {
      ...ProfileTemplateFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": ProfileTemplateFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": ProfileTemplateWhereInput,
  "tenant": "4"
}
Response
{
  "data": {
    "profileTemplatesAndFolders": [ProfileTemplate]
  }
}

profileTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ProfileTemplateWhereInputDefault = {}

Example

Query
query ProfileTemplatesCount(
  $tenant: ID,
  $where: ProfileTemplateWhereInput
) {
  profileTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"profileTemplatesCount": 123}}

profileWithDeleted

Response

Returns a Profile

Arguments
NameDescription
tenant - ID
where - ProfileWhereUniqueInput!

Example

Query
query ProfileWithDeleted(
  $tenant: ID,
  $where: ProfileWhereUniqueInput!
) {
  profileWithDeleted(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ProfileWhereUniqueInput}
Response
{
  "data": {
    "profileWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "elementsCount": 987,
      "folder": ProfileFolder,
      "folderId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "parent": Profile,
      "parentId": "4",
      "parentsTree": [Profile],
      "parentsTreeIds": [4],
      "profilesCount": 987,
      "protected": true,
      "system": false,
      "template": ProfileTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

profiles

Response

Returns [Profile]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ProfileOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ProfileWhereInputDefault = {}

Example

Query
query Profiles(
  $limit: Int,
  $orderBy: [ProfileOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ProfileWhereInput
) {
  profiles(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "profiles": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "elementsCount": 987,
        "folder": ProfileFolder,
        "folderId": "4",
        "inputs": [Input],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "parent": Profile,
        "parentId": "4",
        "parentsTree": [Profile],
        "parentsTreeIds": ["4"],
        "profilesCount": 123,
        "protected": false,
        "system": false,
        "template": ProfileTemplate,
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

profilesAndFolders

Response

Returns [ProfileOrFolder]

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [ProfileFolderOrderByInput!]!
templateFolderWhere - ProfileFolderWhereInput
templateOrderBy - [ProfileOrderByInput!]!
templateWhere - ProfileWhereInput
tenant - ID

Example

Query
query ProfilesAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [ProfileFolderOrderByInput!]!,
  $templateFolderWhere: ProfileFolderWhereInput,
  $templateOrderBy: [ProfileOrderByInput!]!,
  $templateWhere: ProfileWhereInput,
  $tenant: ID
) {
  profilesAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on Profile {
      ...ProfileFragment
    }
    ... on ProfileFolder {
      ...ProfileFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": ProfileFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": ProfileWhereInput,
  "tenant": 4
}
Response
{"data": {"profilesAndFolders": [Profile]}}

profilesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ProfileWhereInputDefault = {}

Example

Query
query ProfilesCount(
  $tenant: ID,
  $where: ProfileWhereInput
) {
  profilesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"profilesCount": 987}}

profilesV2

use the regular findMany query
Response

Returns [LeanProfile]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ProfileOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ProfileWhereInputDefault = {}

Example

Query
query ProfilesV2(
  $limit: Int,
  $orderBy: [ProfileOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ProfileWhereInput
) {
  profilesV2(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdById
    deleted
    deletedAt
    deletedById
    description
    elementsCount
    folderId
    labelValuesIds
    name
    parentId
    parentsTreeIds
    protected
    system
    templateId
    updatedAt
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "profilesV2": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedById": 4,
        "description": "abc123",
        "elementsCount": 987,
        "folderId": "4",
        "labelValuesIds": [4],
        "name": "xyz789",
        "parentId": "4",
        "parentsTreeIds": [4],
        "protected": true,
        "system": false,
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedById": "4"
      }
    ]
  }
}

pushNotification

Response

Returns a PushNotification

Arguments
NameDescription
tenant - ID
where - PushNotificationWhereUniqueInput!

Example

Query
query PushNotification(
  $tenant: ID,
  $where: PushNotificationWhereUniqueInput!
) {
  pushNotification(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"tenant": 4, "where": PushNotificationWhereUniqueInput}
Response
{
  "data": {
    "pushNotification": {
      "_id": "4",
      "acknowledged": false,
      "body": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "data": PushNotificationDatum,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": ["4"],
      "protected": true,
      "system": true,
      "title": "xyz789",
      "to": Account,
      "toId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "viewed": true
    }
  }
}

pushNotificationWithDeleted

Response

Returns a PushNotification

Arguments
NameDescription
where - PushNotificationWhereUniqueInput!

Example

Query
query PushNotificationWithDeleted($where: PushNotificationWhereUniqueInput!) {
  pushNotificationWithDeleted(where: $where) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"where": PushNotificationWhereUniqueInput}
Response
{
  "data": {
    "pushNotificationWithDeleted": {
      "_id": "4",
      "acknowledged": false,
      "body": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "data": PushNotificationDatum,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": ["4"],
      "protected": true,
      "system": false,
      "title": "abc123",
      "to": Account,
      "toId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "viewed": false
    }
  }
}

pushNotifications

Response

Returns [PushNotification]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [PushNotificationOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - PushNotificationWhereInputDefault = {}

Example

Query
query PushNotifications(
  $limit: Int,
  $orderBy: [PushNotificationOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: PushNotificationWhereInput
) {
  pushNotifications(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "pushNotifications": [
      {
        "_id": 4,
        "acknowledged": false,
        "body": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "data": PushNotificationDatum,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "files": [File],
        "filesIds": [4],
        "protected": true,
        "system": false,
        "title": "xyz789",
        "to": Account,
        "toId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "viewed": false
      }
    ]
  }
}

pushNotificationsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - PushNotificationWhereInputDefault = {}

Example

Query
query PushNotificationsCount(
  $tenant: ID,
  $where: PushNotificationWhereInput
) {
  pushNotificationsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"pushNotificationsCount": 987}}

request

Response

Returns a Request

Arguments
NameDescription
tenant - ID
where - RequestWhereUniqueInput!

Example

Query
query Request(
  $tenant: ID,
  $where: RequestWhereUniqueInput!
) {
  request(
    tenant: $tenant,
    where: $where
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": RequestWhereUniqueInput}
Response
{
  "data": {
    "request": {
      "_id": "4",
      "approved": [Account],
      "approvedIds": [4],
      "approvers": [Account],
      "approversIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": [4],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": "4",
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

requestTemplate

Response

Returns a RequestTemplate

Arguments
NameDescription
tenant - ID
where - RequestTemplateWhereUniqueInput!

Example

Query
query RequestTemplate(
  $tenant: ID,
  $where: RequestTemplateWhereUniqueInput!
) {
  requestTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": RequestTemplateWhereUniqueInput
}
Response
{
  "data": {
    "requestTemplate": {
      "_id": 4,
      "commentRequired": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "expireDate": RequestTemplateExpireDate,
      "frame": RequestTemplateFrame,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

requestTemplateWithDeleted

Response

Returns a RequestTemplate

Arguments
NameDescription
where - RequestTemplateWhereUniqueInput!

Example

Query
query RequestTemplateWithDeleted($where: RequestTemplateWhereUniqueInput!) {
  requestTemplateWithDeleted(where: $where) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": RequestTemplateWhereUniqueInput}
Response
{
  "data": {
    "requestTemplateWithDeleted": {
      "_id": 4,
      "commentRequired": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "expireDate": RequestTemplateExpireDate,
      "frame": RequestTemplateFrame,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

requestTemplates

Response

Returns [RequestTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [RequestTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - RequestTemplateWhereInputDefault = {}

Example

Query
query RequestTemplates(
  $limit: Int,
  $orderBy: [RequestTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: RequestTemplateWhereInput
) {
  requestTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "requestTemplates": [
      {
        "_id": "4",
        "commentRequired": false,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "expireDate": RequestTemplateExpireDate,
        "frame": RequestTemplateFrame,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

requestTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - RequestTemplateWhereInputDefault = {}

Example

Query
query RequestTemplatesCount(
  $tenant: ID,
  $where: RequestTemplateWhereInput
) {
  requestTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"requestTemplatesCount": 987}}

requests

Response

Returns [Request]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [RequestOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - RequestWhereInputDefault = {}

Example

Query
query Requests(
  $limit: Int,
  $orderBy: [RequestOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: RequestWhereInput
) {
  requests(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "requests": [
      {
        "_id": 4,
        "approved": [Account],
        "approvedIds": ["4"],
        "approvers": [Account],
        "approversIds": ["4"],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "inputs": [Input],
        "lastFollowedUp": "2007-12-03T10:15:30Z",
        "limitDate": "2007-12-03T10:15:30Z",
        "logs": [RequestLog],
        "rejected": [Account],
        "rejectedIds": ["4"],
        "status": "Approved",
        "template": RequestTemplate,
        "templateId": 4,
        "title": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

requestsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - RequestWhereInputDefault = {}

Example

Query
query RequestsCount(
  $tenant: ID,
  $where: RequestWhereInput
) {
  requestsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"requestsCount": 123}}

role

Response

Returns a Role

Arguments
NameDescription
tenant - ID
where - RoleWhereUniqueInput!

Example

Query
query Role(
  $tenant: ID,
  $where: RoleWhereUniqueInput!
) {
  role(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": RoleWhereUniqueInput
}
Response
{
  "data": {
    "role": {
      "_id": 4,
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "name": "xyz789",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

roleWithDeleted

Response

Returns a Role

Arguments
NameDescription
where - RoleWhereUniqueInput!

Example

Query
query RoleWithDeleted($where: RoleWhereUniqueInput!) {
  roleWithDeleted(where: $where) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": RoleWhereUniqueInput}
Response
{
  "data": {
    "roleWithDeleted": {
      "_id": "4",
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "name": "abc123",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

roles

Response

Returns [Role]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [RoleOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - RoleWhereInputDefault = {}

Example

Query
query Roles(
  $limit: Int,
  $orderBy: [RoleOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: RoleWhereInput
) {
  roles(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "roles": [
      {
        "_id": 4,
        "assignedGroups": [RoleAssignedGroup],
        "clearances": [MyClearances],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "name": "abc123",
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

rolesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - RoleWhereInputDefault = {}

Example

Query
query RolesCount(
  $tenant: ID,
  $where: RoleWhereInput
) {
  rolesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"rolesCount": 987}}

site

Response

Returns a Site

Arguments
NameDescription
tenant - ID
where - SiteWhereUniqueInput!

Example

Query
query Site(
  $tenant: ID,
  $where: SiteWhereUniqueInput!
) {
  site(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SiteWhereUniqueInput}
Response
{
  "data": {
    "site": {
      "_id": "4",
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": false,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "devicesCount": 987,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": false,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [SiteLog],
      "myCalendarCount": 987,
      "myIssuesCount": 123,
      "name": "abc123",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": 4,
      "parentsTree": [Site],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "protected": true,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": false,
      "template": SiteTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

siteTemplate

Response

Returns a SiteTemplate

Arguments
NameDescription
tenant - ID
where - SiteTemplateWhereUniqueInput!

Example

Query
query SiteTemplate(
  $tenant: ID,
  $where: SiteTemplateWhereUniqueInput!
) {
  siteTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SiteTemplateWhereUniqueInput}
Response
{
  "data": {
    "siteTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": SiteTemplateFolder,
      "folderId": "4",
      "frame": SiteTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": true,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

siteTemplateFolder

Response

Returns a SiteTemplateFolder

Arguments
NameDescription
tenant - ID
where - SiteTemplateFolderWhereUniqueInput!

Example

Query
query SiteTemplateFolder(
  $tenant: ID,
  $where: SiteTemplateFolderWhereUniqueInput!
) {
  siteTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SiteTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "siteTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": SiteTemplateFolder,
      "parentId": 4,
      "parentsTree": [SiteTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "protected": true,
      "siteTemplateFoldersCount": 123,
      "siteTemplatesCount": 987,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

siteTemplateFolderWithDeleted

Response

Returns a SiteTemplateFolder

Arguments
NameDescription
where - SiteTemplateFolderWhereUniqueInput!

Example

Query
query SiteTemplateFolderWithDeleted($where: SiteTemplateFolderWhereUniqueInput!) {
  siteTemplateFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SiteTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "siteTemplateFolderWithDeleted": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": SiteTemplateFolder,
      "parentId": "4",
      "parentsTree": [SiteTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "protected": true,
      "siteTemplateFoldersCount": 123,
      "siteTemplatesCount": 123,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

siteTemplateFolders

Response

Returns [SiteTemplateFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SiteTemplateFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SiteTemplateFolderWhereInputDefault = {}

Example

Query
query SiteTemplateFolders(
  $limit: Int,
  $orderBy: [SiteTemplateFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SiteTemplateFolderWhereInput
) {
  siteTemplateFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "siteTemplateFolders": [
      {
        "_id": "4",
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "xyz789",
        "parent": SiteTemplateFolder,
        "parentId": 4,
        "parentsTree": [SiteTemplateFolder],
        "parentsTreeCount": 123,
        "parentsTreeIds": [4],
        "protected": true,
        "siteTemplateFoldersCount": 123,
        "siteTemplatesCount": 123,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

siteTemplateFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SiteTemplateFolderWhereInputDefault = {}

Example

Query
query SiteTemplateFoldersCount(
  $tenant: ID,
  $where: SiteTemplateFolderWhereInput
) {
  siteTemplateFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"siteTemplateFoldersCount": 123}}

siteTemplateWithDeleted

Response

Returns a SiteTemplate

Arguments
NameDescription
where - SiteTemplateWhereUniqueInput!

Example

Query
query SiteTemplateWithDeleted($where: SiteTemplateWhereUniqueInput!) {
  siteTemplateWithDeleted(where: $where) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SiteTemplateWhereUniqueInput}
Response
{
  "data": {
    "siteTemplateWithDeleted": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "folder": SiteTemplateFolder,
      "folderId": 4,
      "frame": SiteTemplateFrame,
      "icon": "abc123",
      "protected": false,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

siteTemplates

Response

Returns [SiteTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SiteTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SiteTemplateWhereInputDefault = {}

Example

Query
query SiteTemplates(
  $limit: Int,
  $orderBy: [SiteTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SiteTemplateWhereInput
) {
  siteTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "siteTemplates": [
      {
        "_id": "4",
        "archived": true,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "folder": SiteTemplateFolder,
        "folderId": "4",
        "frame": SiteTemplateFrame,
        "icon": "abc123",
        "protected": true,
        "system": false,
        "title": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

siteTemplatesAndFolders

Response

Returns [SiteTemplateOrFolder]

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [SiteTemplateFolderOrderByInput!]!
templateFolderWhere - SiteTemplateFolderWhereInput
templateOrderBy - [SiteTemplateOrderByInput!]!
templateWhere - SiteTemplateWhereInput
tenant - ID

Example

Query
query SiteTemplatesAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [SiteTemplateFolderOrderByInput!]!,
  $templateFolderWhere: SiteTemplateFolderWhereInput,
  $templateOrderBy: [SiteTemplateOrderByInput!]!,
  $templateWhere: SiteTemplateWhereInput,
  $tenant: ID
) {
  siteTemplatesAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on SiteTemplate {
      ...SiteTemplateFragment
    }
    ... on SiteTemplateFolder {
      ...SiteTemplateFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": SiteTemplateFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": SiteTemplateWhereInput,
  "tenant": "4"
}
Response
{"data": {"siteTemplatesAndFolders": [SiteTemplate]}}

siteTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SiteTemplateWhereInputDefault = {}

Example

Query
query SiteTemplatesCount(
  $tenant: ID,
  $where: SiteTemplateWhereInput
) {
  siteTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"siteTemplatesCount": 123}}

siteWithDeleted

Response

Returns a Site

Arguments
NameDescription
where - SiteWhereUniqueInput!

Example

Query
query SiteWithDeleted($where: SiteWhereUniqueInput!) {
  siteWithDeleted(where: $where) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SiteWhereUniqueInput}
Response
{
  "data": {
    "siteWithDeleted": {
      "_id": 4,
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": true,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "devicesCount": 987,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [SiteLog],
      "myCalendarCount": 987,
      "myIssuesCount": 987,
      "name": "abc123",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": 4,
      "parentsTree": [Site],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "protected": true,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": false,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

sites

Response

Returns [Site]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SiteOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SiteWhereInputDefault = {}

Example

Query
query Sites(
  $limit: Int,
  $orderBy: [SiteOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SiteWhereInput
) {
  sites(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "sites": [
      {
        "_id": "4",
        "accessToSites": [Site],
        "actionsCount": 987,
        "awaitingApproval": false,
        "coordinates": [123.45],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "devicesCount": 123,
        "elements": [Element],
        "elementsCount": 987,
        "inputs": [Input],
        "isRoot": true,
        "issues": [IssueInstance],
        "issuesCount": 987,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [SiteLog],
        "myCalendarCount": 987,
        "myIssuesCount": 987,
        "name": "xyz789",
        "nearbySites": [Site],
        "needsApproval": true,
        "parent": Site,
        "parentId": "4",
        "parentsTree": [Site],
        "parentsTreeIds": [4],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": 4,
        "pendingInputs": [Input],
        "protected": true,
        "responsibles": Responsibles,
        "sites": [Site],
        "sitesCount": 987,
        "system": false,
        "template": SiteTemplate,
        "templateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

sitesAndElements

Response

Returns [SiteOrElement]

Arguments
NameDescription
elementWhere - ElementWhereInput
limit - IntDefault = 20
orderBy - [SiteOrderByInput]
siteWhere - SiteWhereInput
skip - IntDefault = 0
tenant - ID
withTags - BooleanDefault = false

Example

Query
query SitesAndElements(
  $elementWhere: ElementWhereInput,
  $limit: Int,
  $orderBy: [SiteOrderByInput],
  $siteWhere: SiteWhereInput,
  $skip: Int,
  $tenant: ID,
  $withTags: Boolean
) {
  sitesAndElements(
    elementWhere: $elementWhere,
    limit: $limit,
    orderBy: $orderBy,
    siteWhere: $siteWhere,
    skip: $skip,
    tenant: $tenant,
    withTags: $withTags
  ) {
    ... on LeanElement {
      ...LeanElementFragment
    }
    ... on LeanElementTag {
      ...LeanElementTagFragment
    }
    ... on LeanSite {
      ...LeanSiteFragment
    }
  }
}
Variables
{
  "elementWhere": ElementWhereInput,
  "limit": 20,
  "orderBy": ["_id_ASC"],
  "siteWhere": SiteWhereInput,
  "skip": 0,
  "tenant": 4,
  "withTags": false
}
Response
{"data": {"sitesAndElements": [LeanElement]}}

sitesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SiteWhereInputDefault = {}

Example

Query
query SitesCount(
  $tenant: ID,
  $where: SiteWhereInput
) {
  sitesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"sitesCount": 987}}

sitesV2

use the regular findMany query
Response

Returns [LeanSite]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SiteOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SiteWhereInputDefault = {}

Example

Query
query SitesV2(
  $limit: Int,
  $orderBy: [SiteOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SiteWhereInput
) {
  sitesV2(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    coordinates
    createdAt
    createdById
    deleted
    deletedAt
    deletedById
    description
    devicesCount
    hasChildren
    hasElements
    hasSites
    isRoot
    labelValuesIds
    log {
      ...LeanSiteLogFragment
    }
    name
    parentId
    parentsTreeIds
    protected
    system
    templateIcon
    templateId
    updatedAt
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "sitesV2": [
      {
        "_id": 4,
        "coordinates": [987.65],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedById": "4",
        "description": "abc123",
        "devicesCount": 987,
        "hasChildren": true,
        "hasElements": false,
        "hasSites": true,
        "isRoot": false,
        "labelValuesIds": [4],
        "log": [LeanSiteLog],
        "name": "abc123",
        "parentId": 4,
        "parentsTreeIds": ["4"],
        "protected": false,
        "system": false,
        "templateIcon": "abc123",
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedById": "4"
      }
    ]
  }
}

sitesWithDeleted

Response

Returns [Site]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SiteOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SiteWhereInputDefault = {}

Example

Query
query SitesWithDeleted(
  $limit: Int,
  $orderBy: [SiteOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SiteWhereInput
) {
  sitesWithDeleted(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "sitesWithDeleted": [
      {
        "_id": 4,
        "accessToSites": [Site],
        "actionsCount": 987,
        "awaitingApproval": false,
        "coordinates": [123.45],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "devicesCount": 987,
        "elements": [Element],
        "elementsCount": 987,
        "inputs": [Input],
        "isRoot": false,
        "issues": [IssueInstance],
        "issuesCount": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [SiteLog],
        "myCalendarCount": 123,
        "myIssuesCount": 123,
        "name": "abc123",
        "nearbySites": [Site],
        "needsApproval": false,
        "parent": Site,
        "parentId": "4",
        "parentsTree": [Site],
        "parentsTreeIds": ["4"],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": 4,
        "pendingInputs": [Input],
        "protected": true,
        "responsibles": Responsibles,
        "sites": [Site],
        "sitesCount": 987,
        "system": false,
        "template": SiteTemplate,
        "templateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

skill

Response

Returns a Skill

Arguments
NameDescription
tenant - ID
where - SkillWhereUniqueInput!

Example

Query
query Skill(
  $tenant: ID,
  $where: SkillWhereUniqueInput!
) {
  skill(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": SkillWhereUniqueInput
}
Response
{
  "data": {
    "skill": {
      "_id": "4",
      "chosenSkillLevels": ["xyz789"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "name": "xyz789",
      "protected": false,
      "renewal": SkillRenewal,
      "renewalWarning": SkillRenewalWarning,
      "skillGroup": SkillGroup,
      "skillGroupId": 4,
      "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

skillGroup

Response

Returns a SkillGroup

Arguments
NameDescription
tenant - ID
where - SkillGroupWhereUniqueInput!

Example

Query
query SkillGroup(
  $tenant: ID,
  $where: SkillGroupWhereUniqueInput!
) {
  skillGroup(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SkillGroupWhereUniqueInput}
Response
{
  "data": {
    "skillGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "protected": false,
      "skillCount": 987,
      "skills": [Skill],
      "subject": SkillSubject,
      "subjectId": "4",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

skillGroupWithDeleted

Response

Returns a SkillGroup

Arguments
NameDescription
where - SkillGroupWhereUniqueInput!

Example

Query
query SkillGroupWithDeleted($where: SkillGroupWhereUniqueInput!) {
  skillGroupWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SkillGroupWhereUniqueInput}
Response
{
  "data": {
    "skillGroupWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "protected": false,
      "skillCount": 987,
      "skills": [Skill],
      "subject": SkillSubject,
      "subjectId": "4",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

skillGroups

Response

Returns [SkillGroup]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SkillGroupOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SkillGroupWhereInputDefault = {}

Example

Query
query SkillGroups(
  $limit: Int,
  $orderBy: [SkillGroupOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SkillGroupWhereInput
) {
  skillGroups(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "skillGroups": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "abc123",
        "protected": true,
        "skillCount": 123,
        "skills": [Skill],
        "subject": SkillSubject,
        "subjectId": "4",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

skillGroupsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SkillGroupWhereInputDefault = {}

Example

Query
query SkillGroupsCount(
  $tenant: ID,
  $where: SkillGroupWhereInput
) {
  skillGroupsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"skillGroupsCount": 123}}

skillLevel

Response

Returns a SkillLevel

Arguments
NameDescription
tenant - ID
where - SkillLevelWhereUniqueInput!

Example

Query
query SkillLevel(
  $tenant: ID,
  $where: SkillLevelWhereUniqueInput!
) {
  skillLevel(
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SkillLevelWhereUniqueInput}
Response
{
  "data": {
    "skillLevel": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "acquisitionDate": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": [4],
      "level": "EXPERT",
      "protected": true,
      "requiredLevel": "EXPERT",
      "skill": Skill,
      "skillId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

skillLevelWithDeleted

Response

Returns a SkillLevel

Arguments
NameDescription
where - SkillLevelWhereUniqueInput!

Example

Query
query SkillLevelWithDeleted($where: SkillLevelWhereUniqueInput!) {
  skillLevelWithDeleted(where: $where) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SkillLevelWhereUniqueInput}
Response
{
  "data": {
    "skillLevelWithDeleted": {
      "_id": 4,
      "account": Account,
      "accountId": 4,
      "acquisitionDate": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": [4],
      "level": "EXPERT",
      "protected": false,
      "requiredLevel": "EXPERT",
      "skill": Skill,
      "skillId": "4",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

skillLevels

Response

Returns [SkillLevel]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SkillLevelOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SkillLevelWhereInputDefault = {}

Example

Query
query SkillLevels(
  $limit: Int,
  $orderBy: [SkillLevelOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SkillLevelWhereInput
) {
  skillLevels(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "skillLevels": [
      {
        "_id": "4",
        "account": Account,
        "accountId": 4,
        "acquisitionDate": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": ["4"],
        "level": "EXPERT",
        "protected": true,
        "requiredLevel": "EXPERT",
        "skill": Skill,
        "skillId": "4",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

skillLevelsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SkillLevelWhereInputDefault = {}

Example

Query
query SkillLevelsCount(
  $tenant: ID,
  $where: SkillLevelWhereInput
) {
  skillLevelsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"skillLevelsCount": 987}}

skillSubject

Response

Returns a SkillSubject

Arguments
NameDescription
tenant - ID
where - SkillSubjectWhereUniqueInput!

Example

Query
query SkillSubject(
  $tenant: ID,
  $where: SkillSubjectWhereUniqueInput!
) {
  skillSubject(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{"tenant": 4, "where": SkillSubjectWhereUniqueInput}
Response
{
  "data": {
    "skillSubject": {
      "_id": "4",
      "chosenSubjectLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "protected": true,
      "skillCount": 987,
      "skillGroupCount": 123,
      "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "userCount": 123
    }
  }
}

skillSubjectWithDeleted

Response

Returns a SkillSubject

Arguments
NameDescription
where - SkillSubjectWhereUniqueInput!

Example

Query
query SkillSubjectWithDeleted($where: SkillSubjectWhereUniqueInput!) {
  skillSubjectWithDeleted(where: $where) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{"where": SkillSubjectWhereUniqueInput}
Response
{
  "data": {
    "skillSubjectWithDeleted": {
      "_id": 4,
      "chosenSubjectLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "protected": false,
      "skillCount": 987,
      "skillGroupCount": 123,
      "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "userCount": 123
    }
  }
}

skillSubjects

Response

Returns [SkillSubject]

Arguments
NameDescription
limit - IntDefault = 1000
orderBy - [SkillSubjectOrderByInput]
skip - IntDefault = 0
where - SkillSubjectWhereInput

Example

Query
query SkillSubjects(
  $limit: Int,
  $orderBy: [SkillSubjectOrderByInput],
  $skip: Int,
  $where: SkillSubjectWhereInput
) {
  skillSubjects(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{
  "limit": 1000,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "where": SkillSubjectWhereInput
}
Response
{
  "data": {
    "skillSubjects": [
      {
        "_id": 4,
        "chosenSubjectLevels": ["xyz789"],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "xyz789",
        "protected": false,
        "skillCount": 987,
        "skillGroupCount": 987,
        "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "userCount": 123
      }
    ]
  }
}

skillSubjectsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SkillSubjectWhereInputDefault = {}

Example

Query
query SkillSubjectsCount(
  $tenant: ID,
  $where: SkillSubjectWhereInput
) {
  skillSubjectsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"skillSubjectsCount": 123}}

skillWithDeleted

Response

Returns a Skill

Arguments
NameDescription
where - SkillWhereUniqueInput!

Example

Query
query SkillWithDeleted($where: SkillWhereUniqueInput!) {
  skillWithDeleted(where: $where) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": SkillWhereUniqueInput}
Response
{
  "data": {
    "skillWithDeleted": {
      "_id": 4,
      "chosenSkillLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "name": "abc123",
      "protected": true,
      "renewal": SkillRenewal,
      "renewalWarning": SkillRenewalWarning,
      "skillGroup": SkillGroup,
      "skillGroupId": "4",
      "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

skills

Response

Returns [Skill]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [SkillOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - SkillWhereInputDefault = {}

Example

Query
query Skills(
  $limit: Int,
  $orderBy: [SkillOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: SkillWhereInput
) {
  skills(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "skills": [
      {
        "_id": "4",
        "chosenSkillLevels": ["xyz789"],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "name": "xyz789",
        "protected": false,
        "renewal": SkillRenewal,
        "renewalWarning": SkillRenewalWarning,
        "skillGroup": SkillGroup,
        "skillGroupId": "4",
        "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

skillsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - SkillWhereInputDefault = {}

Example

Query
query SkillsCount(
  $tenant: ID,
  $where: SkillWhereInput
) {
  skillsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"skillsCount": 123}}

stateMachine

Response

Returns a StateMachine

Arguments
NameDescription
tenant - ID
where - StateMachineWhereUniqueInput!

Example

Query
query StateMachine(
  $tenant: ID,
  $where: StateMachineWhereUniqueInput!
) {
  stateMachine(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": StateMachineWhereUniqueInput}
Response
{
  "data": {
    "stateMachine": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": StateMachineFolder,
      "folderId": 4,
      "initState": "abc123",
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "protected": true,
      "states": [StateMachineState],
      "system": false,
      "timeBomb": StateMachineTimeBomb,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

stateMachineFolder

Response

Returns a StateMachineFolder

Arguments
NameDescription
tenant - ID
where - StateMachineFolderWhereUniqueInput!

Example

Query
query StateMachineFolder(
  $tenant: ID,
  $where: StateMachineFolderWhereUniqueInput!
) {
  stateMachineFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": StateMachineFolderWhereUniqueInput
}
Response
{
  "data": {
    "stateMachineFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": StateMachineFolder,
      "parentId": "4",
      "parentsTree": [StateMachineFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "stateMachineFoldersCount": 123,
      "stateMachinesCount": 987,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

stateMachineFolderWithDeleted

Response

Returns a StateMachineFolder

Arguments
NameDescription
where - StateMachineFolderWhereUniqueInput!

Example

Query
query StateMachineFolderWithDeleted($where: StateMachineFolderWhereUniqueInput!) {
  stateMachineFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": StateMachineFolderWhereUniqueInput}
Response
{
  "data": {
    "stateMachineFolderWithDeleted": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": StateMachineFolder,
      "parentId": "4",
      "parentsTree": [StateMachineFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "stateMachineFoldersCount": 987,
      "stateMachinesCount": 987,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

stateMachineFolders

Response

Returns [StateMachineFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [StateMachineFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - StateMachineFolderWhereInputDefault = {}

Example

Query
query StateMachineFolders(
  $limit: Int,
  $orderBy: [StateMachineFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: StateMachineFolderWhereInput
) {
  stateMachineFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "stateMachineFolders": [
      {
        "_id": 4,
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "abc123",
        "parent": StateMachineFolder,
        "parentId": 4,
        "parentsTree": [StateMachineFolder],
        "parentsTreeIds": [4],
        "protected": false,
        "stateMachineFoldersCount": 123,
        "stateMachinesCount": 987,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

stateMachineFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - StateMachineFolderWhereInputDefault = {}

Example

Query
query StateMachineFoldersCount(
  $tenant: ID,
  $where: StateMachineFolderWhereInput
) {
  stateMachineFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"stateMachineFoldersCount": 123}}

stateMachineWithDeleted

Response

Returns a StateMachine

Arguments
NameDescription
where - StateMachineWhereUniqueInput!

Example

Query
query StateMachineWithDeleted($where: StateMachineWhereUniqueInput!) {
  stateMachineWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": StateMachineWhereUniqueInput}
Response
{
  "data": {
    "stateMachineWithDeleted": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": StateMachineFolder,
      "folderId": 4,
      "initState": "xyz789",
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "protected": false,
      "states": [StateMachineState],
      "system": false,
      "timeBomb": StateMachineTimeBomb,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

stateMachines

Response

Returns [StateMachine]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [StateMachineOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - StateMachineWhereInputDefault = {}

Example

Query
query StateMachines(
  $limit: Int,
  $orderBy: [StateMachineOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: StateMachineWhereInput
) {
  stateMachines(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "stateMachines": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "folder": StateMachineFolder,
        "folderId": "4",
        "initState": "xyz789",
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "protected": false,
        "states": [StateMachineState],
        "system": true,
        "timeBomb": StateMachineTimeBomb,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

stateMachinesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - StateMachineWhereInputDefault = {}

Example

Query
query StateMachinesCount(
  $tenant: ID,
  $where: StateMachineWhereInput
) {
  stateMachinesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"stateMachinesCount": 123}}

staticWidgets

Response

Returns a StaticWidgetData

Example

Query
query StaticWidgets {
  staticWidgets {
    lastTenantsCreated {
      ...TenantFragment
    }
    lastUsersCreated {
      ...AccountFragment
    }
    lastUsersLogged {
      ...AccountFragment
    }
    totalActions
    totalAssets
    totalProcedures
    totalTenants
    totalUsers
  }
}
Response
{
  "data": {
    "staticWidgets": {
      "lastTenantsCreated": [Tenant],
      "lastUsersCreated": [Account],
      "lastUsersLogged": [Account],
      "totalActions": 987,
      "totalAssets": 123,
      "totalProcedures": 987,
      "totalTenants": 987,
      "totalUsers": 987
    }
  }
}

storage

Response

Returns a Storage

Arguments
NameDescription
tenant - ID
where - StorageWhereUniqueInput!

Example

Query
query Storage(
  $tenant: ID,
  $where: StorageWhereUniqueInput!
) {
  storage(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": StorageWhereUniqueInput}
Response
{
  "data": {
    "storage": {
      "_id": 4,
      "address": StorageAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "locations": [Location],
      "locationsIds": ["4"],
      "name": "abc123",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

storageWithDeleted

Response

Returns a Storage

Arguments
NameDescription
where - StorageWhereUniqueInput!

Example

Query
query StorageWithDeleted($where: StorageWhereUniqueInput!) {
  storageWithDeleted(where: $where) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": StorageWhereUniqueInput}
Response
{
  "data": {
    "storageWithDeleted": {
      "_id": "4",
      "address": StorageAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "locations": [Location],
      "locationsIds": ["4"],
      "name": "abc123",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

storages

Response

Returns [Storage]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [StorageOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - StorageWhereInputDefault = {}

Example

Query
query Storages(
  $limit: Int,
  $orderBy: [StorageOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: StorageWhereInput
) {
  storages(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "storages": [
      {
        "_id": 4,
        "address": StorageAddress,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "locations": [Location],
        "locationsIds": ["4"],
        "name": "xyz789",
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

storagesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - StorageWhereInputDefault = {}

Example

Query
query StoragesCount(
  $tenant: ID,
  $where: StorageWhereInput
) {
  storagesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"storagesCount": 987}}

tab

Response

Returns a Tab

Arguments
NameDescription
tenant - ID
where - TabWhereUniqueInput!

Example

Query
query Tab(
  $tenant: ID,
  $where: TabWhereUniqueInput!
) {
  tab(
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": TabWhereUniqueInput}
Response
{
  "data": {
    "tab": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "columns": [TabColumn],
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

tabWithDeleted

Response

Returns a Tab

Arguments
NameDescription
where - TabWhereUniqueInput!

Example

Query
query TabWithDeleted($where: TabWhereUniqueInput!) {
  tabWithDeleted(where: $where) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": TabWhereUniqueInput}
Response
{
  "data": {
    "tabWithDeleted": {
      "_id": "4",
      "account": Account,
      "accountId": "4",
      "columns": [TabColumn],
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

tabs

Response

Returns [Tab]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TabOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TabWhereInputDefault = {}

Example

Query
query Tabs(
  $limit: Int,
  $orderBy: [TabOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TabWhereInput
) {
  tabs(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "tabs": [
      {
        "_id": "4",
        "account": Account,
        "accountId": 4,
        "columns": [TabColumn],
        "context": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "xyz789",
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

tabsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TabWhereInputDefault = {}

Example

Query
query TabsCount(
  $tenant: ID,
  $where: TabWhereInput
) {
  tabsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"tabsCount": 123}}

taskInstance

Response

Returns a Task

Arguments
NameDescription
tenant - ID
where - TaskWhereUniqueInput!

Example

Query
query TaskInstance(
  $tenant: ID,
  $where: TaskWhereUniqueInput!
) {
  taskInstance(
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{"tenant": 4, "where": TaskWhereUniqueInput}
Response
{
  "data": {
    "taskInstance": {
      "_id": "4",
      "advancedLabelSelection": TaskAdvancedLabelSelection,
      "arConfiguration": TaskArConfiguration,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedMaterials": [TaskAssignedMaterial],
      "assignedSkills": [TaskAssignedSkill],
      "assignedTools": [TaskAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "estimatedDuration": 123,
      "executedBy": [Account],
      "executedByIds": [4],
      "executionInputs": [Input],
      "inputs": [Input],
      "isActiveByOnResponse": true,
      "isLocked": true,
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "onResponseId": 4,
      "order": 987,
      "originalTaskId": 4,
      "parentsTree": ["4"],
      "possibleActions": ["xyz789"],
      "remarks": [TaskRemark],
      "score": TaskScore,
      "site": Site,
      "siteId": "4",
      "stateMachineInstance": StateMachineInstance,
      "taskTemplate": 4,
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

taskInstances

Response

Returns [Task]

Arguments
NameDescription
issue - ID!
limit - IntDefault = 100
orderBy - [TaskOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskWhereInputDefault = {}

Example

Query
query TaskInstances(
  $issue: ID!,
  $limit: Int,
  $orderBy: [TaskOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskWhereInput
) {
  taskInstances(
    issue: $issue,
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{
  "issue": "4",
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "taskInstances": [
      {
        "_id": 4,
        "advancedLabelSelection": TaskAdvancedLabelSelection,
        "arConfiguration": TaskArConfiguration,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedMaterials": [TaskAssignedMaterial],
        "assignedSkills": [TaskAssignedSkill],
        "assignedTools": [TaskAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "description": "abc123",
        "element": Element,
        "elementId": "4",
        "estimatedDuration": 123,
        "executedBy": [Account],
        "executedByIds": [4],
        "executionInputs": [Input],
        "inputs": [Input],
        "isActiveByOnResponse": false,
        "isLocked": false,
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "name": "xyz789",
        "onResponseId": "4",
        "order": 123,
        "originalTaskId": "4",
        "parentsTree": ["4"],
        "possibleActions": ["abc123"],
        "remarks": [TaskRemark],
        "score": TaskScore,
        "site": Site,
        "siteId": "4",
        "stateMachineInstance": StateMachineInstance,
        "taskTemplate": "4",
        "updatedAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

taskMapping

Response

Returns a TaskMapping

Arguments
NameDescription
tenant - ID
where - TaskMappingWhereUniqueInput!

Example

Query
query TaskMapping(
  $tenant: ID,
  $where: TaskMappingWhereUniqueInput!
) {
  taskMapping(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": TaskMappingWhereUniqueInput
}
Response
{
  "data": {
    "taskMapping": {
      "_id": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [TaskMappingAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "element": Element,
      "elementId": 4,
      "issueCatalog": IssueCatalog,
      "issueCatalogId": 4,
      "protected": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": false,
      "taskTemplate": TaskTemplate,
      "taskTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

taskMappingWithDeleted

Response

Returns a TaskMapping

Arguments
NameDescription
where - TaskMappingWhereUniqueInput!

Example

Query
query TaskMappingWithDeleted($where: TaskMappingWhereUniqueInput!) {
  taskMappingWithDeleted(where: $where) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": TaskMappingWhereUniqueInput}
Response
{
  "data": {
    "taskMappingWithDeleted": {
      "_id": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [TaskMappingAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "element": Element,
      "elementId": "4",
      "issueCatalog": IssueCatalog,
      "issueCatalogId": 4,
      "protected": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": false,
      "taskTemplate": TaskTemplate,
      "taskTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

taskMappings

Response

Returns [TaskMapping]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TaskMappingOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskMappingWhereInputDefault = {}

Example

Query
query TaskMappings(
  $limit: Int,
  $orderBy: [TaskMappingOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskMappingWhereInput
) {
  taskMappings(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "taskMappings": [
      {
        "_id": 4,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [TaskMappingAssignedSkill],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "element": Element,
        "elementId": 4,
        "issueCatalog": IssueCatalog,
        "issueCatalogId": 4,
        "protected": false,
        "site": Site,
        "siteId": "4",
        "stateMachine": StateMachine,
        "stateMachineId": 4,
        "system": true,
        "taskTemplate": TaskTemplate,
        "taskTemplateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

taskMappingsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TaskMappingWhereInputDefault = {}

Example

Query
query TaskMappingsCount(
  $tenant: ID,
  $where: TaskMappingWhereInput
) {
  taskMappingsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"taskMappingsCount": 123}}

taskTemplate

Response

Returns a TaskTemplate

Arguments
NameDescription
tenant - ID
where - TaskTemplateWhereUniqueInput!

Example

Query
query TaskTemplate(
  $tenant: ID,
  $where: TaskTemplateWhereUniqueInput!
) {
  taskTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"tenant": 4, "where": TaskTemplateWhereUniqueInput}
Response
{
  "data": {
    "taskTemplate": {
      "_id": 4,
      "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
      "arConfiguration": TaskTemplateArConfiguration,
      "assignedMaterials": [TaskTemplateAssignedMaterial],
      "assignedSkills": [TaskTemplateAssignedSkill],
      "assignedTools": [TaskTemplateAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "estimatedDuration": 123,
      "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
      "group": TaskTemplateGroup,
      "groupId": 4,
      "inputHistory": [Input],
      "inputs": [Input],
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [TaskTemplateLog],
      "manualId": "xyz789",
      "mapping": TaskMapping,
      "name": "xyz789",
      "onResponseId": "4",
      "order": 987,
      "parentsTree": [4],
      "protected": false,
      "remarks": [TaskTemplateRemark],
      "show": true,
      "system": true,
      "totalScore": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": TaskTemplateVariant
    }
  }
}

taskTemplateDraft

Arguments
NameDescription
issueTemplateDraft - ID!
taskTemplate - ID!
taskTemplateGroup - ID!

Example

Query
query TaskTemplateDraft(
  $issueTemplateDraft: ID!,
  $taskTemplate: ID!,
  $taskTemplateGroup: ID!
) {
  taskTemplateDraft(
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplate: $taskTemplate,
    taskTemplateGroup: $taskTemplateGroup
  ) {
    _id
    advancedLabelSelection {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolFragment
    }
    description
    estimatedDuration
    estimatedDurationDivided {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateLogFragment
    }
    manualId
    name
    onResponseId
    order
    parentsTree
    remarks {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkFragment
    }
    show
    totalScore
    variant {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantFragment
    }
  }
}
Variables
{"issueTemplateDraft": 4, "taskTemplate": 4, "taskTemplateGroup": 4}
Response
{
  "data": {
    "taskTemplateDraft": {
      "_id": "4",
      "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection,
      "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration,
      "assignedMaterials": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial
      ],
      "assignedSkills": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill
      ],
      "assignedTools": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool
      ],
      "description": "xyz789",
      "estimatedDuration": 123,
      "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided,
      "inputs": [Input],
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateLog
      ],
      "manualId": "xyz789",
      "name": "abc123",
      "onResponseId": 4,
      "order": 987,
      "parentsTree": ["4"],
      "remarks": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark
      ],
      "show": true,
      "totalScore": 123,
      "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant
    }
  }
}

taskTemplateDrafts

Arguments
NameDescription
issueTemplateDraft - ID!
taskTemplates - [ID!]!

Example

Query
query TaskTemplateDrafts(
  $issueTemplateDraft: ID!,
  $taskTemplates: [ID!]!
) {
  taskTemplateDrafts(
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplates: $taskTemplates
  ) {
    _id
    advancedLabelSelection {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolFragment
    }
    description
    estimatedDuration
    estimatedDurationDivided {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateLogFragment
    }
    manualId
    name
    onResponseId
    order
    parentsTree
    remarks {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkFragment
    }
    show
    totalScore
    variant {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantFragment
    }
  }
}
Variables
{
  "issueTemplateDraft": 4,
  "taskTemplates": ["4"]
}
Response
{
  "data": {
    "taskTemplateDrafts": [
      {
        "_id": "4",
        "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection,
        "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration,
        "assignedMaterials": [
          IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial
        ],
        "assignedSkills": [
          IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill
        ],
        "assignedTools": [
          IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool
        ],
        "description": "xyz789",
        "estimatedDuration": 987,
        "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided,
        "inputs": [Input],
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "log": [
          IssueTemplateDraftTaskTemplateGroupTaskTemplateLog
        ],
        "manualId": "xyz789",
        "name": "xyz789",
        "onResponseId": "4",
        "order": 123,
        "parentsTree": [4],
        "remarks": [
          IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark
        ],
        "show": true,
        "totalScore": 987,
        "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant
      }
    ]
  }
}

taskTemplateGroup

Response

Returns a TaskTemplateGroup

Arguments
NameDescription
tenant - ID
where - TaskTemplateGroupWhereUniqueInput!

Example

Query
query TaskTemplateGroup(
  $tenant: ID,
  $where: TaskTemplateGroupWhereUniqueInput!
) {
  taskTemplateGroup(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": TaskTemplateGroupWhereUniqueInput
}
Response
{
  "data": {
    "taskTemplateGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "markersToShow": "ALL",
      "name": "abc123",
      "order": 987,
      "protected": true,
      "sequential": false,
      "system": true,
      "taskTemplates": [TaskTemplate],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

taskTemplateGroupWithDeleted

Response

Returns a TaskTemplateGroup

Arguments
NameDescription
where - TaskTemplateGroupWhereUniqueInput!

Example

Query
query TaskTemplateGroupWithDeleted($where: TaskTemplateGroupWhereUniqueInput!) {
  taskTemplateGroupWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": TaskTemplateGroupWhereUniqueInput}
Response
{
  "data": {
    "taskTemplateGroupWithDeleted": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": 4,
      "markersToShow": "ALL",
      "name": "abc123",
      "order": 987,
      "protected": true,
      "sequential": true,
      "system": false,
      "taskTemplates": [TaskTemplate],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

taskTemplateGroups

Response

Returns [TaskTemplateGroup]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TaskTemplateGroupOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskTemplateGroupWhereInputDefault = {}

Example

Query
query TaskTemplateGroups(
  $limit: Int,
  $orderBy: [TaskTemplateGroupOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskTemplateGroupWhereInput
) {
  taskTemplateGroups(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "taskTemplateGroups": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "issueTemplate": IssueTemplate,
        "issueTemplateId": "4",
        "markersToShow": "ALL",
        "name": "xyz789",
        "order": 123,
        "protected": true,
        "sequential": false,
        "system": true,
        "taskTemplates": [TaskTemplate],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

taskTemplateGroupsByLabelFilter

Response

Returns an IssueTemplate

Arguments
NameDescription
_id - ID!
filter - [TaskTemplateAdvancedLabelSelectionFilterCreateInput]

Example

Query
query TaskTemplateGroupsByLabelFilter(
  $_id: ID!,
  $filter: [TaskTemplateAdvancedLabelSelectionFilterCreateInput]
) {
  taskTemplateGroupsByLabelFilter(
    _id: $_id,
    filter: $filter
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "_id": "4",
  "filter": [
    TaskTemplateAdvancedLabelSelectionFilterCreateInput
  ]
}
Response
{
  "data": {
    "taskTemplateGroupsByLabelFilter": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

taskTemplateGroupsByMaterialTool

Response

Returns [TaskTemplateGroup]

Arguments
NameDescription
material - ID
name - String

Example

Query
query TaskTemplateGroupsByMaterialTool(
  $material: ID,
  $name: String
) {
  taskTemplateGroupsByMaterialTool(
    material: $material,
    name: $name
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"material": 4, "name": "abc123"}
Response
{
  "data": {
    "taskTemplateGroupsByMaterialTool": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "issueTemplate": IssueTemplate,
        "issueTemplateId": 4,
        "markersToShow": "ALL",
        "name": "abc123",
        "order": 987,
        "protected": false,
        "sequential": true,
        "system": true,
        "taskTemplates": [TaskTemplate],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

taskTemplateGroupsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TaskTemplateGroupWhereInputDefault = {}

Example

Query
query TaskTemplateGroupsCount(
  $tenant: ID,
  $where: TaskTemplateGroupWhereInput
) {
  taskTemplateGroupsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"taskTemplateGroupsCount": 987}}

taskTemplateWithDeleted

Response

Returns a TaskTemplate

Arguments
NameDescription
where - TaskTemplateWhereUniqueInput!

Example

Query
query TaskTemplateWithDeleted($where: TaskTemplateWhereUniqueInput!) {
  taskTemplateWithDeleted(where: $where) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"where": TaskTemplateWhereUniqueInput}
Response
{
  "data": {
    "taskTemplateWithDeleted": {
      "_id": "4",
      "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
      "arConfiguration": TaskTemplateArConfiguration,
      "assignedMaterials": [TaskTemplateAssignedMaterial],
      "assignedSkills": [TaskTemplateAssignedSkill],
      "assignedTools": [TaskTemplateAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "estimatedDuration": 123,
      "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
      "group": TaskTemplateGroup,
      "groupId": 4,
      "inputHistory": [Input],
      "inputs": [Input],
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [TaskTemplateLog],
      "manualId": "abc123",
      "mapping": TaskMapping,
      "name": "abc123",
      "onResponseId": 4,
      "order": 987,
      "parentsTree": [4],
      "protected": true,
      "remarks": [TaskTemplateRemark],
      "show": true,
      "system": true,
      "totalScore": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": TaskTemplateVariant
    }
  }
}

taskTemplates

Response

Returns [TaskTemplate]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TaskTemplateOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TaskTemplateWhereInputDefault = {}

Example

Query
query TaskTemplates(
  $limit: Int,
  $orderBy: [TaskTemplateOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TaskTemplateWhereInput
) {
  taskTemplates(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "taskTemplates": [
      {
        "_id": 4,
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "estimatedDuration": 987,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": "4",
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": false,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "log": [TaskTemplateLog],
        "manualId": "abc123",
        "mapping": TaskMapping,
        "name": "abc123",
        "onResponseId": "4",
        "order": 123,
        "parentsTree": [4],
        "protected": false,
        "remarks": [TaskTemplateRemark],
        "show": false,
        "system": false,
        "totalScore": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": TaskTemplateVariant
      }
    ]
  }
}

taskTemplatesCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TaskTemplateWhereInputDefault = {}

Example

Query
query TaskTemplatesCount(
  $tenant: ID,
  $where: TaskTemplateWhereInput
) {
  taskTemplatesCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"taskTemplatesCount": 123}}

team

Response

Returns a Team

Arguments
NameDescription
tenant - ID
where - TeamWhereUniqueInput!

Example

Query
query Team(
  $tenant: ID,
  $where: TeamWhereUniqueInput!
) {
  team(
    tenant: $tenant,
    where: $where
  ) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": TeamWhereUniqueInput}
Response
{
  "data": {
    "team": {
      "_id": "4",
      "color": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "members": [TeamMember],
      "name": "xyz789",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

teamWithDeleted

Response

Returns a Team

Arguments
NameDescription
where - TeamWhereUniqueInput!

Example

Query
query TeamWithDeleted($where: TeamWhereUniqueInput!) {
  teamWithDeleted(where: $where) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": TeamWhereUniqueInput}
Response
{
  "data": {
    "teamWithDeleted": {
      "_id": 4,
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "members": [TeamMember],
      "name": "abc123",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

teams

Response

Returns [Team]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TeamOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TeamWhereInputDefault = {}

Example

Query
query Teams(
  $limit: Int,
  $orderBy: [TeamOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TeamWhereInput
) {
  teams(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "teams": [
      {
        "_id": "4",
        "color": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "members": [TeamMember],
        "name": "abc123",
        "protected": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

teamsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TeamWhereInputDefault = {}

Example

Query
query TeamsCount(
  $tenant: ID,
  $where: TeamWhereInput
) {
  teamsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"teamsCount": 123}}

templateLibraryFolderNames

Response

Returns [String]

Example

Query
query TemplateLibraryFolderNames {
  templateLibraryFolderNames
}
Response
{
  "data": {
    "templateLibraryFolderNames": ["abc123"]
  }
}

tenantInfo

Response

Returns a TenantBasicInfo

Arguments
NameDescription
domain - String

Example

Query
query TenantInfo($domain: String) {
  tenantInfo(domain: $domain) {
    _id
    domain
    isRemoteAssistAllowed
    master
    name
    paletteDark {
      ...TenantConfigPaletteDarkFragment
    }
    paletteLight {
      ...TenantConfigPaletteLightFragment
    }
    resources {
      ...TenantResourcesFragment
    }
    samlAuthEndpoint
    sentryEnvironment
    sentryMobileDSN
    sentryWebDSN
    siteURL
    templateLibraryEnabled
    timezone
    version
  }
}
Variables
{"domain": "xyz789"}
Response
{
  "data": {
    "tenantInfo": {
      "_id": 4,
      "domain": "abc123",
      "isRemoteAssistAllowed": true,
      "master": false,
      "name": "abc123",
      "paletteDark": TenantConfigPaletteDark,
      "paletteLight": TenantConfigPaletteLight,
      "resources": TenantResources,
      "samlAuthEndpoint": "abc123",
      "sentryEnvironment": "abc123",
      "sentryMobileDSN": "abc123",
      "sentryWebDSN": "abc123",
      "siteURL": "xyz789",
      "templateLibraryEnabled": false,
      "timezone": "xyz789",
      "version": "abc123"
    }
  }
}

tenantLDAPConfig

Response

Returns a TenantConfigLdap

Example

Query
query TenantLDAPConfig {
  tenantLDAPConfig {
    ad
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesIds
    bindDN
    defaultRole {
      ...RoleFragment
    }
    defaultRoleId
    disabled
    fieldMap {
      ...TenantConfigLdapFieldMapFragment
    }
    filter
    overrideRolesOnUpdate
    password
    roleMap {
      ...TenantConfigLdapRoleMapFragment
    }
    searchDN
    url
    username
  }
}
Response
{
  "data": {
    "tenantLDAPConfig": {
      "ad": false,
      "authorizedSites": [Site],
      "authorizedSitesIds": ["4"],
      "bindDN": "abc123",
      "defaultRole": Role,
      "defaultRoleId": 4,
      "disabled": true,
      "fieldMap": TenantConfigLdapFieldMap,
      "filter": "xyz789",
      "overrideRolesOnUpdate": false,
      "password": "xyz789",
      "roleMap": [TenantConfigLdapRoleMap],
      "searchDN": "xyz789",
      "url": "abc123",
      "username": "xyz789"
    }
  }
}

tenantSAMLConfig

Response

Returns a TenantConfigSaml

Example

Query
query TenantSAMLConfig {
  tenantSAMLConfig {
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesIds
    callbackUrl
    cert
    defaultRole {
      ...RoleFragment
    }
    defaultRoleId
    entryPoint
    fetchUrl {
      ...TenantConfigSamlFetchUrlFragment
    }
    fieldMap {
      ...TenantConfigSamlFieldMapFragment
    }
    issuer
    overrideRolesOnUpdate
    roleMap {
      ...TenantConfigSamlRoleMapFragment
    }
  }
}
Response
{
  "data": {
    "tenantSAMLConfig": {
      "authorizedSites": [Site],
      "authorizedSitesIds": [4],
      "callbackUrl": "abc123",
      "cert": "abc123",
      "defaultRole": Role,
      "defaultRoleId": "4",
      "entryPoint": "xyz789",
      "fetchUrl": TenantConfigSamlFetchUrl,
      "fieldMap": TenantConfigSamlFieldMap,
      "issuer": "abc123",
      "overrideRolesOnUpdate": false,
      "roleMap": [TenantConfigSamlRoleMap]
    }
  }
}

timeSeriesQuery

use timeSeriesQueryBuilder
Response

Returns a String

Arguments
NameDescription
query - String!TimeSeries query string

Example

Query
query TimeSeriesQuery($query: String!) {
  timeSeriesQuery(query: $query)
}
Variables
{"query": "xyz789"}
Response
{"data": {"timeSeriesQuery": "xyz789"}}

timeSeriesQueryBuilder

Response

Returns a String

Arguments
NameDescription
aggregation - TimeSeriesGroupMethods
filters - [TimeSeriesFilter]
startTimeRange - Stringtime relative from now, example -15m represents 15 minutes ago, -1h represents one hour. Default = "now"
stopTimeRange - Stringtime relative from now, example -10m represents 10 minutes ago, -30m represents half an hour. Default = "now"

Example

Query
query TimeSeriesQueryBuilder(
  $aggregation: TimeSeriesGroupMethods,
  $filters: [TimeSeriesFilter],
  $startTimeRange: String,
  $stopTimeRange: String
) {
  timeSeriesQueryBuilder(
    aggregation: $aggregation,
    filters: $filters,
    startTimeRange: $startTimeRange,
    stopTimeRange: $stopTimeRange
  )
}
Variables
{
  "aggregation": TimeSeriesGroupMethods,
  "filters": [TimeSeriesFilter],
  "startTimeRange": "now",
  "stopTimeRange": "now"
}
Response
{
  "data": {
    "timeSeriesQueryBuilder": "xyz789"
  }
}

timesheet

Response

Returns a Timesheet

Arguments
NameDescription
tenant - ID
where - TimesheetWhereUniqueInput!

Example

Query
query Timesheet(
  $tenant: ID,
  $where: TimesheetWhereUniqueInput!
) {
  timesheet(
    tenant: $tenant,
    where: $where
  ) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": TimesheetWhereUniqueInput}
Response
{
  "data": {
    "timesheet": {
      "_id": 4,
      "action": Action,
      "actionId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "duration": 123,
      "finishDate": "2007-12-03T10:15:30Z",
      "issue": IssueInstance,
      "issueId": "4",
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "startDate": "2007-12-03T10:15:30Z",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

timesheetByUser

Response

Returns a TimesheetByUserResult

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TimesheetOrderByInput]
skip - IntDefault = 0
where - TimesheetWhereInput

Example

Query
query TimesheetByUser(
  $limit: Int,
  $orderBy: [TimesheetOrderByInput],
  $skip: Int,
  $where: TimesheetWhereInput
) {
  timesheetByUser(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    found
    timesheets {
      ...TimesheetFragment
    }
  }
}
Variables
{
  "limit": 100,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "where": TimesheetWhereInput
}
Response
{
  "data": {
    "timesheetByUser": {
      "found": 123,
      "timesheets": [Timesheet]
    }
  }
}

timesheetStatistics

Response

Returns a TimesheetStatistics

Arguments
NameDescription
where - TimesheetWhereInput

Example

Query
query TimesheetStatistics($where: TimesheetWhereInput) {
  timesheetStatistics(where: $where) {
    firstTimeEntry
    lastTimeEntry
    numberUsers
    totalMinutes
  }
}
Variables
{"where": TimesheetWhereInput}
Response
{
  "data": {
    "timesheetStatistics": {
      "firstTimeEntry": "2007-12-03",
      "lastTimeEntry": "2007-12-03",
      "numberUsers": 987,
      "totalMinutes": 123
    }
  }
}

timesheetWithDeleted

Response

Returns a Timesheet

Arguments
NameDescription
where - TimesheetWhereUniqueInput!

Example

Query
query TimesheetWithDeleted($where: TimesheetWhereUniqueInput!) {
  timesheetWithDeleted(where: $where) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": TimesheetWhereUniqueInput}
Response
{
  "data": {
    "timesheetWithDeleted": {
      "_id": "4",
      "action": Action,
      "actionId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "duration": 987,
      "finishDate": "2007-12-03T10:15:30Z",
      "issue": IssueInstance,
      "issueId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "startDate": "2007-12-03T10:15:30Z",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

timesheets

Response

Returns [Timesheet]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [TimesheetOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - TimesheetWhereInputDefault = {}

Example

Query
query Timesheets(
  $limit: Int,
  $orderBy: [TimesheetOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: TimesheetWhereInput
) {
  timesheets(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "timesheets": [
      {
        "_id": "4",
        "action": Action,
        "actionId": "4",
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": ["4"],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "duration": 123,
        "finishDate": "2007-12-03T10:15:30Z",
        "issue": IssueInstance,
        "issueId": 4,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "startDate": "2007-12-03T10:15:30Z",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

timesheetsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - TimesheetWhereInputDefault = {}

Example

Query
query TimesheetsCount(
  $tenant: ID,
  $where: TimesheetWhereInput
) {
  timesheetsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"timesheetsCount": 123}}

tool

Response

Returns a Tool

Arguments
NameDescription
tenant - ID
where - ToolWhereUniqueInput!

Example

Query
query Tool(
  $tenant: ID,
  $where: ToolWhereUniqueInput!
) {
  tool(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ToolWhereUniqueInput
}
Response
{
  "data": {
    "tool": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "designation": "xyz789",
      "dimension": ToolDimension,
      "images": [File],
      "imagesIds": ["4"],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "partNumber": "xyz789",
      "protected": true,
      "stockPerStorage": [ToolStockPerStorage],
      "system": true,
      "totalStock": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

toolItem

Response

Returns a ToolItem

Arguments
NameDescription
tenant - ID
where - ToolItemWhereUniqueInput!

Example

Query
query ToolItem(
  $tenant: ID,
  $where: ToolItemWhereUniqueInput!
) {
  toolItem(
    tenant: $tenant,
    where: $where
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{
  "tenant": "4",
  "where": ToolItemWhereUniqueInput
}
Response
{
  "data": {
    "toolItem": {
      "_id": 4,
      "associatedWith": [ToolItem],
      "available": true,
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "customFields": [ToolItemCustomField],
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "hiddenFields": ["abc123"],
      "location": Location,
      "locationId": 4,
      "protected": true,
      "serialNumber": "abc123",
      "status": "IN_MAINTENANCE",
      "system": true,
      "tool": Tool,
      "toolId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usedBy": Account,
      "usedById": "4",
      "usedIn": IssueInstance,
      "usedInId": 4
    }
  }
}

toolItemWithDeleted

Response

Returns a ToolItem

Arguments
NameDescription
where - ToolItemWhereUniqueInput!

Example

Query
query ToolItemWithDeleted($where: ToolItemWhereUniqueInput!) {
  toolItemWithDeleted(where: $where) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{"where": ToolItemWhereUniqueInput}
Response
{
  "data": {
    "toolItemWithDeleted": {
      "_id": "4",
      "associatedWith": [ToolItem],
      "available": true,
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "customFields": [ToolItemCustomField],
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "hiddenFields": ["abc123"],
      "location": Location,
      "locationId": 4,
      "protected": false,
      "serialNumber": "abc123",
      "status": "IN_MAINTENANCE",
      "system": true,
      "tool": Tool,
      "toolId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usedBy": Account,
      "usedById": 4,
      "usedIn": IssueInstance,
      "usedInId": "4"
    }
  }
}

toolItems

Response

Returns [ToolItem]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ToolItemOrderByEnum]
skip - IntDefault = 0
where - ToolItemWhereInput

Example

Query
query ToolItems(
  $limit: Int,
  $orderBy: [ToolItemOrderByEnum],
  $skip: Int,
  $where: ToolItemWhereInput
) {
  toolItems(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    where: $where
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{
  "limit": 100,
  "orderBy": ["_id_ASC"],
  "skip": 0,
  "where": ToolItemWhereInput
}
Response
{
  "data": {
    "toolItems": [
      {
        "_id": 4,
        "associatedWith": [ToolItem],
        "available": true,
        "code": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "customFields": [ToolItemCustomField],
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "hiddenFields": ["xyz789"],
        "location": Location,
        "locationId": "4",
        "protected": false,
        "serialNumber": "xyz789",
        "status": "IN_MAINTENANCE",
        "system": false,
        "tool": Tool,
        "toolId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usedBy": Account,
        "usedById": 4,
        "usedIn": IssueInstance,
        "usedInId": "4"
      }
    ]
  }
}

toolItemsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ToolItemWhereInputDefault = {}

Example

Query
query ToolItemsCount(
  $tenant: ID,
  $where: ToolItemWhereInput
) {
  toolItemsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"toolItemsCount": 123}}

toolItemsLocations

Arguments
NameDescription
toolId - String!

Example

Query
query ToolItemsLocations($toolId: String!) {
  toolItemsLocations(toolId: $toolId) {
    location {
      ...LocationFragment
    }
    toolItemCount
  }
}
Variables
{"toolId": "xyz789"}
Response
{
  "data": {
    "toolItemsLocations": [
      {"location": Location, "toolItemCount": 123}
    ]
  }
}

toolUsage

Response

Returns [MaterialUsage]

Arguments
NameDescription
filters - MaterialUsageFilters
limit - IntDefault = 100
orderBy - [MaterialUsageOrderByEnum]
skip - IntDefault = 0
tool - ID!

Example

Query
query ToolUsage(
  $filters: MaterialUsageFilters,
  $limit: Int,
  $orderBy: [MaterialUsageOrderByEnum],
  $skip: Int,
  $tool: ID!
) {
  toolUsage(
    filters: $filters,
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tool: $tool
  ) {
    ID
    group
    quantity
    task
    taskVariant
    template
    templateVariant
  }
}
Variables
{
  "filters": MaterialUsageFilters,
  "limit": 100,
  "orderBy": ["ID_ASC"],
  "skip": 0,
  "tool": 4
}
Response
{
  "data": {
    "toolUsage": [
      {
        "ID": "xyz789",
        "group": "xyz789",
        "quantity": 987,
        "task": "xyz789",
        "taskVariant": "abc123",
        "template": "abc123",
        "templateVariant": "abc123"
      }
    ]
  }
}

toolWithDeleted

Response

Returns a Tool

Arguments
NameDescription
where - ToolWhereUniqueInput!

Example

Query
query ToolWithDeleted($where: ToolWhereUniqueInput!) {
  toolWithDeleted(where: $where) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": ToolWhereUniqueInput}
Response
{
  "data": {
    "toolWithDeleted": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "designation": "xyz789",
      "dimension": ToolDimension,
      "images": [File],
      "imagesIds": ["4"],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "partNumber": "abc123",
      "protected": false,
      "stockPerStorage": [ToolStockPerStorage],
      "system": true,
      "totalStock": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

tools

Response

Returns [Tool]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ToolOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ToolWhereInputDefault = {}

Example

Query
query Tools(
  $limit: Int,
  $orderBy: [ToolOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ToolWhereInput
) {
  tools(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "tools": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "designation": "xyz789",
        "dimension": ToolDimension,
        "images": [File],
        "imagesIds": ["4"],
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "partNumber": "xyz789",
        "protected": true,
        "stockPerStorage": [ToolStockPerStorage],
        "system": true,
        "totalStock": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

toolsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - ToolWhereInputDefault = {}

Example

Query
query ToolsCount(
  $tenant: ID,
  $where: ToolWhereInput
) {
  toolsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"toolsCount": 123}}

toolsSearch

Response

Returns [Tool]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [ToolOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - ToolWhereInputDefault = {}

Example

Query
query ToolsSearch(
  $limit: Int,
  $orderBy: [ToolOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: ToolWhereInput
) {
  toolsSearch(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "toolsSearch": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "designation": "xyz789",
        "dimension": ToolDimension,
        "images": [File],
        "imagesIds": [4],
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "partNumber": "xyz789",
        "protected": true,
        "stockPerStorage": [ToolStockPerStorage],
        "system": false,
        "totalStock": 987,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

unit

Response

Returns a Unit

Arguments
NameDescription
tenant - ID
where - UnitWhereUniqueInput!

Example

Query
query Unit(
  $tenant: ID,
  $where: UnitWhereUniqueInput!
) {
  unit(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": UnitWhereUniqueInput
}
Response
{
  "data": {
    "unit": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": UnitFolder,
      "folderId": "4",
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "order": 987,
      "protected": true,
      "symbol": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

unitFolder

Response

Returns a UnitFolder

Arguments
NameDescription
tenant - ID
where - UnitFolderWhereUniqueInput!

Example

Query
query UnitFolder(
  $tenant: ID,
  $where: UnitFolderWhereUniqueInput!
) {
  unitFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": UnitFolderWhereUniqueInput
}
Response
{
  "data": {
    "unitFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": UnitFolder,
      "parentId": "4",
      "parentsTree": [UnitFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": true,
      "unitFoldersCount": 123,
      "unitsCount": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

unitFolderWithDeleted

Response

Returns a UnitFolder

Arguments
NameDescription
where - UnitFolderWhereUniqueInput!

Example

Query
query UnitFolderWithDeleted($where: UnitFolderWhereUniqueInput!) {
  unitFolderWithDeleted(where: $where) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": UnitFolderWhereUniqueInput}
Response
{
  "data": {
    "unitFolderWithDeleted": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": UnitFolder,
      "parentId": 4,
      "parentsTree": [UnitFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "unitFoldersCount": 987,
      "unitsCount": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

unitFolders

Response

Returns [UnitFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [UnitFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - UnitFolderWhereInputDefault = {}

Example

Query
query UnitFolders(
  $limit: Int,
  $orderBy: [UnitFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: UnitFolderWhereInput
) {
  unitFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "unitFolders": [
      {
        "_id": "4",
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "name": "abc123",
        "parent": UnitFolder,
        "parentId": 4,
        "parentsTree": [UnitFolder],
        "parentsTreeIds": [4],
        "protected": true,
        "system": false,
        "unitFoldersCount": 987,
        "unitsCount": 987,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

unitFoldersCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - UnitFolderWhereInputDefault = {}

Example

Query
query UnitFoldersCount(
  $tenant: ID,
  $where: UnitFolderWhereInput
) {
  unitFoldersCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"unitFoldersCount": 123}}

unitWithDeleted

Response

Returns a Unit

Arguments
NameDescription
where - UnitWhereUniqueInput!

Example

Query
query UnitWithDeleted($where: UnitWhereUniqueInput!) {
  unitWithDeleted(where: $where) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": UnitWhereUniqueInput}
Response
{
  "data": {
    "unitWithDeleted": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": UnitFolder,
      "folderId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "order": 123,
      "protected": true,
      "symbol": "abc123",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

units

Response

Returns [Unit]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [UnitOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - UnitWhereInputDefault = {}

Example

Query
query Units(
  $limit: Int,
  $orderBy: [UnitOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: UnitWhereInput
) {
  units(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "units": [
      {
        "_id": 4,
        "archived": true,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": "4",
        "convert": [UnitConvert],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "folder": UnitFolder,
        "folderId": 4,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "order": 987,
        "protected": false,
        "symbol": "xyz789",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

unitsAndFolders

Response

Returns [UnitOrFolder]

Arguments
NameDescription
limit - IntDefault = 20
skip - IntDefault = 0
templateFolderOrderBy - [UnitFolderOrderByInput!]!
templateFolderWhere - UnitFolderWhereInput
templateOrderBy - [UnitOrderByInput!]!
templateWhere - UnitWhereInput
tenant - ID

Example

Query
query UnitsAndFolders(
  $limit: Int,
  $skip: Int,
  $templateFolderOrderBy: [UnitFolderOrderByInput!]!,
  $templateFolderWhere: UnitFolderWhereInput,
  $templateOrderBy: [UnitOrderByInput!]!,
  $templateWhere: UnitWhereInput,
  $tenant: ID
) {
  unitsAndFolders(
    limit: $limit,
    skip: $skip,
    templateFolderOrderBy: $templateFolderOrderBy,
    templateFolderWhere: $templateFolderWhere,
    templateOrderBy: $templateOrderBy,
    templateWhere: $templateWhere,
    tenant: $tenant
  ) {
    ... on Unit {
      ...UnitFragment
    }
    ... on UnitFolder {
      ...UnitFolderFragment
    }
  }
}
Variables
{
  "limit": 20,
  "skip": 0,
  "templateFolderOrderBy": ["_id_ASC"],
  "templateFolderWhere": UnitFolderWhereInput,
  "templateOrderBy": ["_id_ASC"],
  "templateWhere": UnitWhereInput,
  "tenant": "4"
}
Response
{"data": {"unitsAndFolders": [Unit]}}

unitsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - UnitWhereInputDefault = {}

Example

Query
query UnitsCount(
  $tenant: ID,
  $where: UnitWhereInput
) {
  unitsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": {}}
Response
{"data": {"unitsCount": 123}}

widget

Response

Returns a Widget

Arguments
NameDescription
tenant - ID
where - WidgetWhereUniqueInput!

Example

Query
query Widget(
  $tenant: ID,
  $where: WidgetWhereUniqueInput!
) {
  widget(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": WidgetWhereUniqueInput}
Response
{
  "data": {
    "widget": {
      "_id": 4,
      "chart": "bar",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "dashboard": 4,
      "data": {},
      "dataset": WidgetDataset,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "draft": "4",
      "layout": WidgetLayout,
      "name": "abc123",
      "palette": ["abc123"],
      "preset": "abc123",
      "protected": false,
      "showLegend": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

widgetWithDeleted

Response

Returns a Widget

Arguments
NameDescription
where - WidgetWhereUniqueInput!

Example

Query
query WidgetWithDeleted($where: WidgetWhereUniqueInput!) {
  widgetWithDeleted(where: $where) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"where": WidgetWhereUniqueInput}
Response
{
  "data": {
    "widgetWithDeleted": {
      "_id": "4",
      "chart": "bar",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "dashboard": "4",
      "data": {},
      "dataset": WidgetDataset,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "draft": "4",
      "layout": WidgetLayout,
      "name": "xyz789",
      "palette": ["xyz789"],
      "preset": "xyz789",
      "protected": true,
      "showLegend": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

widgets

Response

Returns [Widget]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [WidgetOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - WidgetWhereInputDefault = {}

Example

Query
query Widgets(
  $limit: Int,
  $orderBy: [WidgetOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: WidgetWhereInput
) {
  widgets(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "limit": 100,
  "orderBy": [""],
  "skip": 0,
  "tenant": "4",
  "where": {}
}
Response
{
  "data": {
    "widgets": [
      {
        "_id": 4,
        "chart": "bar",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "dashboard": 4,
        "data": {},
        "dataset": WidgetDataset,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "draft": 4,
        "layout": WidgetLayout,
        "name": "xyz789",
        "palette": ["abc123"],
        "preset": "xyz789",
        "protected": false,
        "showLegend": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

widgetsCount

Response

Returns an Int

Arguments
NameDescription
tenant - ID
where - WidgetWhereInputDefault = {}

Example

Query
query WidgetsCount(
  $tenant: ID,
  $where: WidgetWhereInput
) {
  widgetsCount(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": "4", "where": {}}
Response
{"data": {"widgetsCount": 987}}

Mutations

acceptIssue

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!

Example

Query
mutation AcceptIssue($_id: ID!) {
  acceptIssue(_id: $_id) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "acceptIssue": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": false,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["abc123"],
      "protected": false,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

accountCreateFilter

Response

Returns an Account

Arguments
NameDescription
active - AccountFilterActiveCreateInput
columns - [String]
context - String
history - AccountFilterHistoryCreateInput
labelValues - [ID!]!
name - String!
planned - AccountFilterPlannedCreateInput

Example

Query
mutation AccountCreateFilter(
  $active: AccountFilterActiveCreateInput,
  $columns: [String],
  $context: String,
  $history: AccountFilterHistoryCreateInput,
  $labelValues: [ID!]!,
  $name: String!,
  $planned: AccountFilterPlannedCreateInput
) {
  accountCreateFilter(
    active: $active,
    columns: $columns,
    context: $context,
    history: $history,
    labelValues: $labelValues,
    name: $name,
    planned: $planned
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "active": AccountFilterActiveCreateInput,
  "columns": ["xyz789"],
  "context": "xyz789",
  "history": AccountFilterHistoryCreateInput,
  "labelValues": [4],
  "name": "abc123",
  "planned": AccountFilterPlannedCreateInput
}
Response
{
  "data": {
    "accountCreateFilter": {
      "ARUser": false,
      "_id": "4",
      "actions": 987,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": false,
      "isContact": true,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

accountDeleteFilter

Response

Returns an Account

Arguments
NameDescription
_id - ID!

Example

Query
mutation AccountDeleteFilter($_id: ID!) {
  accountDeleteFilter(_id: $_id) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "accountDeleteFilter": {
      "ARUser": false,
      "_id": "4",
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": true,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

accountUpdateFilter

Response

Returns an Account

Arguments
NameDescription
_id - ID!
data - AccountFilterUpdateInput!

Example

Query
mutation AccountUpdateFilter(
  $_id: ID!,
  $data: AccountFilterUpdateInput!
) {
  accountUpdateFilter(
    _id: $_id,
    data: $data
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_id": 4, "data": AccountFilterUpdateInput}
Response
{
  "data": {
    "accountUpdateFilter": {
      "ARUser": false,
      "_id": 4,
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": true,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "xyz789"
    }
  }
}

acknowledgeAllPushNotification

Response

Returns an Int

Example

Query
mutation AcknowledgeAllPushNotification {
  acknowledgeAllPushNotification
}
Response
{"data": {"acknowledgeAllPushNotification": 987}}

acknowledgePushNotification

Response

Returns a PushNotification

Arguments
NameDescription
where - PushNotificationWhereUniqueInput

Example

Query
mutation AcknowledgePushNotification($where: PushNotificationWhereUniqueInput) {
  acknowledgePushNotification(where: $where) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"where": PushNotificationWhereUniqueInput}
Response
{
  "data": {
    "acknowledgePushNotification": {
      "_id": 4,
      "acknowledged": false,
      "body": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "data": PushNotificationDatum,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": ["4"],
      "protected": true,
      "system": true,
      "title": "xyz789",
      "to": Account,
      "toId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "viewed": false
    }
  }
}

activateAccount

Response

Returns an Account

Arguments
NameDescription
_id - ID

Example

Query
mutation ActivateAccount($_id: ID) {
  activateAccount(_id: $_id) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_id": 4}
Response
{
  "data": {
    "activateAccount": {
      "ARUser": true,
      "_id": 4,
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": true,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

activateManyAccounts

Response

Returns [Account]

Arguments
NameDescription
_ids - [ID!]!
tenant - ID

Example

Query
mutation ActivateManyAccounts(
  $_ids: [ID!]!,
  $tenant: ID
) {
  activateManyAccounts(
    _ids: $_ids,
    tenant: $tenant
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_ids": ["4"], "tenant": 4}
Response
{
  "data": {
    "activateManyAccounts": [
      {
        "ARUser": true,
        "_id": "4",
        "actions": 987,
        "agoraUid": "abc123",
        "authorizedSites": [Site],
        "authorizedSitesFlattened": [Site],
        "authorizedSitesIds": ["4"],
        "chat": 123,
        "clientId": 4,
        "clientMixedRealityEnabled": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "defaultTimeZone": "xyz789",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "email": "xyz789",
        "feed": 987,
        "filters": [AccountFilter],
        "firstLogin": true,
        "folder": AccountFolder,
        "folderId": 4,
        "gps": [123.45],
        "impersonatedBy": "4",
        "impersonatedById": "4",
        "inputs": [Input],
        "isActive": true,
        "isContact": false,
        "isPlatformAdmin": true,
        "issues": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lastLogin": "2007-12-03T10:15:30Z",
        "mobileTabs": ["xyz789"],
        "myClearances": [MyClearances],
        "name": "xyz789",
        "onBoarding": AccountOnBoarding,
        "photo": "abc123",
        "preferences": AccountPreferences,
        "protected": true,
        "recoveryEmail": "abc123",
        "requiresPasswordReset": false,
        "roles": [Role],
        "rolesIds": [4],
        "seenFeatures": {},
        "ssoLogin": true,
        "system": false,
        "tabs": [Tab],
        "teams": [Team],
        "template": AccountTemplate,
        "templateId": 4,
        "tenantId": "4",
        "tutorialCompleted": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "username": "abc123"
      }
    ]
  }
}

addAlarmAccount

Response

Returns an Alarm

Arguments
NameDescription
account - ID!
alarm - String!

Example

Query
mutation AddAlarmAccount(
  $account: ID!,
  $alarm: String!
) {
  addAlarmAccount(
    account: $account,
    alarm: $alarm
  ) {
    _id
    accounts {
      ...AccountFragment
    }
    accountsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    id
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "account": "4",
  "alarm": "xyz789"
}
Response
{
  "data": {
    "addAlarmAccount": {
      "_id": "4",
      "accounts": [Account],
      "accountsIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "id": "abc123",
      "name": "xyz789",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

addChatGroupParticipants

Response

Returns a ChatRoom

Arguments
NameDescription
accounts - [ID!]!
where - ChatRoomWhereUniqueInput!

Example

Query
mutation AddChatGroupParticipants(
  $accounts: [ID!]!,
  $where: ChatRoomWhereUniqueInput!
) {
  addChatGroupParticipants(
    accounts: $accounts,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "accounts": ["4"],
  "where": ChatRoomWhereUniqueInput
}
Response
{
  "data": {
    "addChatGroupParticipants": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "xyz789",
      "previewedBy": [Account],
      "previewedByIds": [4],
      "protected": true,
      "room": Room,
      "roomId": "xyz789",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

addFilestoMediaLibrary

Response

Returns an AddFileToMediaLibraryInfo

Arguments
NameDescription
ids - [ID]!

Example

Query
mutation AddFilestoMediaLibrary($ids: [ID]!) {
  addFilestoMediaLibrary(ids: $ids) {
    updated
  }
}
Variables
{"ids": ["4"]}
Response
{"data": {"addFilestoMediaLibrary": {"updated": 123}}}

addInputTemplateDraft

Response

Returns an Input

Arguments
NameDescription
data - InputUpdateInput!
issueTemplateDraft - ID!
onResponse - ID
taskTemplateGroup - ID!
taskToUpdate - ID!

Example

Query
mutation AddInputTemplateDraft(
  $data: InputUpdateInput!,
  $issueTemplateDraft: ID!,
  $onResponse: ID,
  $taskTemplateGroup: ID!,
  $taskToUpdate: ID!
) {
  addInputTemplateDraft(
    data: $data,
    issueTemplateDraft: $issueTemplateDraft,
    onResponse: $onResponse,
    taskTemplateGroup: $taskTemplateGroup,
    taskToUpdate: $taskToUpdate
  ) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{
  "data": InputUpdateInput,
  "issueTemplateDraft": "4",
  "onResponse": "4",
  "taskTemplateGroup": "4",
  "taskToUpdate": 4
}
Response
{
  "data": {
    "addInputTemplateDraft": {
      "_id": "4",
      "actions": [Action],
      "container": "abc123",
      "date": InputDate,
      "datetime": InputDatetime,
      "description": "xyz789",
      "element": InputElement,
      "file": InputFile,
      "getURLsOfDescriptionFiles": "xyz789",
      "instruction": InputInstruction,
      "isMutable": false,
      "labelValue": InputLabelValue,
      "log": [InputLog],
      "name": "abc123",
      "note": InputNote,
      "number": InputNumber,
      "order": 987,
      "required": false,
      "signature": InputSignature,
      "site": InputSite,
      "string": InputString,
      "table": InputTable,
      "tag": "abc123",
      "tags": InputTag,
      "time": InputTime,
      "tool": InputTool,
      "tooltip": "xyz789",
      "type": "date",
      "value": InputDate
    }
  }
}

addLogMessageToAction

Response

Returns an Action

Arguments
NameDescription
files - [ID]
message - String!
where - ActionWhereUniqueInput!

Example

Query
mutation AddLogMessageToAction(
  $files: [ID],
  $message: String!,
  $where: ActionWhereUniqueInput!
) {
  addLogMessageToAction(
    files: $files,
    message: $message,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "files": ["4"],
  "message": "abc123",
  "where": ActionWhereUniqueInput
}
Response
{
  "data": {
    "addLogMessageToAction": {
      "ID": 123,
      "_id": 4,
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "isLocked": false,
      "issueName": "xyz789",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionLog],
      "name": "abc123",
      "protected": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": 4,
      "status": "CANT_DO",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

addRequestLog

Response

Returns a Request

Arguments
NameDescription
files - [ID]
message - String!
requestId - ID!

Example

Query
mutation AddRequestLog(
  $files: [ID],
  $message: String!,
  $requestId: ID!
) {
  addRequestLog(
    files: $files,
    message: $message,
    requestId: $requestId
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "files": ["4"],
  "message": "abc123",
  "requestId": 4
}
Response
{
  "data": {
    "addRequestLog": {
      "_id": 4,
      "approved": [Account],
      "approvedIds": [4],
      "approvers": [Account],
      "approversIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": [4],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": "4",
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

approveIssue

Response

Returns an IssueInstance

Arguments
NameDescription
data - IssueApprovalInput!
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation ApproveIssue(
  $data: IssueApprovalInput!,
  $where: IssueInstanceWhereUniqueInput!
) {
  approveIssue(
    data: $data,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "data": IssueApprovalInput,
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "approveIssue": {
      "_id": "4",
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": false,
      "customArConfiguration": true,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

archiveManyIssueTemplates

Arguments
NameDescription
archive - Boolean!
folders - [ID]
where - IssueTemplateWhereInput!

Example

Query
mutation ArchiveManyIssueTemplates(
  $archive: Boolean!,
  $folders: [ID],
  $where: IssueTemplateWhereInput!
) {
  archiveManyIssueTemplates(
    archive: $archive,
    folders: $folders,
    where: $where
  ) {
    templates {
      ...IssueTemplateFragment
    }
    templatesToRoot
  }
}
Variables
{
  "archive": false,
  "folders": ["4"],
  "where": IssueTemplateWhereInput
}
Response
{
  "data": {
    "archiveManyIssueTemplates": {
      "templates": [IssueTemplate],
      "templatesToRoot": ["xyz789"]
    }
  }
}

assistLogin

Response

Returns a String

Example

Query
mutation AssistLogin {
  assistLogin
}
Response
{"data": {"assistLogin": "abc123"}}

cancelIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation CancelIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  cancelIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "cancelIssue": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": true,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

cancelJob

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
mutation CancelJob(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  cancelJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"tenant": 4, "where": JobWhereUniqueInput}
Response
{
  "data": {
    "cancelJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "xyz789",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

cancelWorkPackage

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
mutation CancelWorkPackage(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  cancelWorkPackage(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "tenant": "4",
  "where": JobWhereUniqueInput
}
Response
{
  "data": {
    "cancelWorkPackage": {
      "_id": 4,
      "data": JobData,
      "failReason": "xyz789",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "xyz789",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

changeInputsResponsibles

Description

assign responsibles for approving this Site/Element's inputs

Response

Returns a GenericApproval

Arguments
NameDescription
propagateDownwards - Booleanwhether this change should propagate to all Sites/elements below in the hierarchy. Default = false
responsibles - InputsApprovalResponsibles
where - SiteWhereUniqueInput!

Example

Query
mutation ChangeInputsResponsibles(
  $propagateDownwards: Boolean,
  $responsibles: InputsApprovalResponsibles,
  $where: SiteWhereUniqueInput!
) {
  changeInputsResponsibles(
    propagateDownwards: $propagateDownwards,
    responsibles: $responsibles,
    where: $where
  ) {
    _id
    awaitingApproval
    coordinates
    description
    image {
      ...FileFragment
    }
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    name
    needsApproval
    pendingAt
    pendingInputs {
      ...InputFragment
    }
    responsibles {
      ...ResponsiblesFragment
    }
    tags {
      ...ElementTagFragment
    }
  }
}
Variables
{
  "propagateDownwards": false,
  "responsibles": InputsApprovalResponsibles,
  "where": SiteWhereUniqueInput
}
Response
{
  "data": {
    "changeInputsResponsibles": {
      "_id": 4,
      "awaitingApproval": false,
      "coordinates": [123.45],
      "description": "xyz789",
      "image": File,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "name": "xyz789",
      "needsApproval": false,
      "pendingAt": "2007-12-03",
      "pendingInputs": [Input],
      "responsibles": Responsibles,
      "tags": [ElementTag]
    }
  }
}

changeIssueExecutionDate

Response

Returns an IssueInstance

Example

Query
mutation ChangeIssueExecutionDate(
  $data: IssueChangeDateExecutionInput!,
  $where: IssueInstanceWhereUniqueInput!
) {
  changeIssueExecutionDate(
    data: $data,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "data": IssueChangeDateExecutionInput,
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "changeIssueExecutionDate": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": true,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": true,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

changeIssueState

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
action - String!
finishedByConditionalInput - Boolean
note - String
timestamp - DateTime
token - String

Example

Query
mutation ChangeIssueState(
  $_id: ID!,
  $action: String!,
  $finishedByConditionalInput: Boolean,
  $note: String,
  $timestamp: DateTime,
  $token: String
) {
  changeIssueState(
    _id: $_id,
    action: $action,
    finishedByConditionalInput: $finishedByConditionalInput,
    note: $note,
    timestamp: $timestamp,
    token: $token
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "_id": 4,
  "action": "abc123",
  "finishedByConditionalInput": false,
  "note": "abc123",
  "timestamp": "2007-12-03T10:15:30Z",
  "token": "abc123"
}
Response
{
  "data": {
    "changeIssueState": {
      "_id": 4,
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["abc123"],
      "protected": true,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

changeLabelValuesOrder

Response

Returns [LabelValue]

Arguments
NameDescription
labelId - ID!
labelValues - [labelValuesReorder]

Example

Query
mutation ChangeLabelValuesOrder(
  $labelId: ID!,
  $labelValues: [labelValuesReorder]
) {
  changeLabelValuesOrder(
    labelId: $labelId,
    labelValues: $labelValues
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{"labelId": 4, "labelValues": [labelValuesReorder]}
Response
{
  "data": {
    "changeLabelValuesOrder": [
      {
        "_id": 4,
        "backgroundColor": "xyz789",
        "color": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "label": Label,
        "labelId": 4,
        "order": 123,
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "value": "abc123"
      }
    ]
  }
}

changeLabelsOrder

Response

Returns [Label]

Arguments
NameDescription
_ids - [ID!]!

Example

Query
mutation ChangeLabelsOrder($_ids: [ID!]!) {
  changeLabelsOrder(_ids: $_ids) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": ["4"]}
Response
{
  "data": {
    "changeLabelsOrder": [
      {
        "_id": 4,
        "context": "Account",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "icon": "xyz789",
        "labelValues": [LabelValue],
        "name": "xyz789",
        "order": 987,
        "protected": true,
        "singleSelection": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

changeManyInputsApprovals

Response

Returns [GenericApproval]

Arguments
NameDescription
approved - Boolean!
fields - [ApprovalsWhereInput!]!

Example

Query
mutation ChangeManyInputsApprovals(
  $approved: Boolean!,
  $fields: [ApprovalsWhereInput!]!
) {
  changeManyInputsApprovals(
    approved: $approved,
    fields: $fields
  ) {
    _id
    awaitingApproval
    coordinates
    description
    image {
      ...FileFragment
    }
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    name
    needsApproval
    pendingAt
    pendingInputs {
      ...InputFragment
    }
    responsibles {
      ...ResponsiblesFragment
    }
    tags {
      ...ElementTagFragment
    }
  }
}
Variables
{"approved": true, "fields": [ApprovalsWhereInput]}
Response
{
  "data": {
    "changeManyInputsApprovals": [
      {
        "_id": 4,
        "awaitingApproval": false,
        "coordinates": [987.65],
        "description": "abc123",
        "image": File,
        "inputs": [Input],
        "labelValues": [LabelValue],
        "name": "xyz789",
        "needsApproval": false,
        "pendingAt": "2007-12-03",
        "pendingInputs": [Input],
        "responsibles": Responsibles,
        "tags": [ElementTag]
      }
    ]
  }
}

changePassword

Response

Returns a Boolean

Arguments
NameDescription
newPassword - String!
password - String!

Example

Query
mutation ChangePassword(
  $newPassword: String!,
  $password: String!
) {
  changePassword(
    newPassword: $newPassword,
    password: $password
  )
}
Variables
{
  "newPassword": "xyz789",
  "password": "xyz789"
}
Response
{"data": {"changePassword": true}}

changeRequestApprovers

Response

Returns a Request

Arguments
NameDescription
approvers - [ID]
requestId - ID

Example

Query
mutation ChangeRequestApprovers(
  $approvers: [ID],
  $requestId: ID
) {
  changeRequestApprovers(
    approvers: $approvers,
    requestId: $requestId
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"approvers": [4], "requestId": "4"}
Response
{
  "data": {
    "changeRequestApprovers": {
      "_id": 4,
      "approved": [Account],
      "approvedIds": ["4"],
      "approvers": [Account],
      "approversIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": ["4"],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": 4,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

changeRequestStatus

Response

Returns a Request

Arguments
NameDescription
comment - String
requestId - ID
status - RequestStatusInputType

Example

Query
mutation ChangeRequestStatus(
  $comment: String,
  $requestId: ID,
  $status: RequestStatusInputType
) {
  changeRequestStatus(
    comment: $comment,
    requestId: $requestId,
    status: $status
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "comment": "abc123",
  "requestId": "4",
  "status": "Approved"
}
Response
{
  "data": {
    "changeRequestStatus": {
      "_id": 4,
      "approved": [Account],
      "approvedIds": ["4"],
      "approvers": [Account],
      "approversIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": [4],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": 4,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

changeTaskState

Response

Returns a Task

Arguments
NameDescription
_id - ID!
action - String!
timestamp - DateTime
token - String

Example

Query
mutation ChangeTaskState(
  $_id: ID!,
  $action: String!,
  $timestamp: DateTime,
  $token: String
) {
  changeTaskState(
    _id: $_id,
    action: $action,
    timestamp: $timestamp,
    token: $token
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{
  "_id": 4,
  "action": "xyz789",
  "timestamp": "2007-12-03T10:15:30Z",
  "token": "xyz789"
}
Response
{
  "data": {
    "changeTaskState": {
      "_id": 4,
      "advancedLabelSelection": TaskAdvancedLabelSelection,
      "arConfiguration": TaskArConfiguration,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedMaterials": [TaskAssignedMaterial],
      "assignedSkills": [TaskAssignedSkill],
      "assignedTools": [TaskAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "estimatedDuration": 987,
      "executedBy": [Account],
      "executedByIds": ["4"],
      "executionInputs": [Input],
      "inputs": [Input],
      "isActiveByOnResponse": true,
      "isLocked": false,
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "onResponseId": "4",
      "order": 123,
      "originalTaskId": "4",
      "parentsTree": [4],
      "possibleActions": ["xyz789"],
      "remarks": [TaskRemark],
      "score": TaskScore,
      "site": Site,
      "siteId": 4,
      "stateMachineInstance": StateMachineInstance,
      "taskTemplate": 4,
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

cloneFile

Response

Returns a File

Arguments
NameDescription
tenant - ID
where - FileWhereUniqueInput!

Example

Query
mutation CloneFile(
  $tenant: ID,
  $where: FileWhereUniqueInput!
) {
  cloneFile(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{"tenant": 4, "where": FileWhereUniqueInput}
Response
{
  "data": {
    "cloneFile": {
      "_id": "4",
      "accessToken": "abc123",
      "awsId": "abc123",
      "comment": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "abc123",
      "hasThumbnail": true,
      "mime": "abc123",
      "name": "xyz789",
      "path": "xyz789",
      "protected": false,
      "size": 123.45,
      "system": true,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "uploadedFromLibrary": true
    }
  }
}

closeAlert

Response

Returns an Alert

Arguments
NameDescription
data - InputUpdateInput
where - AlertWhereUniqueInput

Example

Query
mutation CloseAlert(
  $data: InputUpdateInput,
  $where: AlertWhereUniqueInput
) {
  closeAlert(
    data: $data,
    where: $where
  ) {
    _id
    closedAt
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    input {
      ...InputFragment
    }
    issue {
      ...IssueInstanceFragment
    }
    issueId
    log {
      ...AlertLogFragment
    }
    name
    protected
    site {
      ...SiteFragment
    }
    siteId
    system
    task
    taskGroup
    trigger {
      ...AlertTriggerFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": InputUpdateInput,
  "where": AlertWhereUniqueInput
}
Response
{
  "data": {
    "closeAlert": {
      "_id": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "element": Element,
      "elementId": "4",
      "input": Input,
      "issue": IssueInstance,
      "issueId": 4,
      "log": [AlertLog],
      "name": "xyz789",
      "protected": true,
      "site": Site,
      "siteId": 4,
      "system": false,
      "task": "4",
      "taskGroup": "4",
      "trigger": AlertTrigger,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createAccount

Response

Returns an Account

Arguments
NameDescription
data - AccountCreateInput!
tenant - ID

Example

Query
mutation CreateAccount(
  $data: AccountCreateInput!,
  $tenant: ID
) {
  createAccount(
    data: $data,
    tenant: $tenant
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"data": AccountCreateInput, "tenant": 4}
Response
{
  "data": {
    "createAccount": {
      "ARUser": false,
      "_id": 4,
      "actions": 123,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 987,
      "clientId": "4",
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "abc123",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

createAccountByInvite

Response

Returns an Account

Arguments
NameDescription
domain - String!
password - String!
repeatPassword - String!
token - String!

Example

Query
mutation CreateAccountByInvite(
  $domain: String!,
  $password: String!,
  $repeatPassword: String!,
  $token: String!
) {
  createAccountByInvite(
    domain: $domain,
    password: $password,
    repeatPassword: $repeatPassword,
    token: $token
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "domain": "abc123",
  "password": "xyz789",
  "repeatPassword": "xyz789",
  "token": "xyz789"
}
Response
{
  "data": {
    "createAccountByInvite": {
      "ARUser": true,
      "_id": 4,
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

createAccountFolder

Response

Returns an AccountFolder

Arguments
NameDescription
data - AccountFolderCreateInput!
tenant - ID

Example

Query
mutation CreateAccountFolder(
  $data: AccountFolderCreateInput!,
  $tenant: ID
) {
  createAccountFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AccountFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createAccountFolder": {
      "_id": 4,
      "accountFoldersCount": 987,
      "accountsCount": 987,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": AccountFolder,
      "parentId": 4,
      "parentsTree": [AccountFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createAccountTemplateFolder

Response

Returns an AccountTemplateFolder

Arguments
NameDescription
data - AccountTemplateFolderCreateInput!
tenant - ID

Example

Query
mutation CreateAccountTemplateFolder(
  $data: AccountTemplateFolderCreateInput!,
  $tenant: ID
) {
  createAccountTemplateFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": AccountTemplateFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createAccountTemplateFolder": {
      "_id": "4",
      "accountTemplateFoldersCount": 123,
      "accountTemplatesCount": 123,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": AccountTemplateFolder,
      "parentId": "4",
      "parentsTree": [AccountTemplateFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createAction

Response

Returns an Action

Arguments
NameDescription
data - ActionCreateInput!
tenant - ID
timestamp - DateTime

Example

Query
mutation CreateAction(
  $data: ActionCreateInput!,
  $tenant: ID,
  $timestamp: DateTime
) {
  createAction(
    data: $data,
    tenant: $tenant,
    timestamp: $timestamp
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ActionCreateInput,
  "tenant": "4",
  "timestamp": "2007-12-03T10:15:30Z"
}
Response
{
  "data": {
    "createAction": {
      "ID": 987,
      "_id": 4,
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": 4,
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "isLocked": false,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": 4,
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createActionDraft

Response

Returns an ActionDraft

Arguments
NameDescription
data - ActionDraftCreateInput!
tenant - ID

Example

Query
mutation CreateActionDraft(
  $data: ActionDraftCreateInput!,
  $tenant: ID
) {
  createActionDraft(
    data: $data,
    tenant: $tenant
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ActionDraftCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createActionDraft": {
      "ID": 987,
      "_id": "4",
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": ActionDraftDueDate,
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "issueName": "abc123",
      "issues": [ActionDraftIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionDraftLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createAnchor

Response

Returns an Anchor

Arguments
NameDescription
data - AnchorCreateInput!
tenant - ID

Example

Query
mutation CreateAnchor(
  $data: AnchorCreateInput!,
  $tenant: ID
) {
  createAnchor(
    data: $data,
    tenant: $tenant
  ) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AnchorCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createAnchor": {
      "_id": "4",
      "area": Area,
      "areaId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "spatialAnchorId": "xyz789",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createAnchorImage

Response

Returns an AnchorImage

Arguments
NameDescription
data - AnchorImageCreateInput!
tenant - ID

Example

Query
mutation CreateAnchorImage(
  $data: AnchorImageCreateInput!,
  $tenant: ID
) {
  createAnchorImage(
    data: $data,
    tenant: $tenant
  ) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": AnchorImageCreateInput, "tenant": 4}
Response
{
  "data": {
    "createAnchorImage": {
      "_id": 4,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "height": 123.45,
      "markers": [Marker],
      "markersCount": 123,
      "name": "abc123",
      "photo": File,
      "photoId": 4,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createArConfiguration

Response

Returns an ArConfiguration

Arguments
NameDescription
data - ArConfigurationCreateInput!
tenant - ID

Example

Query
mutation CreateArConfiguration(
  $data: ArConfigurationCreateInput!,
  $tenant: ID
) {
  createArConfiguration(
    data: $data,
    tenant: $tenant
  ) {
    _id
    blockedMarkersColor
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    finishedMarkersColor
    markersOnFinishingTask
    markersSize
    markersToShow
    markersType
    notSequentialMarkersColor
    protected
    sequentialMarkersColor
    system
    timerFinishTask
    typeOfInput
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ArConfigurationCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createArConfiguration": {
      "_id": 4,
      "blockedMarkersColor": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "finishedMarkersColor": "abc123",
      "markersOnFinishingTask": "CLOSE",
      "markersSize": 987,
      "markersToShow": "ALL",
      "markersType": "ARROW",
      "notSequentialMarkersColor": "abc123",
      "protected": true,
      "sequentialMarkersColor": "xyz789",
      "system": true,
      "timerFinishTask": "FIVESECONDS",
      "typeOfInput": "BASIC",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createArea

Response

Returns an Area

Arguments
NameDescription
data - AreaCreateInput!
tenant - ID

Example

Query
mutation CreateArea(
  $data: AreaCreateInput!,
  $tenant: ID
) {
  createArea(
    data: $data,
    tenant: $tenant
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AreaCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createArea": {
      "_id": 4,
      "anchors": [Anchor],
      "anchorsIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": AreaFolder,
      "folderId": "4",
      "name": "xyz789",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createAreaFolder

Response

Returns an AreaFolder

Arguments
NameDescription
data - AreaFolderCreateInput!
tenant - ID

Example

Query
mutation CreateAreaFolder(
  $data: AreaFolderCreateInput!,
  $tenant: ID
) {
  createAreaFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AreaFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createAreaFolder": {
      "_id": 4,
      "areaFoldersCount": 987,
      "areasCount": 987,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": AreaFolder,
      "parentId": "4",
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createBasicAuthToken

Response

Returns an AccessToken

Example

Query
mutation CreateBasicAuthToken {
  createBasicAuthToken {
    _id
    account {
      ...AccountFragment
    }
    accountId
    assistExp
    assistToken
    createdAt
    exp
    impersonatedBy {
      ...AccountFragment
    }
    impersonatedById
    redirectUrl
    updatedAt
  }
}
Response
{
  "data": {
    "createBasicAuthToken": {
      "_id": "xyz789",
      "account": Account,
      "accountId": "4",
      "assistExp": 123.45,
      "assistToken": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "exp": 123.45,
      "impersonatedBy": Account,
      "impersonatedById": "4",
      "redirectUrl": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

createChatMessage

Response

Returns a ChatMessage

Arguments
NameDescription
data - ChatMessageCreateInput!
tenant - ID

Example

Query
mutation CreateChatMessage(
  $data: ChatMessageCreateInput!,
  $tenant: ID
) {
  createChatMessage(
    data: $data,
    tenant: $tenant
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ChatMessageCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createChatMessage": {
      "_id": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": [4],
      "important": true,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": true,
      "protected": true,
      "receivedBy": [Account],
      "receivedByIds": [4],
      "removed": true,
      "replyTo": ChatMessage,
      "replyToId": 4,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "system": false,
      "text": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createChatRoom

Response

Returns a ChatRoom

Arguments
NameDescription
data - ChatRoomCreateInput!
tenant - ID

Example

Query
mutation CreateChatRoom(
  $data: ChatRoomCreateInput!,
  $tenant: ID
) {
  createChatRoom(
    data: $data,
    tenant: $tenant
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ChatRoomCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createChatRoom": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "abc123",
      "previewedBy": [Account],
      "previewedByIds": [4],
      "protected": false,
      "room": Room,
      "roomId": "abc123",
      "system": true,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createComment

Response

Returns a Comment

Arguments
NameDescription
data - CommentCreateInput!

Example

Query
mutation CreateComment($data: CommentCreateInput!) {
  createComment(data: $data) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": CommentCreateInput}
Response
{
  "data": {
    "createComment": {
      "_id": 4,
      "content": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": 4,
      "rootReplies": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createContact

Response

Returns a Contact

Arguments
NameDescription
userContactId - String!

Example

Query
mutation CreateContact($userContactId: String!) {
  createContact(userContactId: $userContactId) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{"userContactId": "xyz789"}
Response
{
  "data": {
    "createContact": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "user": Account,
      "userContact": Account,
      "userContactId": 4,
      "userId": "4"
    }
  }
}

createContacts

Response

Returns [Contact]

Arguments
NameDescription
userContactIds - [String!]!

Example

Query
mutation CreateContacts($userContactIds: [String!]!) {
  createContacts(userContactIds: $userContactIds) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{"userContactIds": ["abc123"]}
Response
{
  "data": {
    "createContacts": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "protected": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "user": Account,
        "userContact": Account,
        "userContactId": "4",
        "userId": 4
      }
    ]
  }
}

createDashboard

Response

Returns a Dashboard

Arguments
NameDescription
data - DashboardCreateInput!
tenant - ID

Example

Query
mutation CreateDashboard(
  $data: DashboardCreateInput!,
  $tenant: ID
) {
  createDashboard(
    data: $data,
    tenant: $tenant
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    default
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...DashboardFolderFragment
    }
    folderId
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"data": DashboardCreateInput, "tenant": 4}
Response
{
  "data": {
    "createDashboard": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "autoRefresh": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "default": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": DashboardFolder,
      "folderId": 4,
      "name": "abc123",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "widgets": [Widget]
    }
  }
}

createDashboardFolder

Response

Returns a DashboardFolder

Arguments
NameDescription
data - DashboardFolderCreateInput!
tenant - ID

Example

Query
mutation CreateDashboardFolder(
  $data: DashboardFolderCreateInput!,
  $tenant: ID
) {
  createDashboardFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboardFoldersCount
    dashboardsCount
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...DashboardFolderFragment
    }
    parentId
    parentsTree {
      ...DashboardFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": DashboardFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createDashboardFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "dashboardFoldersCount": 123,
      "dashboardsCount": 123,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": DashboardFolder,
      "parentId": "4",
      "parentsTree": [DashboardFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createDevice

Response

Returns a Device

Arguments
NameDescription
data - DeviceCreateInput!
tenant - ID

Example

Query
mutation CreateDevice(
  $data: DeviceCreateInput!,
  $tenant: ID
) {
  createDevice(
    data: $data,
    tenant: $tenant
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": DeviceCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createDevice": {
      "_id": 4,
      "address": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "abc123",
      "name": "abc123",
      "protected": false,
      "protocol": "generic",
      "site": Site,
      "siteId": 4,
      "status": "xyz789",
      "system": false,
      "topic": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createDraftFromIssueCatalog

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
_id - ID!
updateOriginal - BooleanDefault = true

Example

Query
mutation CreateDraftFromIssueCatalog(
  $_id: ID!,
  $updateOriginal: Boolean
) {
  createDraftFromIssueCatalog(
    _id: $_id,
    updateOriginal: $updateOriginal
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "updateOriginal": true}
Response
{
  "data": {
    "createDraftFromIssueCatalog": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogDraftReport,
      "requestDescription": true,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": false,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createDraftFromIssueTemplate

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
_id - ID!
isFromLibrary - Boolean
newFolder - ID

Example

Query
mutation CreateDraftFromIssueTemplate(
  $_id: ID!,
  $isFromLibrary: Boolean,
  $newFolder: ID
) {
  createDraftFromIssueTemplate(
    _id: $_id,
    isFromLibrary: $isFromLibrary,
    newFolder: $newFolder
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "_id": "4",
  "isFromLibrary": false,
  "newFolder": 4
}
Response
{
  "data": {
    "createDraftFromIssueTemplate": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

createElement

Response

Returns an Element

Arguments
NameDescription
data - ElementCreateInput!
tenant - ID

Example

Query
mutation CreateElement(
  $data: ElementCreateInput!,
  $tenant: ID
) {
  createElement(
    data: $data,
    tenant: $tenant
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": ElementCreateInput, "tenant": 4}
Response
{
  "data": {
    "createElement": {
      "_id": "4",
      "arLocked": true,
      "awaitingApproval": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "elements": [Element],
      "elementsCount": 987,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": 4,
      "name": "abc123",
      "needsApproval": false,
      "parent": Element,
      "parentId": "4",
      "parentsTree": [Element],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": 4,
      "protected": true,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": "4",
      "system": true,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 987,
      "template": ElementTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createElementSiteReport

Response

Returns an ElementSiteReport

Arguments
NameDescription
data - ElementSiteReportCreateInput!
tenant - ID

Example

Query
mutation CreateElementSiteReport(
  $data: ElementSiteReportCreateInput!,
  $tenant: ID
) {
  createElementSiteReport(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementSiteReportCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createElementSiteReport": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplate": ElementTemplate,
      "elementTemplateId": 4,
      "folder": ElementSiteReportFolder,
      "folderId": "4",
      "generalFields": ["description"],
      "inputFields": [4],
      "myConfig": ElementSiteReportConfig,
      "name": "abc123",
      "protected": false,
      "siteTemplate": SiteTemplate,
      "siteTemplateId": 4,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createElementSiteReportConfig

Response

Returns an ElementSiteReportConfig

Arguments
NameDescription
data - ElementSiteReportConfigCreateInput!
tenant - ID

Example

Query
mutation CreateElementSiteReportConfig(
  $data: ElementSiteReportConfigCreateInput!,
  $tenant: ID
) {
  createElementSiteReportConfig(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReport {
      ...ElementSiteReportFragment
    }
    elementSiteReportId
    generalFieldsToHide
    inputFieldsToHide
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementSiteReportConfigCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createElementSiteReportConfig": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementSiteReport": ElementSiteReport,
      "elementSiteReportId": "4",
      "generalFieldsToHide": ["abc123"],
      "inputFieldsToHide": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createElementSiteReportFolder

Response

Returns an ElementSiteReportFolder

Arguments
NameDescription
data - ElementSiteReportFolderCreateInput!
tenant - ID

Example

Query
mutation CreateElementSiteReportFolder(
  $data: ElementSiteReportFolderCreateInput!,
  $tenant: ID
) {
  createElementSiteReportFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": ElementSiteReportFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createElementSiteReportFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementSiteReportFoldersCount": 987,
      "elementSiteReportsCount": 987,
      "name": "xyz789",
      "parent": ElementSiteReportFolder,
      "parentId": 4,
      "parentsTree": [ElementSiteReportFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createElementTemplate

Response

Returns an ElementTemplate

Arguments
NameDescription
data - ElementTemplateCreateInput!
tenant - ID

Example

Query
mutation CreateElementTemplate(
  $data: ElementTemplateCreateInput!,
  $tenant: ID
) {
  createElementTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": ElementTemplateCreateInput, "tenant": 4}
Response
{
  "data": {
    "createElementTemplate": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": ElementTemplateFolder,
      "folderId": "4",
      "frame": ElementTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createElementTemplateFolder

Response

Returns an ElementTemplateFolder

Arguments
NameDescription
data - ElementTemplateFolderCreateInput!
tenant - ID

Example

Query
mutation CreateElementTemplateFolder(
  $data: ElementTemplateFolderCreateInput!,
  $tenant: ID
) {
  createElementTemplateFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementTemplateFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createElementTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplateFoldersCount": 123,
      "elementTemplatesCount": 123,
      "name": "xyz789",
      "parent": ElementTemplateFolder,
      "parentId": 4,
      "parentsTree": [ElementTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createHeatmapConfiguration

Response

Returns a HeatmapConfiguration

Arguments
NameDescription
data - HeatmapConfigurationCreateInput!
tenant - ID

Example

Query
mutation CreateHeatmapConfiguration(
  $data: HeatmapConfigurationCreateInput!,
  $tenant: ID
) {
  createHeatmapConfiguration(
    data: $data,
    tenant: $tenant
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": HeatmapConfigurationCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createHeatmapConfiguration": {
      "_id": 4,
      "colorsRange": [HeatmapConfigurationColorsRange],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplate": IssueTemplate,
      "issueTemplateId": 4,
      "protected": false,
      "system": true,
      "taskTime": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createHeatmapConfigurationDraft

Response

Returns a HeatmapConfigurationDraft

Arguments
NameDescription
data - HeatmapConfigurationDraftCreateInput!
tenant - ID

Example

Query
mutation CreateHeatmapConfigurationDraft(
  $data: HeatmapConfigurationDraftCreateInput!,
  $tenant: ID
) {
  createHeatmapConfigurationDraft(
    data: $data,
    tenant: $tenant
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": HeatmapConfigurationDraftCreateInput,
  "tenant": 4
}
Response
{
  "data": {
    "createHeatmapConfigurationDraft": {
      "_id": 4,
      "colorsRange": [
        HeatmapConfigurationDraftColorsRange
      ],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateDraft": IssueTemplateDraft,
      "issueTemplateDraftId": 4,
      "issueTemplateId": "4",
      "protected": true,
      "system": false,
      "taskTime": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createInvite

Response

Returns an Invite

Arguments
NameDescription
data - InviteCreateInput!
tenant - ID

Example

Query
mutation CreateInvite(
  $data: InviteCreateInput!,
  $tenant: ID
) {
  createInvite(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{"data": InviteCreateInput, "tenant": 4}
Response
{
  "data": {
    "createInvite": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": false,
      "system": false,
      "token": "xyz789",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

createIssueCatalog

Response

Returns an IssueCatalog

Arguments
NameDescription
data - IssueCatalogCreateInput!
tenant - ID

Example

Query
mutation CreateIssueCatalog(
  $data: IssueCatalogCreateInput!,
  $tenant: ID
) {
  createIssueCatalog(
    data: $data,
    tenant: $tenant
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueCatalogCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createIssueCatalog": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": false,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": false,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createIssueCatalogDraft

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
data - IssueCatalogDraftCreateInput!
tenant - ID

Example

Query
mutation CreateIssueCatalogDraft(
  $data: IssueCatalogDraftCreateInput!,
  $tenant: ID
) {
  createIssueCatalogDraft(
    data: $data,
    tenant: $tenant
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": IssueCatalogDraftCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueCatalogDraft": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": false,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogDraftReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createIssueCatalogFolder

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
data - IssueCatalogFolderCreateInput!
tenant - ID

Example

Query
mutation CreateIssueCatalogFolder(
  $data: IssueCatalogFolderCreateInput!,
  $tenant: ID
) {
  createIssueCatalogFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueCatalogFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createIssueCatalogFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 123,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": 4,
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createIssueReport

Response

Returns an IssueReport

Arguments
NameDescription
data - IssueReportCreateInput!
tenant - ID

Example

Query
mutation CreateIssueReport(
  $data: IssueReportCreateInput!,
  $tenant: ID
) {
  createIssueReport(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": IssueReportCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueReport": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "distinctIssueReportValues": IssueReportDistinctValues,
      "folder": IssueReportFolder,
      "folderId": "4",
      "generalFields": ["actions"],
      "issueCatalog": IssueCatalog,
      "issueCatalogId": "4",
      "myConfig": IssueReportConfig,
      "name": "abc123",
      "protected": true,
      "system": false,
      "taskConditionalInputFields": [4],
      "taskInputFields": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createIssueReportConfig

Response

Returns an IssueReportConfig

Arguments
NameDescription
data - IssueReportConfigCreateInput!
tenant - ID

Example

Query
mutation CreateIssueReportConfig(
  $data: IssueReportConfigCreateInput!,
  $tenant: ID
) {
  createIssueReportConfig(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    generalFieldsToHide
    issueReport {
      ...IssueReportFragment
    }
    issueReportId
    protected
    system
    taskInputFieldsToHide
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": IssueReportConfigCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueReportConfig": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "generalFieldsToHide": ["xyz789"],
      "issueReport": IssueReport,
      "issueReportId": "4",
      "protected": false,
      "system": false,
      "taskInputFieldsToHide": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createIssueReportFolder

Response

Returns an IssueReportFolder

Arguments
NameDescription
data - IssueReportFolderCreateInput!
tenant - ID

Example

Query
mutation CreateIssueReportFolder(
  $data: IssueReportFolderCreateInput!,
  $tenant: ID
) {
  createIssueReportFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": IssueReportFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueReportFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueReportFoldersCount": 987,
      "issueReportsCount": 123,
      "name": "xyz789",
      "parent": IssueReportFolder,
      "parentId": "4",
      "parentsTree": [IssueReportFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createIssueTemplate

Response

Returns an IssueTemplate

Arguments
NameDescription
data - IssueTemplateCreateInput!
tenant - ID

Example

Query
mutation CreateIssueTemplate(
  $data: IssueTemplateCreateInput!,
  $tenant: ID
) {
  createIssueTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"data": IssueTemplateCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

createIssueTemplateDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
data - IssueTemplateDraftCreateInput!
tenant - ID

Example

Query
mutation CreateIssueTemplateDraft(
  $data: IssueTemplateDraftCreateInput!,
  $tenant: ID
) {
  createIssueTemplateDraft(
    data: $data,
    tenant: $tenant
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "data": IssueTemplateDraftCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createIssueTemplateDraft": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

createIssueTemplateFolder

Response

Returns an IssueTemplateFolder

Arguments
NameDescription
data - IssueTemplateFolderCreateInput!
tenant - ID

Example

Query
mutation CreateIssueTemplateFolder(
  $data: IssueTemplateFolderCreateInput!,
  $tenant: ID
) {
  createIssueTemplateFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": IssueTemplateFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createIssueTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplateFoldersCount": 123,
      "issueTemplatesCount": 123,
      "name": "abc123",
      "parent": IssueTemplateFolder,
      "parentId": "4",
      "parentsTree": [IssueTemplateFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createJob

Response

Returns a Job

Arguments
NameDescription
catalogId - ID!
element - ID
executionDate - DateTime!
inputs - [InputCreateInput]
site - ID

Example

Query
mutation CreateJob(
  $catalogId: ID!,
  $element: ID,
  $executionDate: DateTime!,
  $inputs: [InputCreateInput],
  $site: ID
) {
  createJob(
    catalogId: $catalogId,
    element: $element,
    executionDate: $executionDate,
    inputs: $inputs,
    site: $site
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "catalogId": "4",
  "element": 4,
  "executionDate": "2007-12-03T10:15:30Z",
  "inputs": [InputCreateInput],
  "site": "4"
}
Response
{
  "data": {
    "createJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "xyz789",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

createJobs

Response

Returns a Job

Arguments
NameDescription
catalogId - [ID!]!
description - String
element - ID
executionDate - DateTime!
site - ID

Example

Query
mutation CreateJobs(
  $catalogId: [ID!]!,
  $description: String,
  $element: ID,
  $executionDate: DateTime!,
  $site: ID
) {
  createJobs(
    catalogId: $catalogId,
    description: $description,
    element: $element,
    executionDate: $executionDate,
    site: $site
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "catalogId": [4],
  "description": "xyz789",
  "element": "4",
  "executionDate": "2007-12-03T10:15:30Z",
  "site": "4"
}
Response
{
  "data": {
    "createJobs": {
      "_id": "4",
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

createLabel

Response

Returns a Label

Arguments
NameDescription
data - LabelCreateInput!
tenant - ID

Example

Query
mutation CreateLabel(
  $data: LabelCreateInput!,
  $tenant: ID
) {
  createLabel(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": LabelCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createLabel": {
      "_id": 4,
      "context": "Account",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "icon": "abc123",
      "labelValues": [LabelValue],
      "name": "abc123",
      "order": 987,
      "protected": true,
      "singleSelection": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createLabelValue

Response

Returns a LabelValue

Arguments
NameDescription
data - LabelValueCreateInput!
tenant - ID

Example

Query
mutation CreateLabelValue(
  $data: LabelValueCreateInput!,
  $tenant: ID
) {
  createLabelValue(
    data: $data,
    tenant: $tenant
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{
  "data": LabelValueCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createLabelValue": {
      "_id": "4",
      "backgroundColor": "xyz789",
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "label": Label,
      "labelId": 4,
      "order": 987,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "value": "abc123"
    }
  }
}

createLocation

Response

Returns a Location

Arguments
NameDescription
data - LocationCreateInput!
tenant - ID

Example

Query
mutation CreateLocation(
  $data: LocationCreateInput!,
  $tenant: ID
) {
  createLocation(
    data: $data,
    tenant: $tenant
  ) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": LocationCreateInput, "tenant": 4}
Response
{
  "data": {
    "createLocation": {
      "_id": 4,
      "address": LocationAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "protected": false,
      "storage": Storage,
      "storageId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createManyLabelValues

Response

Returns [LabelValue]

Arguments
NameDescription
data - [LabelValueCreateInput]

Example

Query
mutation CreateManyLabelValues($data: [LabelValueCreateInput]) {
  createManyLabelValues(data: $data) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{"data": [LabelValueCreateInput]}
Response
{
  "data": {
    "createManyLabelValues": [
      {
        "_id": "4",
        "backgroundColor": "abc123",
        "color": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "label": Label,
        "labelId": 4,
        "order": 987,
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "value": "abc123"
      }
    ]
  }
}

createManySites

Description

Returns number of created elements

Response

Returns [String]

Arguments
NameDescription
data - [SiteCreateInput]

Example

Query
mutation CreateManySites($data: [SiteCreateInput]) {
  createManySites(data: $data)
}
Variables
{"data": [SiteCreateInput]}
Response
{"data": {"createManySites": ["abc123"]}}

createManyTaskMappingDrafts

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
issueCatalogDraft - ID!
taskMappings - [IssueCatalogDraftTaskMappingCreateInput!]!

Example

Query
mutation CreateManyTaskMappingDrafts(
  $issueCatalogDraft: ID!,
  $taskMappings: [IssueCatalogDraftTaskMappingCreateInput!]!
) {
  createManyTaskMappingDrafts(
    issueCatalogDraft: $issueCatalogDraft,
    taskMappings: $taskMappings
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "issueCatalogDraft": "4",
  "taskMappings": [
    IssueCatalogDraftTaskMappingCreateInput
  ]
}
Response
{
  "data": {
    "createManyTaskMappingDrafts": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": true,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": false,
      "remarksOnTasks": true,
      "report": IssueCatalogDraftReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": false,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createManyTaskTemplateDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
issueTemplateDraft - ID!
taskTemplateGroup - ID!
taskTemplates - [IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput!]!

Example

Query
mutation CreateManyTaskTemplateDrafts(
  $issueTemplateDraft: ID!,
  $taskTemplateGroup: ID!,
  $taskTemplates: [IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput!]!
) {
  createManyTaskTemplateDrafts(
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplateGroup: $taskTemplateGroup,
    taskTemplates: $taskTemplates
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "issueTemplateDraft": "4",
  "taskTemplateGroup": "4",
  "taskTemplates": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput
  ]
}
Response
{
  "data": {
    "createManyTaskTemplateDrafts": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

createManyTaskTemplateGroups

Response

Returns [TaskTemplateGroup]

Arguments
NameDescription
data - [TaskTemplateGroupCreateInput]

Example

Query
mutation CreateManyTaskTemplateGroups($data: [TaskTemplateGroupCreateInput]) {
  createManyTaskTemplateGroups(data: $data) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": [TaskTemplateGroupCreateInput]}
Response
{
  "data": {
    "createManyTaskTemplateGroups": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueTemplate": IssueTemplate,
        "issueTemplateId": "4",
        "markersToShow": "ALL",
        "name": "abc123",
        "order": 987,
        "protected": true,
        "sequential": false,
        "system": true,
        "taskTemplates": [TaskTemplate],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

createManyTaskTemplates

Response

Returns [TaskTemplate]

Arguments
NameDescription
data - [TaskTemplateCreateInput]

Example

Query
mutation CreateManyTaskTemplates($data: [TaskTemplateCreateInput]) {
  createManyTaskTemplates(data: $data) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"data": [TaskTemplateCreateInput]}
Response
{
  "data": {
    "createManyTaskTemplates": [
      {
        "_id": "4",
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "estimatedDuration": 987,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": "4",
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [TaskTemplateLog],
        "manualId": "abc123",
        "mapping": TaskMapping,
        "name": "xyz789",
        "onResponseId": "4",
        "order": 987,
        "parentsTree": [4],
        "protected": false,
        "remarks": [TaskTemplateRemark],
        "show": true,
        "system": true,
        "totalScore": 987,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "variant": TaskTemplateVariant
      }
    ]
  }
}

createManyUnits

Response

Returns [Unit]

Arguments
NameDescription
data - [UnitCreateInput]

Example

Query
mutation CreateManyUnits($data: [UnitCreateInput]) {
  createManyUnits(data: $data) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": [UnitCreateInput]}
Response
{
  "data": {
    "createManyUnits": [
      {
        "_id": "4",
        "archived": true,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "convert": [UnitConvert],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "folder": UnitFolder,
        "folderId": "4",
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "order": 987,
        "protected": false,
        "symbol": "abc123",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

createManyWidgets

Response

Returns [Widget]

Arguments
NameDescription
data - [WidgetCreateInput!]!

Example

Query
mutation CreateManyWidgets($data: [WidgetCreateInput!]!) {
  createManyWidgets(data: $data) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": [WidgetCreateInput]}
Response
{
  "data": {
    "createManyWidgets": [
      {
        "_id": "4",
        "chart": "bar",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "dashboard": 4,
        "data": {},
        "dataset": WidgetDataset,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "draft": 4,
        "layout": WidgetLayout,
        "name": "abc123",
        "palette": ["abc123"],
        "preset": "xyz789",
        "protected": true,
        "showLegend": true,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

createMarker

Response

Returns a Marker

Arguments
NameDescription
data - MarkerCreateInput!
tenant - ID

Example

Query
mutation CreateMarker(
  $data: MarkerCreateInput!,
  $tenant: ID
) {
  createMarker(
    data: $data,
    tenant: $tenant
  ) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": MarkerCreateInput, "tenant": 4}
Response
{
  "data": {
    "createMarker": {
      "_id": "4",
      "anchorId": "xyz789",
      "anchorImage": AnchorImage,
      "anchorImageId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "position": [123.45],
      "protected": false,
      "rotation": [987.65],
      "scale": [987.65],
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createMaterial

Response

Returns a Material

Arguments
NameDescription
data - MaterialCreateInput!
tenant - ID

Example

Query
mutation CreateMaterial(
  $data: MaterialCreateInput!,
  $tenant: ID
) {
  createMaterial(
    data: $data,
    tenant: $tenant
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": MaterialCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createMaterial": {
      "_id": "4",
      "brand": "abc123",
      "brandModel": "xyz789",
      "code": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dimension": MaterialDimension,
      "images": [File],
      "imagesIds": ["4"],
      "iva": 987.65,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "price": 987.65,
      "protected": false,
      "quantity": 123.45,
      "sellingPrice": 123.45,
      "stockPerStorage": [MaterialStockPerStorage],
      "system": true,
      "totalStock": 987,
      "type": "SERIALIZED",
      "unit": Unit,
      "unitId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createMaterialItem

Response

Returns a MaterialItem

Arguments
NameDescription
data - MaterialItemCreateInput!
tenant - ID

Example

Query
mutation CreateMaterialItem(
  $data: MaterialItemCreateInput!,
  $tenant: ID
) {
  createMaterialItem(
    data: $data,
    tenant: $tenant
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": MaterialItemCreateInput, "tenant": 4}
Response
{
  "data": {
    "createMaterialItem": {
      "_id": "4",
      "buyOrder": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "customFields": [MaterialItemCustomField],
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "expirationDate": "2007-12-03T10:15:30Z",
      "expirationDateType": "abc123",
      "hiddenFields": ["abc123"],
      "location": Location,
      "locationId": 4,
      "material": Material,
      "materialId": "4",
      "protected": false,
      "quantity": 123.45,
      "serialNumber": "xyz789",
      "state": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createMaterials

Response

Returns a createMaterials

Arguments
NameDescription
data - String

Example

Query
mutation CreateMaterials($data: String) {
  createMaterials(data: $data) {
    total
    totalImported
  }
}
Variables
{"data": "xyz789"}
Response
{"data": {"createMaterials": {"total": 987.65, "totalImported": 123.45}}}

createModelInstance

Response

Returns a ModelInstance

Arguments
NameDescription
data - ModelInstanceCreateInput!
tenant - ID

Example

Query
mutation CreateModelInstance(
  $data: ModelInstanceCreateInput!,
  $tenant: ID
) {
  createModelInstance(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ModelInstanceCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createModelInstance": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "model": File,
      "modelId": "4",
      "position": [123.45],
      "protected": true,
      "rotation": [987.65],
      "scale": [987.65],
      "spatialAnchorId": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createNfcTag

Response

Returns a NfcTag

Arguments
NameDescription
data - NfcTagCreateInput!
tenant - ID

Example

Query
mutation CreateNfcTag(
  $data: NfcTagCreateInput!,
  $tenant: ID
) {
  createNfcTag(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": NfcTagCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createNfcTag": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "linkedTo": NfcTagLinkedTo,
      "protected": true,
      "system": true,
      "uid": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createOrUpdateAlarmTask

Response

Returns a JSON

Arguments
NameDescription
measurement - String!Measurement
name - String!Name
tagKey - String!Tag key
tagValue - String!Tag value
taskId - StringTask id
taskStatus - AlarmTaskStatus!Task status
triggerCondition - AlarmTaskTriggerConditionTrigger condition (threshold/relative)
triggerField - StringTrigger field (threshold/relative). Default = "value"
triggerFunctionName - AlarmTaskTriggerFunctionNameTrigger function name (threshold/relative)
triggerFunctionPeriod - StringTrigger function period (threshold/relative). Default = "10s"
triggerPeriod - StringTrigger period (deadman). Default = "10m"
triggerRangeValues - AlarmTaskTriggerRangeValuesTypeTrigger range values (threshold)
triggerShift - StringTrigger shift (relative). Default = "1m"
triggerType - AlarmTaskTriggerType!Trigger type
triggerValue - FloatTrigger value (threshold/relative)
triggerWhen - AlarmTaskTriggerWhenTrigger when (relative). Default = change

Example

Query
mutation CreateOrUpdateAlarmTask(
  $measurement: String!,
  $name: String!,
  $tagKey: String!,
  $tagValue: String!,
  $taskId: String,
  $taskStatus: AlarmTaskStatus!,
  $triggerCondition: AlarmTaskTriggerCondition,
  $triggerField: String,
  $triggerFunctionName: AlarmTaskTriggerFunctionName,
  $triggerFunctionPeriod: String,
  $triggerPeriod: String,
  $triggerRangeValues: AlarmTaskTriggerRangeValuesType,
  $triggerShift: String,
  $triggerType: AlarmTaskTriggerType!,
  $triggerValue: Float,
  $triggerWhen: AlarmTaskTriggerWhen
) {
  createOrUpdateAlarmTask(
    measurement: $measurement,
    name: $name,
    tagKey: $tagKey,
    tagValue: $tagValue,
    taskId: $taskId,
    taskStatus: $taskStatus,
    triggerCondition: $triggerCondition,
    triggerField: $triggerField,
    triggerFunctionName: $triggerFunctionName,
    triggerFunctionPeriod: $triggerFunctionPeriod,
    triggerPeriod: $triggerPeriod,
    triggerRangeValues: $triggerRangeValues,
    triggerShift: $triggerShift,
    triggerType: $triggerType,
    triggerValue: $triggerValue,
    triggerWhen: $triggerWhen
  )
}
Variables
{
  "measurement": "abc123",
  "name": "xyz789",
  "tagKey": "abc123",
  "tagValue": "abc123",
  "taskId": "xyz789",
  "taskStatus": "disabled",
  "triggerCondition": "equalTo",
  "triggerField": "value",
  "triggerFunctionName": "count",
  "triggerFunctionPeriod": "10s",
  "triggerPeriod": "10m",
  "triggerRangeValues": AlarmTaskTriggerRangeValuesType,
  "triggerShift": "1m",
  "triggerType": "deadman",
  "triggerValue": 987.65,
  "triggerWhen": "change"
}
Response
{"data": {"createOrUpdateAlarmTask": {}}}

createOrUpdateManyInvites

Arguments
NameDescription
invites - [InviteExtraCreateInput]
tenant - ID
type - String!
withRecoveryEmail - Boolean

Example

Query
mutation CreateOrUpdateManyInvites(
  $invites: [InviteExtraCreateInput],
  $tenant: ID,
  $type: String!,
  $withRecoveryEmail: Boolean
) {
  createOrUpdateManyInvites(
    invites: $invites,
    tenant: $tenant,
    type: $type,
    withRecoveryEmail: $withRecoveryEmail
  ) {
    sentInvites {
      ...InviteFragment
    }
    sentInvitesCount
    unsentInvitesCount
  }
}
Variables
{
  "invites": [InviteExtraCreateInput],
  "tenant": 4,
  "type": "xyz789",
  "withRecoveryEmail": true
}
Response
{
  "data": {
    "createOrUpdateManyInvites": {
      "sentInvites": [Invite],
      "sentInvitesCount": 123,
      "unsentInvitesCount": 987
    }
  }
}

createPdfJob

Response

Returns a PdfJob

Arguments
NameDescription
data - PdfJobCreateInput!
tenant - ID

Example

Query
mutation CreatePdfJob(
  $data: PdfJobCreateInput!,
  $tenant: ID
) {
  createPdfJob(
    data: $data,
    tenant: $tenant
  ) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{
  "data": PdfJobCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createPdfJob": {
      "_id": "4",
      "contentId": 4,
      "contentType": "issue",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "error": "abc123",
      "pdfType": "detailed",
      "protected": true,
      "status": "failed",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "url": "abc123",
      "validUntil": 987
    }
  }
}

createPost

Response

Returns a Post

Arguments
NameDescription
data - PostCreateInput!
tenant - ID

Example

Query
mutation CreatePost(
  $data: PostCreateInput!,
  $tenant: ID
) {
  createPost(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": PostCreateInput, "tenant": 4}
Response
{
  "data": {
    "createPost": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": ["4"],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 987,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createPreset

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
preset - PresetWhereInput!
templateId - ID!

Example

Query
mutation CreatePreset(
  $preset: PresetWhereInput!,
  $templateId: ID!
) {
  createPreset(
    preset: $preset,
    templateId: $templateId
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "preset": PresetWhereInput,
  "templateId": "4"
}
Response
{
  "data": {
    "createPreset": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

createProfile

Response

Returns a Profile

Arguments
NameDescription
data - ProfileCreateInput!
tenant - ID

Example

Query
mutation CreateProfile(
  $data: ProfileCreateInput!,
  $tenant: ID
) {
  createProfile(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createProfile": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "elementsCount": 123,
      "folder": ProfileFolder,
      "folderId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "parent": Profile,
      "parentId": 4,
      "parentsTree": [Profile],
      "parentsTreeIds": [4],
      "profilesCount": 987,
      "protected": true,
      "system": true,
      "template": ProfileTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createProfileFolder

Response

Returns a ProfileFolder

Arguments
NameDescription
data - ProfileFolderCreateInput!
tenant - ID

Example

Query
mutation CreateProfileFolder(
  $data: ProfileFolderCreateInput!,
  $tenant: ID
) {
  createProfileFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createProfileFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": ProfileFolder,
      "parentId": 4,
      "parentsTree": [ProfileFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": [4],
      "profileFoldersCount": 123,
      "profilesCount": 987,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createProfileTemplate

Response

Returns a ProfileTemplate

Arguments
NameDescription
data - ProfileTemplateCreateInput!
tenant - ID

Example

Query
mutation CreateProfileTemplate(
  $data: ProfileTemplateCreateInput!,
  $tenant: ID
) {
  createProfileTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileTemplateCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createProfileTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": ProfileTemplateFolder,
      "folderId": 4,
      "frame": ProfileTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createProfileTemplateFolder

Response

Returns a ProfileTemplateFolder

Arguments
NameDescription
data - ProfileTemplateFolderCreateInput!
tenant - ID

Example

Query
mutation CreateProfileTemplateFolder(
  $data: ProfileTemplateFolderCreateInput!,
  $tenant: ID
) {
  createProfileTemplateFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": ProfileTemplateFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createProfileTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": ProfileTemplateFolder,
      "parentId": "4",
      "parentsTree": [ProfileTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": ["4"],
      "profileTemplateFoldersCount": 987,
      "profileTemplatesCount": 123,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createRequest

Response

Returns a Request

Arguments
NameDescription
data - RequestCreateInput!
tenant - ID

Example

Query
mutation CreateRequest(
  $data: RequestCreateInput!,
  $tenant: ID
) {
  createRequest(
    data: $data,
    tenant: $tenant
  ) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": RequestCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createRequest": {
      "_id": "4",
      "approved": [Account],
      "approvedIds": [4],
      "approvers": [Account],
      "approversIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": ["4"],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": 4,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createRequestTemplate

Response

Returns a RequestTemplate

Arguments
NameDescription
data - RequestTemplateUpdateInput!
tenant - ID

Example

Query
mutation CreateRequestTemplate(
  $data: RequestTemplateUpdateInput!,
  $tenant: ID
) {
  createRequestTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": RequestTemplateUpdateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createRequestTemplate": {
      "_id": "4",
      "commentRequired": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "expireDate": RequestTemplateExpireDate,
      "frame": RequestTemplateFrame,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createRole

Response

Returns a Role

Arguments
NameDescription
data - RoleCreateInput!
tenant - ID

Example

Query
mutation CreateRole(
  $data: RoleCreateInput!,
  $tenant: ID
) {
  createRole(
    data: $data,
    tenant: $tenant
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": RoleCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createRole": {
      "_id": 4,
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "name": "xyz789",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createRoomAccessLog

Response

Returns a RoomAccessLog

Arguments
NameDescription
room_id - String!

Example

Query
mutation CreateRoomAccessLog($room_id: String!) {
  createRoomAccessLog(room_id: $room_id) {
    id
    last_activity_at
    room_id
    session_id
    user_id
  }
}
Variables
{"room_id": "xyz789"}
Response
{
  "data": {
    "createRoomAccessLog": {
      "id": "xyz789",
      "last_activity_at": "xyz789",
      "room_id": "xyz789",
      "session_id": "abc123",
      "user_id": "xyz789"
    }
  }
}

createSite

Response

Returns a Site

Arguments
NameDescription
data - SiteCreateInput!
tenant - ID

Example

Query
mutation CreateSite(
  $data: SiteCreateInput!,
  $tenant: ID
) {
  createSite(
    data: $data,
    tenant: $tenant
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": SiteCreateInput, "tenant": 4}
Response
{
  "data": {
    "createSite": {
      "_id": 4,
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": false,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "devicesCount": 123,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [SiteLog],
      "myCalendarCount": 123,
      "myIssuesCount": 123,
      "name": "xyz789",
      "nearbySites": [Site],
      "needsApproval": false,
      "parent": Site,
      "parentId": "4",
      "parentsTree": [Site],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "protected": true,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": false,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createSiteTemplate

Response

Returns a SiteTemplate

Arguments
NameDescription
data - SiteTemplateCreateInput!
tenant - ID

Example

Query
mutation CreateSiteTemplate(
  $data: SiteTemplateCreateInput!,
  $tenant: ID
) {
  createSiteTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SiteTemplateCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createSiteTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": SiteTemplateFolder,
      "folderId": 4,
      "frame": SiteTemplateFrame,
      "icon": "xyz789",
      "protected": false,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createSiteTemplateFolder

Response

Returns a SiteTemplateFolder

Arguments
NameDescription
data - SiteTemplateFolderCreateInput!
tenant - ID

Example

Query
mutation CreateSiteTemplateFolder(
  $data: SiteTemplateFolderCreateInput!,
  $tenant: ID
) {
  createSiteTemplateFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SiteTemplateFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createSiteTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": SiteTemplateFolder,
      "parentId": "4",
      "parentsTree": [SiteTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": ["4"],
      "protected": false,
      "siteTemplateFoldersCount": 987,
      "siteTemplatesCount": 123,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createSkill

Response

Returns a Skill

Arguments
NameDescription
data - SkillCreateInput!
tenant - ID

Example

Query
mutation CreateSkill(
  $data: SkillCreateInput!,
  $tenant: ID
) {
  createSkill(
    data: $data,
    tenant: $tenant
  ) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SkillCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createSkill": {
      "_id": 4,
      "chosenSkillLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "name": "abc123",
      "protected": false,
      "renewal": SkillRenewal,
      "renewalWarning": SkillRenewalWarning,
      "skillGroup": SkillGroup,
      "skillGroupId": 4,
      "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createSkillGroup

Response

Returns a SkillGroup

Arguments
NameDescription
data - SkillGroupCreateInput!
tenant - ID

Example

Query
mutation CreateSkillGroup(
  $data: SkillGroupCreateInput!,
  $tenant: ID
) {
  createSkillGroup(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": SkillGroupCreateInput, "tenant": 4}
Response
{
  "data": {
    "createSkillGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "protected": false,
      "skillCount": 123,
      "skills": [Skill],
      "subject": SkillSubject,
      "subjectId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createSkillLevels

Response

Returns [SkillLevel]

Arguments
NameDescription
accountIds - [ID!]!
skillSubjectId - ID!

Example

Query
mutation CreateSkillLevels(
  $accountIds: [ID!]!,
  $skillSubjectId: ID!
) {
  createSkillLevels(
    accountIds: $accountIds,
    skillSubjectId: $skillSubjectId
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"accountIds": [4], "skillSubjectId": 4}
Response
{
  "data": {
    "createSkillLevels": [
      {
        "_id": "4",
        "account": Account,
        "accountId": "4",
        "acquisitionDate": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": ["4"],
        "level": "EXPERT",
        "protected": false,
        "requiredLevel": "EXPERT",
        "skill": Skill,
        "skillId": 4,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

createSkillSubject

Response

Returns a SkillSubject

Arguments
NameDescription
data - SkillSubjectCreateInput!
tenant - ID

Example

Query
mutation CreateSkillSubject(
  $data: SkillSubjectCreateInput!,
  $tenant: ID
) {
  createSkillSubject(
    data: $data,
    tenant: $tenant
  ) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{"data": SkillSubjectCreateInput, "tenant": 4}
Response
{
  "data": {
    "createSkillSubject": {
      "_id": "4",
      "chosenSubjectLevels": ["xyz789"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "protected": false,
      "skillCount": 123,
      "skillGroupCount": 123,
      "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "userCount": 987
    }
  }
}

createStateMachine

Response

Returns a StateMachine

Arguments
NameDescription
data - StateMachineCreateInput!
tenant - ID

Example

Query
mutation CreateStateMachine(
  $data: StateMachineCreateInput!,
  $tenant: ID
) {
  createStateMachine(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": StateMachineCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createStateMachine": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": StateMachineFolder,
      "folderId": 4,
      "initState": "xyz789",
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "protected": false,
      "states": [StateMachineState],
      "system": false,
      "timeBomb": StateMachineTimeBomb,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createStateMachineFolder

Response

Returns a StateMachineFolder

Arguments
NameDescription
data - StateMachineFolderCreateInput!
tenant - ID

Example

Query
mutation CreateStateMachineFolder(
  $data: StateMachineFolderCreateInput!,
  $tenant: ID
) {
  createStateMachineFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": StateMachineFolderCreateInput, "tenant": 4}
Response
{
  "data": {
    "createStateMachineFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": StateMachineFolder,
      "parentId": "4",
      "parentsTree": [StateMachineFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "stateMachineFoldersCount": 123,
      "stateMachinesCount": 123,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createStorage

Response

Returns a Storage

Arguments
NameDescription
data - StorageCreateInput!
tenant - ID

Example

Query
mutation CreateStorage(
  $data: StorageCreateInput!,
  $tenant: ID
) {
  createStorage(
    data: $data,
    tenant: $tenant
  ) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": StorageCreateInput, "tenant": 4}
Response
{
  "data": {
    "createStorage": {
      "_id": 4,
      "address": StorageAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "locations": [Location],
      "locationsIds": [4],
      "name": "abc123",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createTab

Response

Returns a Tab

Arguments
NameDescription
data - TabCreateInput!
tenant - ID

Example

Query
mutation CreateTab(
  $data: TabCreateInput!,
  $tenant: ID
) {
  createTab(
    data: $data,
    tenant: $tenant
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": TabCreateInput, "tenant": 4}
Response
{
  "data": {
    "createTab": {
      "_id": "4",
      "account": Account,
      "accountId": "4",
      "columns": [TabColumn],
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createTaskMapping

Response

Returns a TaskMapping

Arguments
NameDescription
data - TaskMappingCreateInput!
tenant - ID

Example

Query
mutation CreateTaskMapping(
  $data: TaskMappingCreateInput!,
  $tenant: ID
) {
  createTaskMapping(
    data: $data,
    tenant: $tenant
  ) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TaskMappingCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createTaskMapping": {
      "_id": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [TaskMappingAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "element": Element,
      "elementId": "4",
      "issueCatalog": IssueCatalog,
      "issueCatalogId": "4",
      "protected": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": false,
      "taskTemplate": TaskTemplate,
      "taskTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createTaskTemplate

Response

Returns a TaskTemplate

Arguments
NameDescription
data - TaskTemplateCreateInput!
tenant - ID

Example

Query
mutation CreateTaskTemplate(
  $data: TaskTemplateCreateInput!,
  $tenant: ID
) {
  createTaskTemplate(
    data: $data,
    tenant: $tenant
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"data": TaskTemplateCreateInput, "tenant": 4}
Response
{
  "data": {
    "createTaskTemplate": {
      "_id": "4",
      "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
      "arConfiguration": TaskTemplateArConfiguration,
      "assignedMaterials": [TaskTemplateAssignedMaterial],
      "assignedSkills": [TaskTemplateAssignedSkill],
      "assignedTools": [TaskTemplateAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "estimatedDuration": 987,
      "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
      "group": TaskTemplateGroup,
      "groupId": 4,
      "inputHistory": [Input],
      "inputs": [Input],
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [TaskTemplateLog],
      "manualId": "xyz789",
      "mapping": TaskMapping,
      "name": "abc123",
      "onResponseId": 4,
      "order": 123,
      "parentsTree": ["4"],
      "protected": false,
      "remarks": [TaskTemplateRemark],
      "show": true,
      "system": false,
      "totalScore": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": TaskTemplateVariant
    }
  }
}

createTaskTemplateGroup

Response

Returns a TaskTemplateGroup

Arguments
NameDescription
data - TaskTemplateGroupCreateInput!
tenant - ID

Example

Query
mutation CreateTaskTemplateGroup(
  $data: TaskTemplateGroupCreateInput!,
  $tenant: ID
) {
  createTaskTemplateGroup(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": TaskTemplateGroupCreateInput, "tenant": 4}
Response
{
  "data": {
    "createTaskTemplateGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": 4,
      "markersToShow": "ALL",
      "name": "xyz789",
      "order": 987,
      "protected": true,
      "sequential": true,
      "system": false,
      "taskTemplates": [TaskTemplate],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createTaskTemplateGroupDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
data - TaskGroupCreateInput!
draft - ID!

Example

Query
mutation CreateTaskTemplateGroupDraft(
  $data: TaskGroupCreateInput!,
  $draft: ID!
) {
  createTaskTemplateGroupDraft(
    data: $data,
    draft: $draft
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "data": TaskGroupCreateInput,
  "draft": "4"
}
Response
{
  "data": {
    "createTaskTemplateGroupDraft": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

createTeam

Response

Returns a Team

Arguments
NameDescription
data - TeamCreateInput!
tenant - ID

Example

Query
mutation CreateTeam(
  $data: TeamCreateInput!,
  $tenant: ID
) {
  createTeam(
    data: $data,
    tenant: $tenant
  ) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TeamCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createTeam": {
      "_id": 4,
      "color": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "members": [TeamMember],
      "name": "xyz789",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createTenant

Description

Creates a new Tenant

Response

Returns a Tenant

Arguments
NameDescription
seed - BooleanDefault = true

Example

Query
mutation CreateTenant($seed: Boolean) {
  createTenant(seed: $seed) {
    _id
    admin
    adminAccountFolder
    adminAccountTemplate
    adminAccountTemplateFolder
    adminRole
    adminRoleFolder
    config {
      ...TenantConfigFragment
    }
    createdAt
    default
    domain
    email
    invitesCount
    isAdminTenant
    master
    name
    password
    rootSite
    rootSiteTemplate
    rootSiteTemplateFolder
    totalAccounts
    updatedAt
    username
  }
}
Variables
{"seed": true}
Response
{
  "data": {
    "createTenant": {
      "_id": "4",
      "admin": "4",
      "adminAccountFolder": 4,
      "adminAccountTemplate": "4",
      "adminAccountTemplateFolder": 4,
      "adminRole": "4",
      "adminRoleFolder": 4,
      "config": TenantConfig,
      "createdAt": "2007-12-03T10:15:30Z",
      "default": true,
      "domain": "abc123",
      "email": "xyz789",
      "invitesCount": 987,
      "isAdminTenant": true,
      "master": false,
      "name": "abc123",
      "password": "xyz789",
      "rootSite": "4",
      "rootSiteTemplate": 4,
      "rootSiteTemplateFolder": 4,
      "totalAccounts": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "username": "xyz789"
    }
  }
}

createTimesheet

Response

Returns a Timesheet

Arguments
NameDescription
data - TimesheetCreateInput!
tenant - ID

Example

Query
mutation CreateTimesheet(
  $data: TimesheetCreateInput!,
  $tenant: ID
) {
  createTimesheet(
    data: $data,
    tenant: $tenant
  ) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": TimesheetCreateInput, "tenant": 4}
Response
{
  "data": {
    "createTimesheet": {
      "_id": 4,
      "action": Action,
      "actionId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "duration": 987,
      "finishDate": "2007-12-03T10:15:30Z",
      "issue": IssueInstance,
      "issueId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "startDate": "2007-12-03T10:15:30Z",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createTool

Response

Returns a Tool

Arguments
NameDescription
data - ToolCreateInput!
tenant - ID

Example

Query
mutation CreateTool(
  $data: ToolCreateInput!,
  $tenant: ID
) {
  createTool(
    data: $data,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": ToolCreateInput, "tenant": 4}
Response
{
  "data": {
    "createTool": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "designation": "abc123",
      "dimension": ToolDimension,
      "images": [File],
      "imagesIds": [4],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "partNumber": "xyz789",
      "protected": true,
      "stockPerStorage": [ToolStockPerStorage],
      "system": false,
      "totalStock": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createToolItem

Response

Returns a ToolItem

Arguments
NameDescription
data - ToolItemCreateInput!
tenant - ID

Example

Query
mutation CreateToolItem(
  $data: ToolItemCreateInput!,
  $tenant: ID
) {
  createToolItem(
    data: $data,
    tenant: $tenant
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{
  "data": ToolItemCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createToolItem": {
      "_id": 4,
      "associatedWith": [ToolItem],
      "available": true,
      "code": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "customFields": [ToolItemCustomField],
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "hiddenFields": ["xyz789"],
      "location": Location,
      "locationId": 4,
      "protected": true,
      "serialNumber": "abc123",
      "status": "IN_MAINTENANCE",
      "system": false,
      "tool": Tool,
      "toolId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usedBy": Account,
      "usedById": 4,
      "usedIn": IssueInstance,
      "usedInId": "4"
    }
  }
}

createToolItems

Response

Returns a createToolItems

Arguments
NameDescription
data - String
toolId - ID

Example

Query
mutation CreateToolItems(
  $data: String,
  $toolId: ID
) {
  createToolItems(
    data: $data,
    toolId: $toolId
  ) {
    total
    totalImported
  }
}
Variables
{
  "data": "abc123",
  "toolId": "4"
}
Response
{"data": {"createToolItems": {"total": 123, "totalImported": 123}}}

createUnit

Response

Returns a Unit

Arguments
NameDescription
data - UnitCreateInput!
tenant - ID

Example

Query
mutation CreateUnit(
  $data: UnitCreateInput!,
  $tenant: ID
) {
  createUnit(
    data: $data,
    tenant: $tenant
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": UnitCreateInput, "tenant": 4}
Response
{
  "data": {
    "createUnit": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": UnitFolder,
      "folderId": "4",
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "order": 987,
      "protected": true,
      "symbol": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

createUnitFolder

Response

Returns a UnitFolder

Arguments
NameDescription
data - UnitFolderCreateInput!
tenant - ID

Example

Query
mutation CreateUnitFolder(
  $data: UnitFolderCreateInput!,
  $tenant: ID
) {
  createUnitFolder(
    data: $data,
    tenant: $tenant
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": UnitFolderCreateInput,
  "tenant": "4"
}
Response
{
  "data": {
    "createUnitFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": UnitFolder,
      "parentId": 4,
      "parentsTree": [UnitFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "unitFoldersCount": 987,
      "unitsCount": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createWidget

Response

Returns a Widget

Arguments
NameDescription
data - WidgetCreateInput!
tenant - ID

Example

Query
mutation CreateWidget(
  $data: WidgetCreateInput!,
  $tenant: ID
) {
  createWidget(
    data: $data,
    tenant: $tenant
  ) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": WidgetCreateInput, "tenant": 4}
Response
{
  "data": {
    "createWidget": {
      "_id": 4,
      "chart": "bar",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "dashboard": 4,
      "data": {},
      "dataset": WidgetDataset,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "draft": 4,
      "layout": WidgetLayout,
      "name": "abc123",
      "palette": ["abc123"],
      "preset": "xyz789",
      "protected": true,
      "showLegend": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

createWorkPackageJob

Response

Returns a Job

Arguments
NameDescription
executionDate - DateTime!
issueCatalogs - [WorkPackageData!]!
name - String!

Example

Query
mutation CreateWorkPackageJob(
  $executionDate: DateTime!,
  $issueCatalogs: [WorkPackageData!]!,
  $name: String!
) {
  createWorkPackageJob(
    executionDate: $executionDate,
    issueCatalogs: $issueCatalogs,
    name: $name
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "executionDate": "2007-12-03T10:15:30Z",
  "issueCatalogs": [WorkPackageData],
  "name": "xyz789"
}
Response
{
  "data": {
    "createWorkPackageJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

deactivateAccount

Response

Returns an Account

Arguments
NameDescription
_id - ID

Example

Query
mutation DeactivateAccount($_id: ID) {
  deactivateAccount(_id: $_id) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_id": 4}
Response
{
  "data": {
    "deactivateAccount": {
      "ARUser": false,
      "_id": "4",
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

deactivateManyAccounts

Response

Returns [Account]

Arguments
NameDescription
_ids - [ID!]!
tenant - ID

Example

Query
mutation DeactivateManyAccounts(
  $_ids: [ID!]!,
  $tenant: ID
) {
  deactivateManyAccounts(
    _ids: $_ids,
    tenant: $tenant
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"_ids": [4], "tenant": 4}
Response
{
  "data": {
    "deactivateManyAccounts": [
      {
        "ARUser": true,
        "_id": "4",
        "actions": 123,
        "agoraUid": "abc123",
        "authorizedSites": [Site],
        "authorizedSitesFlattened": [Site],
        "authorizedSitesIds": [4],
        "chat": 123,
        "clientId": "4",
        "clientMixedRealityEnabled": true,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "defaultTimeZone": "abc123",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "email": "abc123",
        "feed": 987,
        "filters": [AccountFilter],
        "firstLogin": true,
        "folder": AccountFolder,
        "folderId": "4",
        "gps": [987.65],
        "impersonatedBy": "4",
        "impersonatedById": "4",
        "inputs": [Input],
        "isActive": true,
        "isContact": false,
        "isPlatformAdmin": false,
        "issues": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lastLogin": "2007-12-03T10:15:30Z",
        "mobileTabs": ["abc123"],
        "myClearances": [MyClearances],
        "name": "xyz789",
        "onBoarding": AccountOnBoarding,
        "photo": "xyz789",
        "preferences": AccountPreferences,
        "protected": true,
        "recoveryEmail": "xyz789",
        "requiresPasswordReset": false,
        "roles": [Role],
        "rolesIds": ["4"],
        "seenFeatures": {},
        "ssoLogin": true,
        "system": false,
        "tabs": [Tab],
        "teams": [Team],
        "template": AccountTemplate,
        "templateId": 4,
        "tenantId": 4,
        "tutorialCompleted": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "username": "xyz789"
      }
    ]
  }
}

deleteAlarmTask

Response

Returns a JSON

Arguments
NameDescription
taskId - String!Task id

Example

Query
mutation DeleteAlarmTask($taskId: String!) {
  deleteAlarmTask(taskId: $taskId)
}
Variables
{"taskId": "xyz789"}
Response
{"data": {"deleteAlarmTask": {}}}

deleteAnchorsBySpatialAnchorId

Response

Returns a DeleteManyReturnType

Arguments
NameDescription
spatialAnchorId - String!

Example

Query
mutation DeleteAnchorsBySpatialAnchorId($spatialAnchorId: String!) {
  deleteAnchorsBySpatialAnchorId(spatialAnchorId: $spatialAnchorId) {
    deleted
    found
    status
  }
}
Variables
{"spatialAnchorId": "abc123"}
Response
{
  "data": {
    "deleteAnchorsBySpatialAnchorId": {
      "deleted": 123,
      "found": 123,
      "status": false
    }
  }
}

deleteChatRoom

Response

Returns a ChatRoom

Arguments
NameDescription
tenant - ID
where - ChatRoomWhereUniqueInput!

Example

Query
mutation DeleteChatRoom(
  $tenant: ID,
  $where: ChatRoomWhereUniqueInput!
) {
  deleteChatRoom(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ChatRoomWhereUniqueInput}
Response
{
  "data": {
    "deleteChatRoom": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "xyz789",
      "previewedBy": [Account],
      "previewedByIds": [4],
      "protected": false,
      "room": Room,
      "roomId": "xyz789",
      "system": true,
      "type": "GROUP_CHAT",
      "unreadMessages": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteContact

Response

Returns a Contact

Arguments
NameDescription
tenant - ID
where - ContactWhereUniqueInput!

Example

Query
mutation DeleteContact(
  $tenant: ID,
  $where: ContactWhereUniqueInput!
) {
  deleteContact(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{
  "tenant": "4",
  "where": ContactWhereUniqueInput
}
Response
{
  "data": {
    "deleteContact": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "user": Account,
      "userContact": Account,
      "userContactId": "4",
      "userId": 4
    }
  }
}

deleteDashboardDraft

Response

Returns a DashboardDraft

Arguments
NameDescription
tenant - ID
where - DashboardDraftWhereUniqueInput!

Example

Query
mutation DeleteDashboardDraft(
  $tenant: ID,
  $where: DashboardDraftWhereUniqueInput!
) {
  deleteDashboardDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    dashboard {
      ...DashboardFragment
    }
    dashboardId
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    updatedAt
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"tenant": 4, "where": DashboardDraftWhereUniqueInput}
Response
{
  "data": {
    "deleteDashboardDraft": {
      "_id": 4,
      "account": Account,
      "accountId": 4,
      "autoRefresh": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "dashboard": Dashboard,
      "dashboardId": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "widgets": [Widget]
    }
  }
}

deleteInvite

Response

Returns an Invite

Arguments
NameDescription
_id - String!

Example

Query
mutation DeleteInvite($_id: String!) {
  deleteInvite(_id: $_id) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{"_id": "abc123"}
Response
{
  "data": {
    "deleteInvite": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": false,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

deleteInviteByEmail

Response

Returns an Invite

Arguments
NameDescription
email - String!
type - String!

Example

Query
mutation DeleteInviteByEmail(
  $email: String!,
  $type: String!
) {
  deleteInviteByEmail(
    email: $email,
    type: $type
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "email": "xyz789",
  "type": "abc123"
}
Response
{
  "data": {
    "deleteInviteByEmail": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": true,
      "token": "xyz789",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

deleteManyAccounts

Response

Returns [Account]

Arguments
NameDescription
_ids - [ID]
tenant - ID

Example

Query
mutation DeleteManyAccounts(
  $_ids: [ID],
  $tenant: ID
) {
  deleteManyAccounts(
    _ids: $_ids,
    tenant: $tenant
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "_ids": ["4"],
  "tenant": "4"
}
Response
{
  "data": {
    "deleteManyAccounts": [
      {
        "ARUser": false,
        "_id": 4,
        "actions": 987,
        "agoraUid": "xyz789",
        "authorizedSites": [Site],
        "authorizedSitesFlattened": [Site],
        "authorizedSitesIds": [4],
        "chat": 987,
        "clientId": 4,
        "clientMixedRealityEnabled": false,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "defaultTimeZone": "xyz789",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "email": "xyz789",
        "feed": 987,
        "filters": [AccountFilter],
        "firstLogin": true,
        "folder": AccountFolder,
        "folderId": "4",
        "gps": [987.65],
        "impersonatedBy": 4,
        "impersonatedById": 4,
        "inputs": [Input],
        "isActive": false,
        "isContact": false,
        "isPlatformAdmin": true,
        "issues": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "lastLogin": "2007-12-03T10:15:30Z",
        "mobileTabs": ["abc123"],
        "myClearances": [MyClearances],
        "name": "xyz789",
        "onBoarding": AccountOnBoarding,
        "photo": "abc123",
        "preferences": AccountPreferences,
        "protected": false,
        "recoveryEmail": "xyz789",
        "requiresPasswordReset": true,
        "roles": [Role],
        "rolesIds": [4],
        "seenFeatures": {},
        "ssoLogin": false,
        "system": true,
        "tabs": [Tab],
        "teams": [Team],
        "template": AccountTemplate,
        "templateId": 4,
        "tenantId": "4",
        "tutorialCompleted": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "username": "abc123"
      }
    ]
  }
}

deleteManyActionDrafts

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyActionDrafts($_ids: [ID]) {
  deleteManyActionDrafts(_ids: $_ids)
}
Variables
{"_ids": [4]}
Response
{"data": {"deleteManyActionDrafts": 123}}

deleteManyAreaFolders

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyAreaFolders($_ids: [ID]) {
  deleteManyAreaFolders(_ids: $_ids)
}
Variables
{"_ids": [4]}
Response
{"data": {"deleteManyAreaFolders": 123}}

deleteManyAreas

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyAreas($_ids: [ID]) {
  deleteManyAreas(_ids: $_ids)
}
Variables
{"_ids": ["4"]}
Response
{"data": {"deleteManyAreas": 987}}

deleteManyInvites

Response

Returns [Invite]

Arguments
NameDescription
_ids - [String!]!
tenant - ID

Example

Query
mutation DeleteManyInvites(
  $_ids: [String!]!,
  $tenant: ID
) {
  deleteManyInvites(
    _ids: $_ids,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "_ids": ["xyz789"],
  "tenant": "4"
}
Response
{
  "data": {
    "deleteManyInvites": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "extra": InviteExtra,
        "lastSentAt": "2007-12-03T10:15:30Z",
        "protected": false,
        "system": true,
        "token": "xyz789",
        "type": "invite_user_to_application",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "validUntil": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

deleteManyInvitesByEmail

Response

Returns [Invite]

Arguments
NameDescription
emails - [String!]!
type - String!

Example

Query
mutation DeleteManyInvitesByEmail(
  $emails: [String!]!,
  $type: String!
) {
  deleteManyInvitesByEmail(
    emails: $emails,
    type: $type
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "emails": ["abc123"],
  "type": "xyz789"
}
Response
{
  "data": {
    "deleteManyInvitesByEmail": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "extra": InviteExtra,
        "lastSentAt": "2007-12-03T10:15:30Z",
        "protected": false,
        "system": false,
        "token": "xyz789",
        "type": "invite_user_to_application",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "validUntil": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

deleteManyIssueCatalogFolders

Response

Returns [IssueCatalogFolder]

Arguments
NameDescription
limit - IntDefault = 100
orderBy - [IssueCatalogFolderOrderByInput]Default = []
skip - IntDefault = 0
tenant - ID
where - IssueCatalogFolderWhereInputDefault = {}

Example

Query
mutation DeleteManyIssueCatalogFolders(
  $limit: Int,
  $orderBy: [IssueCatalogFolderOrderByInput],
  $skip: Int,
  $tenant: ID,
  $where: IssueCatalogFolderWhereInput
) {
  deleteManyIssueCatalogFolders(
    limit: $limit,
    orderBy: $orderBy,
    skip: $skip,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"limit": 100, "orderBy": [""], "skip": 0, "tenant": 4, "where": {}}
Response
{
  "data": {
    "deleteManyIssueCatalogFolders": [
      {
        "_id": "4",
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueCatalogFoldersCount": 987,
        "issueCatalogsCount": 123,
        "name": "abc123",
        "parent": IssueCatalogFolder,
        "parentId": 4,
        "parentsTree": [IssueCatalogFolder],
        "parentsTreeIds": ["4"],
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

deleteManyIssueCatalogs

Response

Returns [IssueCatalog]

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyIssueCatalogs($_ids: [ID]) {
  deleteManyIssueCatalogs(_ids: $_ids) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": [4]}
Response
{
  "data": {
    "deleteManyIssueCatalogs": [
      {
        "_id": 4,
        "acknowledgeRequired": false,
        "allowTracking": true,
        "approval": IssueCatalogApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueCatalogAssignedSkill],
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "element": Element,
        "elementId": "4",
        "emailsToSendReport": ["xyz789"],
        "filterTasksByLabels": true,
        "folder": IssueCatalogFolder,
        "folderId": "4",
        "glarPrefix": "xyz789",
        "inputs": [Input],
        "isActive": false,
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsApproval": true,
        "paperForm": IssueCatalogPaperForm,
        "protected": true,
        "remarksOnTasks": true,
        "report": IssueCatalogReport,
        "requestDescription": true,
        "scheduleTasks": true,
        "scheduler": [IssueCatalogScheduler],
        "scoreInputs": true,
        "sequential": false,
        "site": Site,
        "siteId": "4",
        "stateMachine": StateMachine,
        "stateMachineId": "4",
        "system": false,
        "taskMappings": [TaskMapping],
        "tasksFallbackStateMachine": StateMachine,
        "tasksFallbackStateMachineId": "4",
        "template": IssueTemplate,
        "templateId": "4",
        "toolLegendAndComments": false,
        "totalExecutionInstances": 987,
        "updateLog": [IssueCatalogUpdateLog],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

deleteManyIssueTemplateFolders

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyIssueTemplateFolders($_ids: [ID]) {
  deleteManyIssueTemplateFolders(_ids: $_ids)
}
Variables
{"_ids": [4]}
Response
{"data": {"deleteManyIssueTemplateFolders": 987}}

deleteManyIssueTemplates

Response

Returns an Int

Arguments
NameDescription
where - IssueTemplateWhereInput

Example

Query
mutation DeleteManyIssueTemplates($where: IssueTemplateWhereInput) {
  deleteManyIssueTemplates(where: $where)
}
Variables
{"where": IssueTemplateWhereInput}
Response
{"data": {"deleteManyIssueTemplates": 987}}

deleteManyLocations

Response

Returns [Location]

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyLocations($_ids: [ID]) {
  deleteManyLocations(_ids: $_ids) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": [4]}
Response
{
  "data": {
    "deleteManyLocations": [
      {
        "_id": 4,
        "address": LocationAddress,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "protected": true,
        "storage": Storage,
        "storageId": 4,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

deleteManyMaterialItems

Response

Returns [MaterialItem]

Arguments
NameDescription
_ids - [ID]
material_ids - [ID]
storage_id - ID

Example

Query
mutation DeleteManyMaterialItems(
  $_ids: [ID],
  $material_ids: [ID],
  $storage_id: ID
) {
  deleteManyMaterialItems(
    _ids: $_ids,
    material_ids: $material_ids,
    storage_id: $storage_id
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "_ids": ["4"],
  "material_ids": [4],
  "storage_id": "4"
}
Response
{
  "data": {
    "deleteManyMaterialItems": [
      {
        "_id": "4",
        "buyOrder": "abc123",
        "code": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "customFields": [MaterialItemCustomField],
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "expirationDate": "2007-12-03T10:15:30Z",
        "expirationDateType": "xyz789",
        "hiddenFields": ["xyz789"],
        "location": Location,
        "locationId": "4",
        "material": Material,
        "materialId": 4,
        "protected": false,
        "quantity": 123.45,
        "serialNumber": "xyz789",
        "state": "abc123",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

deleteManyRoles

Response

Returns [Role]

Arguments
NameDescription
_ids - [ID!]!

Example

Query
mutation DeleteManyRoles($_ids: [ID!]!) {
  deleteManyRoles(_ids: $_ids) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": [4]}
Response
{
  "data": {
    "deleteManyRoles": [
      {
        "_id": "4",
        "assignedGroups": [RoleAssignedGroup],
        "clearances": [MyClearances],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "name": "xyz789",
        "protected": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

deleteManySites

Response

Returns [Site]

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManySites($_ids: [ID]) {
  deleteManySites(_ids: $_ids) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": ["4"]}
Response
{
  "data": {
    "deleteManySites": [
      {
        "_id": 4,
        "accessToSites": [Site],
        "actionsCount": 987,
        "awaitingApproval": false,
        "coordinates": [123.45],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "devicesCount": 987,
        "elements": [Element],
        "elementsCount": 123,
        "inputs": [Input],
        "isRoot": false,
        "issues": [IssueInstance],
        "issuesCount": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [SiteLog],
        "myCalendarCount": 987,
        "myIssuesCount": 987,
        "name": "abc123",
        "nearbySites": [Site],
        "needsApproval": false,
        "parent": Site,
        "parentId": 4,
        "parentsTree": [Site],
        "parentsTreeIds": [4],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": 4,
        "pendingInputs": [Input],
        "protected": true,
        "responsibles": Responsibles,
        "sites": [Site],
        "sitesCount": 123,
        "system": false,
        "template": SiteTemplate,
        "templateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

deleteManyTaskMappingDrafts

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
issueCatalogDraft - ID!
taskMappingsToDelete - [ID!]!

Example

Query
mutation DeleteManyTaskMappingDrafts(
  $issueCatalogDraft: ID!,
  $taskMappingsToDelete: [ID!]!
) {
  deleteManyTaskMappingDrafts(
    issueCatalogDraft: $issueCatalogDraft,
    taskMappingsToDelete: $taskMappingsToDelete
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "issueCatalogDraft": "4",
  "taskMappingsToDelete": [4]
}
Response
{
  "data": {
    "deleteManyTaskMappingDrafts": {
      "_id": 4,
      "acknowledgeRequired": true,
      "allowTracking": true,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": false,
      "remarksOnTasks": true,
      "report": IssueCatalogDraftReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": false,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": "4",
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteManyTaskTemplateDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
_id - ID!
taskTemplatesToDelete - [ID!]!

Example

Query
mutation DeleteManyTaskTemplateDrafts(
  $_id: ID!,
  $taskTemplatesToDelete: [ID!]!
) {
  deleteManyTaskTemplateDrafts(
    _id: $_id,
    taskTemplatesToDelete: $taskTemplatesToDelete
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"_id": 4, "taskTemplatesToDelete": ["4"]}
Response
{
  "data": {
    "deleteManyTaskTemplateDrafts": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

deleteManyTaskTemplateGroupDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
_ids - [ID!]!
draftId - ID!

Example

Query
mutation DeleteManyTaskTemplateGroupDrafts(
  $_ids: [ID!]!,
  $draftId: ID!
) {
  deleteManyTaskTemplateGroupDrafts(
    _ids: $_ids,
    draftId: $draftId
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"_ids": [4], "draftId": 4}
Response
{
  "data": {
    "deleteManyTaskTemplateGroupDrafts": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

deleteManyTaskTemplateGroups

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyTaskTemplateGroups($_ids: [ID]) {
  deleteManyTaskTemplateGroups(_ids: $_ids)
}
Variables
{"_ids": ["4"]}
Response
{"data": {"deleteManyTaskTemplateGroups": 987}}

deleteManyTaskTemplates

Response

Returns an Int

Arguments
NameDescription
_ids - [ID]

Example

Query
mutation DeleteManyTaskTemplates($_ids: [ID]) {
  deleteManyTaskTemplates(_ids: $_ids)
}
Variables
{"_ids": ["4"]}
Response
{"data": {"deleteManyTaskTemplates": 123}}

deleteManyToolItems

Response

Returns [ToolItem]

Arguments
NameDescription
_ids - [ID]
storage_id - ID
tool_ids - [ID]

Example

Query
mutation DeleteManyToolItems(
  $_ids: [ID],
  $storage_id: ID,
  $tool_ids: [ID]
) {
  deleteManyToolItems(
    _ids: $_ids,
    storage_id: $storage_id,
    tool_ids: $tool_ids
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{
  "_ids": [4],
  "storage_id": "4",
  "tool_ids": [4]
}
Response
{
  "data": {
    "deleteManyToolItems": [
      {
        "_id": "4",
        "associatedWith": [ToolItem],
        "available": true,
        "code": "abc123",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "customFields": [ToolItemCustomField],
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "hiddenFields": ["xyz789"],
        "location": Location,
        "locationId": 4,
        "protected": false,
        "serialNumber": "abc123",
        "status": "IN_MAINTENANCE",
        "system": false,
        "tool": Tool,
        "toolId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usedBy": Account,
        "usedById": "4",
        "usedIn": IssueInstance,
        "usedInId": "4"
      }
    ]
  }
}

deleteManyUnits

Response

Returns an Int

Arguments
NameDescription
_ids - [ID!]!

Example

Query
mutation DeleteManyUnits($_ids: [ID!]!) {
  deleteManyUnits(_ids: $_ids)
}
Variables
{"_ids": [4]}
Response
{"data": {"deleteManyUnits": 123}}

deleteMarkersByAnchorId

Response

Returns a DeleteManyReturnType

Arguments
NameDescription
anchorId - String!

Example

Query
mutation DeleteMarkersByAnchorId($anchorId: String!) {
  deleteMarkersByAnchorId(anchorId: $anchorId) {
    deleted
    found
    status
  }
}
Variables
{"anchorId": "abc123"}
Response
{
  "data": {
    "deleteMarkersByAnchorId": {"deleted": 987, "found": 123, "status": true}
  }
}

deleteOneAccount

Response

Returns an Account

Arguments
NameDescription
tenant - ID
where - AccountWhereUniqueInput!

Example

Query
mutation DeleteOneAccount(
  $tenant: ID,
  $where: AccountWhereUniqueInput!
) {
  deleteOneAccount(
    tenant: $tenant,
    where: $where
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "tenant": "4",
  "where": AccountWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneAccount": {
      "ARUser": false,
      "_id": 4,
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": "4",
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "xyz789"
    }
  }
}

deleteOneAccountFolder

Response

Returns an AccountFolder

Arguments
NameDescription
tenant - ID
where - AccountFolderWhereUniqueInput!

Example

Query
mutation DeleteOneAccountFolder(
  $tenant: ID,
  $where: AccountFolderWhereUniqueInput!
) {
  deleteOneAccountFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AccountFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneAccountFolder": {
      "_id": 4,
      "accountFoldersCount": 123,
      "accountsCount": 123,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": AccountFolder,
      "parentId": 4,
      "parentsTree": [AccountFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneAccountTemplateFolder

Response

Returns an AccountTemplateFolder

Arguments
NameDescription
tenant - ID
where - AccountTemplateFolderWhereUniqueInput!

Example

Query
mutation DeleteOneAccountTemplateFolder(
  $tenant: ID,
  $where: AccountTemplateFolderWhereUniqueInput!
) {
  deleteOneAccountTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AccountTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneAccountTemplateFolder": {
      "_id": 4,
      "accountTemplateFoldersCount": 123,
      "accountTemplatesCount": 123,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": AccountTemplateFolder,
      "parentId": 4,
      "parentsTree": [AccountTemplateFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneAction

Response

Returns an Action

Arguments
NameDescription
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
mutation DeleteOneAction(
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  deleteOneAction(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ActionWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneAction": {
      "ID": 123,
      "_id": 4,
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": ["4"],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "isLocked": false,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneActionDraft

Response

Returns an ActionDraft

Arguments
NameDescription
tenant - ID
where - ActionDraftWhereUniqueInput!

Example

Query
mutation DeleteOneActionDraft(
  $tenant: ID,
  $where: ActionDraftWhereUniqueInput!
) {
  deleteOneActionDraft(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ActionDraftWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneActionDraft": {
      "ID": 123,
      "_id": 4,
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": ActionDraftDueDate,
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": ["4"],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "issueName": "xyz789",
      "issues": [ActionDraftIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionDraftLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneAnchor

Response

Returns an Anchor

Arguments
NameDescription
tenant - ID
where - AnchorWhereUniqueInput!

Example

Query
mutation DeleteOneAnchor(
  $tenant: ID,
  $where: AnchorWhereUniqueInput!
) {
  deleteOneAnchor(
    tenant: $tenant,
    where: $where
  ) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AnchorWhereUniqueInput}
Response
{
  "data": {
    "deleteOneAnchor": {
      "_id": "4",
      "area": Area,
      "areaId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "photo": File,
      "photoId": "4",
      "protected": true,
      "spatialAnchorId": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneAnchorImage

Response

Returns an AnchorImage

Arguments
NameDescription
tenant - ID
where - AnchorImageWhereUniqueInput!

Example

Query
mutation DeleteOneAnchorImage(
  $tenant: ID,
  $where: AnchorImageWhereUniqueInput!
) {
  deleteOneAnchorImage(
    tenant: $tenant,
    where: $where
  ) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": AnchorImageWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneAnchorImage": {
      "_id": "4",
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "height": 123.45,
      "markers": [Marker],
      "markersCount": 123,
      "name": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneArConfiguration

Response

Returns an ArConfiguration

Arguments
NameDescription
tenant - ID
where - ArConfigurationWhereUniqueInput!

Example

Query
mutation DeleteOneArConfiguration(
  $tenant: ID,
  $where: ArConfigurationWhereUniqueInput!
) {
  deleteOneArConfiguration(
    tenant: $tenant,
    where: $where
  ) {
    _id
    blockedMarkersColor
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    finishedMarkersColor
    markersOnFinishingTask
    markersSize
    markersToShow
    markersType
    notSequentialMarkersColor
    protected
    sequentialMarkersColor
    system
    timerFinishTask
    typeOfInput
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ArConfigurationWhereUniqueInput}
Response
{
  "data": {
    "deleteOneArConfiguration": {
      "_id": "4",
      "blockedMarkersColor": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "finishedMarkersColor": "xyz789",
      "markersOnFinishingTask": "CLOSE",
      "markersSize": 987,
      "markersToShow": "ALL",
      "markersType": "ARROW",
      "notSequentialMarkersColor": "xyz789",
      "protected": false,
      "sequentialMarkersColor": "abc123",
      "system": true,
      "timerFinishTask": "FIVESECONDS",
      "typeOfInput": "BASIC",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneArea

Response

Returns an Area

Arguments
NameDescription
tenant - ID
where - AreaWhereUniqueInput!

Example

Query
mutation DeleteOneArea(
  $tenant: ID,
  $where: AreaWhereUniqueInput!
) {
  deleteOneArea(
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AreaWhereUniqueInput}
Response
{
  "data": {
    "deleteOneArea": {
      "_id": 4,
      "anchors": [Anchor],
      "anchorsIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": AreaFolder,
      "folderId": "4",
      "name": "xyz789",
      "photo": File,
      "photoId": 4,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneAreaFolder

Response

Returns an AreaFolder

Arguments
NameDescription
tenant - ID
where - AreaFolderWhereUniqueInput!

Example

Query
mutation DeleteOneAreaFolder(
  $tenant: ID,
  $where: AreaFolderWhereUniqueInput!
) {
  deleteOneAreaFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": AreaFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneAreaFolder": {
      "_id": 4,
      "areaFoldersCount": 123,
      "areasCount": 987,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": AreaFolder,
      "parentId": 4,
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneComment

Response

Returns a Comment

Arguments
NameDescription
tenant - ID
where - CommentWhereUniqueInput!

Example

Query
mutation DeleteOneComment(
  $tenant: ID,
  $where: CommentWhereUniqueInput!
) {
  deleteOneComment(
    tenant: $tenant,
    where: $where
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": CommentWhereUniqueInput}
Response
{
  "data": {
    "deleteOneComment": {
      "_id": 4,
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": 4,
      "rootReplies": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneContact

Response

Returns a Contact

Arguments
NameDescription
tenant - ID
where - ContactWhereUniqueInput!

Example

Query
mutation DeleteOneContact(
  $tenant: ID,
  $where: ContactWhereUniqueInput!
) {
  deleteOneContact(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{"tenant": 4, "where": ContactWhereUniqueInput}
Response
{
  "data": {
    "deleteOneContact": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "user": Account,
      "userContact": Account,
      "userContactId": "4",
      "userId": "4"
    }
  }
}

deleteOneDashboard

Response

Returns a Dashboard

Arguments
NameDescription
tenant - ID
where - DashboardWhereUniqueInput!

Example

Query
mutation DeleteOneDashboard(
  $tenant: ID,
  $where: DashboardWhereUniqueInput!
) {
  deleteOneDashboard(
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    default
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...DashboardFolderFragment
    }
    folderId
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"tenant": 4, "where": DashboardWhereUniqueInput}
Response
{
  "data": {
    "deleteOneDashboard": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "autoRefresh": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "default": false,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "folder": DashboardFolder,
      "folderId": "4",
      "name": "xyz789",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "widgets": [Widget]
    }
  }
}

deleteOneDashboardFolder

Response

Returns a DashboardFolder

Arguments
NameDescription
tenant - ID
where - DashboardFolderWhereUniqueInput!

Example

Query
mutation DeleteOneDashboardFolder(
  $tenant: ID,
  $where: DashboardFolderWhereUniqueInput!
) {
  deleteOneDashboardFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboardFoldersCount
    dashboardsCount
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...DashboardFolderFragment
    }
    parentId
    parentsTree {
      ...DashboardFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": DashboardFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneDashboardFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "dashboardFoldersCount": 987,
      "dashboardsCount": 123,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "parent": DashboardFolder,
      "parentId": 4,
      "parentsTree": [DashboardFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneDevice

Response

Returns a Device

Arguments
NameDescription
tenant - ID
where - DeviceWhereUniqueInput!

Example

Query
mutation DeleteOneDevice(
  $tenant: ID,
  $where: DeviceWhereUniqueInput!
) {
  deleteOneDevice(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": DeviceWhereUniqueInput}
Response
{
  "data": {
    "deleteOneDevice": {
      "_id": "4",
      "address": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "abc123",
      "name": "abc123",
      "protected": true,
      "protocol": "generic",
      "site": Site,
      "siteId": "4",
      "status": "abc123",
      "system": true,
      "topic": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneElement

Response

Returns an Element

Arguments
NameDescription
tenant - ID
where - ElementWhereUniqueInput!

Example

Query
mutation DeleteOneElement(
  $tenant: ID,
  $where: ElementWhereUniqueInput!
) {
  deleteOneElement(
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ElementWhereUniqueInput}
Response
{
  "data": {
    "deleteOneElement": {
      "_id": 4,
      "arLocked": true,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "elements": [Element],
      "elementsCount": 123,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": "4",
      "name": "xyz789",
      "needsApproval": true,
      "parent": Element,
      "parentId": 4,
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": "4",
      "protected": true,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": 4,
      "system": true,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 123,
      "template": ElementTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneElementSiteReport

Response

Returns an ElementSiteReport

Arguments
NameDescription
tenant - ID
where - ElementSiteReportWhereUniqueInput!

Example

Query
mutation DeleteOneElementSiteReport(
  $tenant: ID,
  $where: ElementSiteReportWhereUniqueInput!
) {
  deleteOneElementSiteReport(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ElementSiteReportWhereUniqueInput}
Response
{
  "data": {
    "deleteOneElementSiteReport": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementTemplate": ElementTemplate,
      "elementTemplateId": "4",
      "folder": ElementSiteReportFolder,
      "folderId": 4,
      "generalFields": ["description"],
      "inputFields": [4],
      "myConfig": ElementSiteReportConfig,
      "name": "abc123",
      "protected": false,
      "siteTemplate": SiteTemplate,
      "siteTemplateId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneElementSiteReportConfig

Response

Returns an ElementSiteReportConfig

Arguments
NameDescription
tenant - ID
where - ElementSiteReportConfigWhereUniqueInput!

Example

Query
mutation DeleteOneElementSiteReportConfig(
  $tenant: ID,
  $where: ElementSiteReportConfigWhereUniqueInput!
) {
  deleteOneElementSiteReportConfig(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReport {
      ...ElementSiteReportFragment
    }
    elementSiteReportId
    generalFieldsToHide
    inputFieldsToHide
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ElementSiteReportConfigWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneElementSiteReportConfig": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementSiteReport": ElementSiteReport,
      "elementSiteReportId": "4",
      "generalFieldsToHide": ["abc123"],
      "inputFieldsToHide": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneElementSiteReportFolder

Response

Returns an ElementSiteReportFolder

Arguments
NameDescription
tenant - ID
where - ElementSiteReportFolderWhereUniqueInput!

Example

Query
mutation DeleteOneElementSiteReportFolder(
  $tenant: ID,
  $where: ElementSiteReportFolderWhereUniqueInput!
) {
  deleteOneElementSiteReportFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": ElementSiteReportFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneElementSiteReportFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementSiteReportFoldersCount": 987,
      "elementSiteReportsCount": 987,
      "name": "xyz789",
      "parent": ElementSiteReportFolder,
      "parentId": 4,
      "parentsTree": [ElementSiteReportFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneElementTemplate

Response

Returns an ElementTemplate

Arguments
NameDescription
tenant - ID
where - ElementTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneElementTemplate(
  $tenant: ID,
  $where: ElementTemplateWhereUniqueInput!
) {
  deleteOneElementTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ElementTemplateWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneElementTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": ElementTemplateFolder,
      "folderId": 4,
      "frame": ElementTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "system": false,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneElementTemplateFolder

Response

Returns an ElementTemplateFolder

Arguments
NameDescription
tenant - ID
where - ElementTemplateFolderWhereUniqueInput!

Example

Query
mutation DeleteOneElementTemplateFolder(
  $tenant: ID,
  $where: ElementTemplateFolderWhereUniqueInput!
) {
  deleteOneElementTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": ElementTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneElementTemplateFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementTemplateFoldersCount": 987,
      "elementTemplatesCount": 987,
      "name": "xyz789",
      "parent": ElementTemplateFolder,
      "parentId": 4,
      "parentsTree": [ElementTemplateFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneHeatmapConfiguration

Response

Returns a HeatmapConfiguration

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationWhereUniqueInput!

Example

Query
mutation DeleteOneHeatmapConfiguration(
  $tenant: ID,
  $where: HeatmapConfigurationWhereUniqueInput!
) {
  deleteOneHeatmapConfiguration(
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": HeatmapConfigurationWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneHeatmapConfiguration": {
      "_id": 4,
      "colorsRange": [HeatmapConfigurationColorsRange],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "protected": true,
      "system": false,
      "taskTime": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneHeatmapConfigurationDraft

Response

Returns a HeatmapConfigurationDraft

Arguments
NameDescription
tenant - ID
where - HeatmapConfigurationDraftWhereUniqueInput!

Example

Query
mutation DeleteOneHeatmapConfigurationDraft(
  $tenant: ID,
  $where: HeatmapConfigurationDraftWhereUniqueInput!
) {
  deleteOneHeatmapConfigurationDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": HeatmapConfigurationDraftWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneHeatmapConfigurationDraft": {
      "_id": "4",
      "colorsRange": [
        HeatmapConfigurationDraftColorsRange
      ],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplate": IssueTemplate,
      "issueTemplateDraft": IssueTemplateDraft,
      "issueTemplateDraftId": 4,
      "issueTemplateId": "4",
      "protected": false,
      "system": false,
      "taskTime": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneInvite

Response

Returns an Invite

Arguments
NameDescription
tenant - ID
where - InviteWhereUniqueInput!

Example

Query
mutation DeleteOneInvite(
  $tenant: ID,
  $where: InviteWhereUniqueInput!
) {
  deleteOneInvite(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{"tenant": 4, "where": InviteWhereUniqueInput}
Response
{
  "data": {
    "deleteOneInvite": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": false,
      "token": "xyz789",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

deleteOneIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation DeleteOneIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  deleteOneIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssue": {
      "_id": "4",
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": false,
      "customArConfiguration": true,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["abc123"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

deleteOneIssueCatalog

Response

Returns an IssueCatalog

Arguments
NameDescription
tenant - ID
where - IssueCatalogWhereUniqueInput!

Example

Query
mutation DeleteOneIssueCatalog(
  $tenant: ID,
  $where: IssueCatalogWhereUniqueInput!
) {
  deleteOneIssueCatalog(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueCatalogWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneIssueCatalog": {
      "_id": 4,
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": true,
      "paperForm": IssueCatalogPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": false,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneIssueCatalogDraft

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
tenant - ID
where - IssueCatalogDraftWhereUniqueInput!

Example

Query
mutation DeleteOneIssueCatalogDraft(
  $tenant: ID,
  $where: IssueCatalogDraftWhereUniqueInput!
) {
  deleteOneIssueCatalogDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": IssueCatalogDraftWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssueCatalogDraft": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": false,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsApproval": true,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogDraftReport,
      "requestDescription": true,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneIssueCatalogFolder

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
tenant - ID
where - IssueCatalogFolderWhereUniqueInput!

Example

Query
mutation DeleteOneIssueCatalogFolder(
  $tenant: ID,
  $where: IssueCatalogFolderWhereUniqueInput!
) {
  deleteOneIssueCatalogFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueCatalogFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneIssueCatalogFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 123,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": 4,
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneIssueReport

Response

Returns an IssueReport

Arguments
NameDescription
tenant - ID
where - IssueReportWhereUniqueInput!

Example

Query
mutation DeleteOneIssueReport(
  $tenant: ID,
  $where: IssueReportWhereUniqueInput!
) {
  deleteOneIssueReport(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": IssueReportWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssueReport": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "distinctIssueReportValues": IssueReportDistinctValues,
      "folder": IssueReportFolder,
      "folderId": "4",
      "generalFields": ["actions"],
      "issueCatalog": IssueCatalog,
      "issueCatalogId": 4,
      "myConfig": IssueReportConfig,
      "name": "abc123",
      "protected": true,
      "system": true,
      "taskConditionalInputFields": ["4"],
      "taskInputFields": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneIssueReportConfig

Response

Returns an IssueReportConfig

Arguments
NameDescription
tenant - ID
where - IssueReportConfigWhereUniqueInput!

Example

Query
mutation DeleteOneIssueReportConfig(
  $tenant: ID,
  $where: IssueReportConfigWhereUniqueInput!
) {
  deleteOneIssueReportConfig(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    generalFieldsToHide
    issueReport {
      ...IssueReportFragment
    }
    issueReportId
    protected
    system
    taskInputFieldsToHide
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": IssueReportConfigWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneIssueReportConfig": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "generalFieldsToHide": ["abc123"],
      "issueReport": IssueReport,
      "issueReportId": "4",
      "protected": true,
      "system": true,
      "taskInputFieldsToHide": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneIssueReportFolder

Response

Returns an IssueReportFolder

Arguments
NameDescription
tenant - ID
where - IssueReportFolderWhereUniqueInput!

Example

Query
mutation DeleteOneIssueReportFolder(
  $tenant: ID,
  $where: IssueReportFolderWhereUniqueInput!
) {
  deleteOneIssueReportFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": IssueReportFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssueReportFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueReportFoldersCount": 987,
      "issueReportsCount": 987,
      "name": "abc123",
      "parent": IssueReportFolder,
      "parentId": "4",
      "parentsTree": [IssueReportFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneIssueTemplate

Response

Returns an IssueTemplate

Arguments
NameDescription
tenant - ID
where - IssueTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneIssueTemplate(
  $tenant: ID,
  $where: IssueTemplateWhereUniqueInput!
) {
  deleteOneIssueTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"tenant": 4, "where": IssueTemplateWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssueTemplate": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

deleteOneIssueTemplateDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
tenant - ID
where - IssueTemplateDraftWhereUniqueInput!

Example

Query
mutation DeleteOneIssueTemplateDraft(
  $tenant: ID,
  $where: IssueTemplateDraftWhereUniqueInput!
) {
  deleteOneIssueTemplateDraft(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"tenant": 4, "where": IssueTemplateDraftWhereUniqueInput}
Response
{
  "data": {
    "deleteOneIssueTemplateDraft": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

deleteOneIssueTemplateFolder

Response

Returns an IssueTemplateFolder

Arguments
NameDescription
tenant - ID
where - IssueTemplateFolderWhereUniqueInput!

Example

Query
mutation DeleteOneIssueTemplateFolder(
  $tenant: ID,
  $where: IssueTemplateFolderWhereUniqueInput!
) {
  deleteOneIssueTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": IssueTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneIssueTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplateFoldersCount": 987,
      "issueTemplatesCount": 987,
      "name": "xyz789",
      "parent": IssueTemplateFolder,
      "parentId": 4,
      "parentsTree": [IssueTemplateFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneLabel

Response

Returns a Label

Arguments
NameDescription
tenant - ID
where - LabelWhereUniqueInput!

Example

Query
mutation DeleteOneLabel(
  $tenant: ID,
  $where: LabelWhereUniqueInput!
) {
  deleteOneLabel(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": LabelWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneLabel": {
      "_id": 4,
      "context": "Account",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "icon": "abc123",
      "labelValues": [LabelValue],
      "name": "xyz789",
      "order": 123,
      "protected": false,
      "singleSelection": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneLabelValue

Response

Returns a LabelValue

Arguments
NameDescription
tenant - ID
where - LabelValueWhereUniqueInput!

Example

Query
mutation DeleteOneLabelValue(
  $tenant: ID,
  $where: LabelValueWhereUniqueInput!
) {
  deleteOneLabelValue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{
  "tenant": "4",
  "where": LabelValueWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneLabelValue": {
      "_id": "4",
      "backgroundColor": "xyz789",
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "label": Label,
      "labelId": "4",
      "order": 987,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "value": "abc123"
    }
  }
}

deleteOneLocation

Response

Returns a Location

Arguments
NameDescription
tenant - ID
where - LocationWhereUniqueInput!

Example

Query
mutation DeleteOneLocation(
  $tenant: ID,
  $where: LocationWhereUniqueInput!
) {
  deleteOneLocation(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": LocationWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneLocation": {
      "_id": 4,
      "address": LocationAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "protected": true,
      "storage": Storage,
      "storageId": "4",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneMarker

Response

Returns a Marker

Arguments
NameDescription
tenant - ID
where - MarkerWhereUniqueInput!

Example

Query
mutation DeleteOneMarker(
  $tenant: ID,
  $where: MarkerWhereUniqueInput!
) {
  deleteOneMarker(
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": MarkerWhereUniqueInput}
Response
{
  "data": {
    "deleteOneMarker": {
      "_id": 4,
      "anchorId": "abc123",
      "anchorImage": AnchorImage,
      "anchorImageId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "position": [123.45],
      "protected": true,
      "rotation": [987.65],
      "scale": [987.65],
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneMaterial

Response

Returns a Material

Arguments
NameDescription
tenant - ID
where - MaterialWhereUniqueInput!

Example

Query
mutation DeleteOneMaterial(
  $tenant: ID,
  $where: MaterialWhereUniqueInput!
) {
  deleteOneMaterial(
    tenant: $tenant,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": MaterialWhereUniqueInput}
Response
{
  "data": {
    "deleteOneMaterial": {
      "_id": "4",
      "brand": "xyz789",
      "brandModel": "abc123",
      "code": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dimension": MaterialDimension,
      "images": [File],
      "imagesIds": ["4"],
      "iva": 987.65,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "price": 123.45,
      "protected": false,
      "quantity": 987.65,
      "sellingPrice": 987.65,
      "stockPerStorage": [MaterialStockPerStorage],
      "system": true,
      "totalStock": 123,
      "type": "SERIALIZED",
      "unit": Unit,
      "unitId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneMaterialItem

Response

Returns a MaterialItem

Arguments
NameDescription
tenant - ID
where - MaterialItemWhereUniqueInput!

Example

Query
mutation DeleteOneMaterialItem(
  $tenant: ID,
  $where: MaterialItemWhereUniqueInput!
) {
  deleteOneMaterialItem(
    tenant: $tenant,
    where: $where
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": MaterialItemWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneMaterialItem": {
      "_id": "4",
      "buyOrder": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "customFields": [MaterialItemCustomField],
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "expirationDate": "2007-12-03T10:15:30Z",
      "expirationDateType": "xyz789",
      "hiddenFields": ["xyz789"],
      "location": Location,
      "locationId": "4",
      "material": Material,
      "materialId": "4",
      "protected": false,
      "quantity": 987.65,
      "serialNumber": "xyz789",
      "state": "abc123",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneModelInstance

Response

Returns a ModelInstance

Arguments
NameDescription
tenant - ID
where - ModelInstanceWhereUniqueInput!

Example

Query
mutation DeleteOneModelInstance(
  $tenant: ID,
  $where: ModelInstanceWhereUniqueInput!
) {
  deleteOneModelInstance(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ModelInstanceWhereUniqueInput}
Response
{
  "data": {
    "deleteOneModelInstance": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "model": File,
      "modelId": "4",
      "position": [123.45],
      "protected": true,
      "rotation": [123.45],
      "scale": [123.45],
      "spatialAnchorId": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneNfcTag

Response

Returns a NfcTag

Arguments
NameDescription
tenant - ID
where - NfcTagWhereUniqueInput!

Example

Query
mutation DeleteOneNfcTag(
  $tenant: ID,
  $where: NfcTagWhereUniqueInput!
) {
  deleteOneNfcTag(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": NfcTagWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneNfcTag": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "linkedTo": NfcTagLinkedTo,
      "protected": false,
      "system": false,
      "uid": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOnePdfJob

Response

Returns a PdfJob

Arguments
NameDescription
tenant - ID
where - PdfJobWhereUniqueInput!

Example

Query
mutation DeleteOnePdfJob(
  $tenant: ID,
  $where: PdfJobWhereUniqueInput!
) {
  deleteOnePdfJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{
  "tenant": "4",
  "where": PdfJobWhereUniqueInput
}
Response
{
  "data": {
    "deleteOnePdfJob": {
      "_id": 4,
      "contentId": 4,
      "contentType": "issue",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "error": "xyz789",
      "pdfType": "detailed",
      "protected": false,
      "status": "failed",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "url": "xyz789",
      "validUntil": 123
    }
  }
}

deleteOnePost

Response

Returns a Post

Arguments
NameDescription
tenant - ID
where - PostWhereUniqueInput!

Example

Query
mutation DeleteOnePost(
  $tenant: ID,
  $where: PostWhereUniqueInput!
) {
  deleteOnePost(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": PostWhereUniqueInput}
Response
{
  "data": {
    "deleteOnePost": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "xyz789",
      "totalComments": 987,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneProfile

Response

Returns a Profile

Arguments
NameDescription
tenant - ID
where - ProfileWhereUniqueInput!

Example

Query
mutation DeleteOneProfile(
  $tenant: ID,
  $where: ProfileWhereUniqueInput!
) {
  deleteOneProfile(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ProfileWhereUniqueInput}
Response
{
  "data": {
    "deleteOneProfile": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "elementsCount": 987,
      "folder": ProfileFolder,
      "folderId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "parent": Profile,
      "parentId": "4",
      "parentsTree": [Profile],
      "parentsTreeIds": [4],
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "template": ProfileTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneProfileFolder

Response

Returns a ProfileFolder

Arguments
NameDescription
tenant - ID
where - ProfileFolderWhereUniqueInput!

Example

Query
mutation DeleteOneProfileFolder(
  $tenant: ID,
  $where: ProfileFolderWhereUniqueInput!
) {
  deleteOneProfileFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ProfileFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneProfileFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": ProfileFolder,
      "parentId": 4,
      "parentsTree": [ProfileFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": ["4"],
      "profileFoldersCount": 123,
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneProfileTemplate

Response

Returns a ProfileTemplate

Arguments
NameDescription
tenant - ID
where - ProfileTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneProfileTemplate(
  $tenant: ID,
  $where: ProfileTemplateWhereUniqueInput!
) {
  deleteOneProfileTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ProfileTemplateWhereUniqueInput}
Response
{
  "data": {
    "deleteOneProfileTemplate": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": ProfileTemplateFolder,
      "folderId": 4,
      "frame": ProfileTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneProfileTemplateFolder

Response

Returns a ProfileTemplateFolder

Arguments
NameDescription
tenant - ID
where - ProfileTemplateFolderWhereUniqueInput!

Example

Query
mutation DeleteOneProfileTemplateFolder(
  $tenant: ID,
  $where: ProfileTemplateFolderWhereUniqueInput!
) {
  deleteOneProfileTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": 4,
  "where": ProfileTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneProfileTemplateFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": ProfileTemplateFolder,
      "parentId": "4",
      "parentsTree": [ProfileTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "profileTemplateFoldersCount": 987,
      "profileTemplatesCount": 123,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneRequestTemplate

Response

Returns a RequestTemplate

Arguments
NameDescription
tenant - ID
where - RequestTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneRequestTemplate(
  $tenant: ID,
  $where: RequestTemplateWhereUniqueInput!
) {
  deleteOneRequestTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": RequestTemplateWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneRequestTemplate": {
      "_id": "4",
      "commentRequired": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "expireDate": RequestTemplateExpireDate,
      "frame": RequestTemplateFrame,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneRole

Response

Returns a Role

Arguments
NameDescription
tenant - ID
where - RoleWhereUniqueInput!

Example

Query
mutation DeleteOneRole(
  $tenant: ID,
  $where: RoleWhereUniqueInput!
) {
  deleteOneRole(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": RoleWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneRole": {
      "_id": "4",
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "name": "xyz789",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneSite

Response

Returns a Site

Arguments
NameDescription
tenant - ID
where - SiteWhereUniqueInput!

Example

Query
mutation DeleteOneSite(
  $tenant: ID,
  $where: SiteWhereUniqueInput!
) {
  deleteOneSite(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": SiteWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneSite": {
      "_id": 4,
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": true,
      "coordinates": [123.45],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "devicesCount": 987,
      "elements": [Element],
      "elementsCount": 987,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [SiteLog],
      "myCalendarCount": 123,
      "myIssuesCount": 987,
      "name": "xyz789",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": "4",
      "parentsTree": [Site],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "protected": true,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 123,
      "system": false,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneSiteTemplate

Response

Returns a SiteTemplate

Arguments
NameDescription
tenant - ID
where - SiteTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneSiteTemplate(
  $tenant: ID,
  $where: SiteTemplateWhereUniqueInput!
) {
  deleteOneSiteTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SiteTemplateWhereUniqueInput}
Response
{
  "data": {
    "deleteOneSiteTemplate": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "folder": SiteTemplateFolder,
      "folderId": "4",
      "frame": SiteTemplateFrame,
      "icon": "xyz789",
      "protected": false,
      "system": true,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneSiteTemplateFolder

Response

Returns a SiteTemplateFolder

Arguments
NameDescription
tenant - ID
where - SiteTemplateFolderWhereUniqueInput!

Example

Query
mutation DeleteOneSiteTemplateFolder(
  $tenant: ID,
  $where: SiteTemplateFolderWhereUniqueInput!
) {
  deleteOneSiteTemplateFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": SiteTemplateFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneSiteTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": SiteTemplateFolder,
      "parentId": 4,
      "parentsTree": [SiteTemplateFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": [4],
      "protected": true,
      "siteTemplateFoldersCount": 987,
      "siteTemplatesCount": 987,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneSkill

Response

Returns a Skill

Arguments
NameDescription
tenant - ID
where - SkillWhereUniqueInput!

Example

Query
mutation DeleteOneSkill(
  $tenant: ID,
  $where: SkillWhereUniqueInput!
) {
  deleteOneSkill(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": SkillWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneSkill": {
      "_id": "4",
      "chosenSkillLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "name": "abc123",
      "protected": true,
      "renewal": SkillRenewal,
      "renewalWarning": SkillRenewalWarning,
      "skillGroup": SkillGroup,
      "skillGroupId": "4",
      "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneSkillGroup

Response

Returns a SkillGroup

Arguments
NameDescription
tenant - ID
where - SkillGroupWhereUniqueInput!

Example

Query
mutation DeleteOneSkillGroup(
  $tenant: ID,
  $where: SkillGroupWhereUniqueInput!
) {
  deleteOneSkillGroup(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": SkillGroupWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneSkillGroup": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "protected": true,
      "skillCount": 987,
      "skills": [Skill],
      "subject": SkillSubject,
      "subjectId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneSkillSubject

Response

Returns a SkillSubject

Arguments
NameDescription
tenant - ID
where - SkillSubjectWhereUniqueInput!

Example

Query
mutation DeleteOneSkillSubject(
  $tenant: ID,
  $where: SkillSubjectWhereUniqueInput!
) {
  deleteOneSkillSubject(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{
  "tenant": "4",
  "where": SkillSubjectWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneSkillSubject": {
      "_id": 4,
      "chosenSubjectLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "protected": true,
      "skillCount": 123,
      "skillGroupCount": 987,
      "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "userCount": 123
    }
  }
}

deleteOneStateMachine

Response

Returns a StateMachine

Arguments
NameDescription
tenant - ID
where - StateMachineWhereUniqueInput!

Example

Query
mutation DeleteOneStateMachine(
  $tenant: ID,
  $where: StateMachineWhereUniqueInput!
) {
  deleteOneStateMachine(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": StateMachineWhereUniqueInput}
Response
{
  "data": {
    "deleteOneStateMachine": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": StateMachineFolder,
      "folderId": 4,
      "initState": "abc123",
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "protected": true,
      "states": [StateMachineState],
      "system": false,
      "timeBomb": StateMachineTimeBomb,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneStateMachineFolder

Response

Returns a StateMachineFolder

Arguments
NameDescription
tenant - ID
where - StateMachineFolderWhereUniqueInput!

Example

Query
mutation DeleteOneStateMachineFolder(
  $tenant: ID,
  $where: StateMachineFolderWhereUniqueInput!
) {
  deleteOneStateMachineFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": StateMachineFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneStateMachineFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": StateMachineFolder,
      "parentId": "4",
      "parentsTree": [StateMachineFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "stateMachineFoldersCount": 987,
      "stateMachinesCount": 123,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneStorage

Response

Returns a Storage

Arguments
NameDescription
tenant - ID
where - StorageWhereUniqueInput!

Example

Query
mutation DeleteOneStorage(
  $tenant: ID,
  $where: StorageWhereUniqueInput!
) {
  deleteOneStorage(
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": StorageWhereUniqueInput}
Response
{
  "data": {
    "deleteOneStorage": {
      "_id": "4",
      "address": StorageAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "locations": [Location],
      "locationsIds": ["4"],
      "name": "abc123",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneTab

Response

Returns a Tab

Arguments
NameDescription
tenant - ID
where - TabWhereUniqueInput!

Example

Query
mutation DeleteOneTab(
  $tenant: ID,
  $where: TabWhereUniqueInput!
) {
  deleteOneTab(
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": TabWhereUniqueInput}
Response
{
  "data": {
    "deleteOneTab": {
      "_id": "4",
      "account": Account,
      "accountId": "4",
      "columns": [TabColumn],
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "abc123",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneTaskMapping

Response

Returns a TaskMapping

Arguments
NameDescription
tenant - ID
where - TaskMappingWhereUniqueInput!

Example

Query
mutation DeleteOneTaskMapping(
  $tenant: ID,
  $where: TaskMappingWhereUniqueInput!
) {
  deleteOneTaskMapping(
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": TaskMappingWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneTaskMapping": {
      "_id": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [TaskMappingAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "element": Element,
      "elementId": "4",
      "issueCatalog": IssueCatalog,
      "issueCatalogId": "4",
      "protected": true,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskTemplate": TaskTemplate,
      "taskTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneTaskTemplate

Response

Returns a TaskTemplate

Arguments
NameDescription
tenant - ID
where - TaskTemplateWhereUniqueInput!

Example

Query
mutation DeleteOneTaskTemplate(
  $tenant: ID,
  $where: TaskTemplateWhereUniqueInput!
) {
  deleteOneTaskTemplate(
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"tenant": 4, "where": TaskTemplateWhereUniqueInput}
Response
{
  "data": {
    "deleteOneTaskTemplate": {
      "_id": "4",
      "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
      "arConfiguration": TaskTemplateArConfiguration,
      "assignedMaterials": [TaskTemplateAssignedMaterial],
      "assignedSkills": [TaskTemplateAssignedSkill],
      "assignedTools": [TaskTemplateAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "estimatedDuration": 123,
      "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
      "group": TaskTemplateGroup,
      "groupId": "4",
      "inputHistory": [Input],
      "inputs": [Input],
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [TaskTemplateLog],
      "manualId": "xyz789",
      "mapping": TaskMapping,
      "name": "abc123",
      "onResponseId": "4",
      "order": 987,
      "parentsTree": ["4"],
      "protected": false,
      "remarks": [TaskTemplateRemark],
      "show": false,
      "system": true,
      "totalScore": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": TaskTemplateVariant
    }
  }
}

deleteOneTaskTemplateGroup

Response

Returns a TaskTemplateGroup

Arguments
NameDescription
tenant - ID
where - TaskTemplateGroupWhereUniqueInput!

Example

Query
mutation DeleteOneTaskTemplateGroup(
  $tenant: ID,
  $where: TaskTemplateGroupWhereUniqueInput!
) {
  deleteOneTaskTemplateGroup(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": TaskTemplateGroupWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneTaskTemplateGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": 4,
      "markersToShow": "ALL",
      "name": "abc123",
      "order": 987,
      "protected": true,
      "sequential": true,
      "system": false,
      "taskTemplates": [TaskTemplate],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneTeam

Response

Returns a Team

Arguments
NameDescription
tenant - ID
where - TeamWhereUniqueInput!

Example

Query
mutation DeleteOneTeam(
  $tenant: ID,
  $where: TeamWhereUniqueInput!
) {
  deleteOneTeam(
    tenant: $tenant,
    where: $where
  ) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": TeamWhereUniqueInput}
Response
{
  "data": {
    "deleteOneTeam": {
      "_id": "4",
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "members": [TeamMember],
      "name": "abc123",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneTimesheet

Response

Returns a Timesheet

Arguments
NameDescription
tenant - ID
where - TimesheetWhereUniqueInput!

Example

Query
mutation DeleteOneTimesheet(
  $tenant: ID,
  $where: TimesheetWhereUniqueInput!
) {
  deleteOneTimesheet(
    tenant: $tenant,
    where: $where
  ) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": TimesheetWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneTimesheet": {
      "_id": 4,
      "action": Action,
      "actionId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "duration": 123,
      "finishDate": "2007-12-03T10:15:30Z",
      "issue": IssueInstance,
      "issueId": "4",
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "startDate": "2007-12-03T10:15:30Z",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneTool

Response

Returns a Tool

Arguments
NameDescription
tenant - ID
where - ToolWhereUniqueInput!

Example

Query
mutation DeleteOneTool(
  $tenant: ID,
  $where: ToolWhereUniqueInput!
) {
  deleteOneTool(
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "tenant": "4",
  "where": ToolWhereUniqueInput
}
Response
{
  "data": {
    "deleteOneTool": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "designation": "xyz789",
      "dimension": ToolDimension,
      "images": [File],
      "imagesIds": ["4"],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "partNumber": "abc123",
      "protected": true,
      "stockPerStorage": [ToolStockPerStorage],
      "system": true,
      "totalStock": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneToolItem

Response

Returns a ToolItem

Arguments
NameDescription
tenant - ID
where - ToolItemWhereUniqueInput!

Example

Query
mutation DeleteOneToolItem(
  $tenant: ID,
  $where: ToolItemWhereUniqueInput!
) {
  deleteOneToolItem(
    tenant: $tenant,
    where: $where
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{"tenant": 4, "where": ToolItemWhereUniqueInput}
Response
{
  "data": {
    "deleteOneToolItem": {
      "_id": "4",
      "associatedWith": [ToolItem],
      "available": true,
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "customFields": [ToolItemCustomField],
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "hiddenFields": ["abc123"],
      "location": Location,
      "locationId": 4,
      "protected": true,
      "serialNumber": "abc123",
      "status": "IN_MAINTENANCE",
      "system": false,
      "tool": Tool,
      "toolId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usedBy": Account,
      "usedById": "4",
      "usedIn": IssueInstance,
      "usedInId": 4
    }
  }
}

deleteOneUnit

Response

Returns a Unit

Arguments
NameDescription
tenant - ID
where - UnitWhereUniqueInput!

Example

Query
mutation DeleteOneUnit(
  $tenant: ID,
  $where: UnitWhereUniqueInput!
) {
  deleteOneUnit(
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": UnitWhereUniqueInput}
Response
{
  "data": {
    "deleteOneUnit": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": UnitFolder,
      "folderId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "abc123",
      "order": 123,
      "protected": false,
      "symbol": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

deleteOneUnitFolder

Response

Returns a UnitFolder

Arguments
NameDescription
tenant - ID
where - UnitFolderWhereUniqueInput!

Example

Query
mutation DeleteOneUnitFolder(
  $tenant: ID,
  $where: UnitFolderWhereUniqueInput!
) {
  deleteOneUnitFolder(
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": UnitFolderWhereUniqueInput}
Response
{
  "data": {
    "deleteOneUnitFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": UnitFolder,
      "parentId": "4",
      "parentsTree": [UnitFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "unitFoldersCount": 987,
      "unitsCount": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deleteOneWidget

Response

Returns a Widget

Arguments
NameDescription
tenant - ID
where - WidgetWhereUniqueInput!

Example

Query
mutation DeleteOneWidget(
  $tenant: ID,
  $where: WidgetWhereUniqueInput!
) {
  deleteOneWidget(
    tenant: $tenant,
    where: $where
  ) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": WidgetWhereUniqueInput}
Response
{
  "data": {
    "deleteOneWidget": {
      "_id": "4",
      "chart": "bar",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "dashboard": 4,
      "data": {},
      "dataset": WidgetDataset,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "draft": 4,
      "layout": WidgetLayout,
      "name": "xyz789",
      "palette": ["xyz789"],
      "preset": "abc123",
      "protected": false,
      "showLegend": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

deletePhoto

Response

Returns an Account

Arguments
NameDescription
accountId - ID

Example

Query
mutation DeletePhoto($accountId: ID) {
  deletePhoto(accountId: $accountId) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"accountId": 4}
Response
{
  "data": {
    "deletePhoto": {
      "ARUser": false,
      "_id": 4,
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 987,
      "clientId": "4",
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [123.45],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": true,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": "4",
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

deleteRoomAccessLog

Response

Returns a RoomAccessLog

Arguments
NameDescription
room_id - String!

Example

Query
mutation DeleteRoomAccessLog($room_id: String!) {
  deleteRoomAccessLog(room_id: $room_id) {
    id
    last_activity_at
    room_id
    session_id
    user_id
  }
}
Variables
{"room_id": "xyz789"}
Response
{
  "data": {
    "deleteRoomAccessLog": {
      "id": "xyz789",
      "last_activity_at": "abc123",
      "room_id": "xyz789",
      "session_id": "xyz789",
      "user_id": "xyz789"
    }
  }
}

deleteToolItemsBatch

Response

Returns a deleteToolItemsBatch

Arguments
NameDescription
storageId - ID!
toolId - ID!

Example

Query
mutation DeleteToolItemsBatch(
  $storageId: ID!,
  $toolId: ID!
) {
  deleteToolItemsBatch(
    storageId: $storageId,
    toolId: $toolId
  ) {
    deletedCount
  }
}
Variables
{"storageId": "4", "toolId": 4}
Response
{"data": {"deleteToolItemsBatch": {"deletedCount": 123}}}

deviceSetSite

Response

Returns a Device

Arguments
NameDescription
device - DeviceWhereUniqueInput!
site - SiteWhereUniqueInput!

Example

Query
mutation DeviceSetSite(
  $device: DeviceWhereUniqueInput!,
  $site: SiteWhereUniqueInput!
) {
  deviceSetSite(
    device: $device,
    site: $site
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "device": DeviceWhereUniqueInput,
  "site": SiteWhereUniqueInput
}
Response
{
  "data": {
    "deviceSetSite": {
      "_id": 4,
      "address": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "xyz789",
      "name": "xyz789",
      "protected": false,
      "protocol": "generic",
      "site": Site,
      "siteId": 4,
      "status": "xyz789",
      "system": false,
      "topic": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

disableJob

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
mutation DisableJob(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  disableJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"tenant": 4, "where": JobWhereUniqueInput}
Response
{
  "data": {
    "disableJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "xyz789",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

duplicateArea

Response

Returns an Area

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateArea(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateArea(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": true}
Response
{
  "data": {
    "duplicateArea": {
      "_id": "4",
      "anchors": [Anchor],
      "anchorsIds": ["4"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": AreaFolder,
      "folderId": 4,
      "name": "xyz789",
      "photo": File,
      "photoId": 4,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

duplicateAreaFolder

Response

Returns an AreaFolder

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateAreaFolder(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateAreaFolder(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "copyChildren": true}
Response
{
  "data": {
    "duplicateAreaFolder": {
      "_id": 4,
      "areaFoldersCount": 987,
      "areasCount": 123,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AreaFolder,
      "parentId": 4,
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

duplicateElement

Response

Returns an Element

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateElement(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateElement(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": true}
Response
{
  "data": {
    "duplicateElement": {
      "_id": "4",
      "arLocked": false,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "elements": [Element],
      "elementsCount": 987,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": "4",
      "name": "xyz789",
      "needsApproval": true,
      "parent": Element,
      "parentId": 4,
      "parentsTree": [Element],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": "4",
      "protected": false,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": 4,
      "system": true,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 987,
      "template": ElementTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

duplicateElementTemplate

Response

Returns an ElementTemplate

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateElementTemplate(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateElementTemplate(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "copyChildren": true}
Response
{
  "data": {
    "duplicateElementTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": ElementTemplateFolder,
      "folderId": 4,
      "frame": ElementTemplateFrame,
      "icon": "xyz789",
      "protected": false,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

duplicateIssueTemplate

Response

Returns an IssueTemplate

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateIssueTemplate(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateIssueTemplate(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"_id": 4, "copyChildren": false}
Response
{
  "data": {
    "duplicateIssueTemplate": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

duplicateProfile

Response

Returns a Profile

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateProfile(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateProfile(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": false}
Response
{
  "data": {
    "duplicateProfile": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "elementsCount": 987,
      "folder": ProfileFolder,
      "folderId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "parent": Profile,
      "parentId": "4",
      "parentsTree": [Profile],
      "parentsTreeIds": ["4"],
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "template": ProfileTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

duplicateProfileTemplate

Response

Returns a ProfileTemplate

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateProfileTemplate(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateProfileTemplate(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": false}
Response
{
  "data": {
    "duplicateProfileTemplate": {
      "_id": "4",
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": ProfileTemplateFolder,
      "folderId": 4,
      "frame": ProfileTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": false,
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

duplicateRole

Response

Returns a Role

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateRole(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateRole(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": true}
Response
{
  "data": {
    "duplicateRole": {
      "_id": 4,
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "name": "abc123",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

duplicateSite

Response

Returns a Site

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateSite(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateSite(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "copyChildren": false}
Response
{
  "data": {
    "duplicateSite": {
      "_id": 4,
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": true,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "devicesCount": 123,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [SiteLog],
      "myCalendarCount": 987,
      "myIssuesCount": 987,
      "name": "xyz789",
      "nearbySites": [Site],
      "needsApproval": false,
      "parent": Site,
      "parentId": 4,
      "parentsTree": [Site],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "protected": false,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": true,
      "template": SiteTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

duplicateSiteTemplate

Response

Returns a SiteTemplate

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateSiteTemplate(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateSiteTemplate(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "copyChildren": true}
Response
{
  "data": {
    "duplicateSiteTemplate": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": SiteTemplateFolder,
      "folderId": "4",
      "frame": SiteTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": false,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

duplicateTask

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
groupId - ID!
taskId - ID!

Example

Query
mutation DuplicateTask(
  $_id: ID!,
  $groupId: ID!,
  $taskId: ID!
) {
  duplicateTask(
    _id: $_id,
    groupId: $groupId,
    taskId: $taskId
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": 4, "groupId": "4", "taskId": 4}
Response
{
  "data": {
    "duplicateTask": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": false,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": false,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": true,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

duplicateTaskFromGroup

Response

Returns a DuplicateTaskResult

Arguments
NameDescription
_id - ID!
groupId - ID!
taskId - ID!

Example

Query
mutation DuplicateTaskFromGroup(
  $_id: ID!,
  $groupId: ID!,
  $taskId: ID!
) {
  duplicateTaskFromGroup(
    _id: $_id,
    groupId: $groupId,
    taskId: $taskId
  ) {
    issue {
      ...IssueInstanceFragment
    }
    tasks
  }
}
Variables
{
  "_id": 4,
  "groupId": "4",
  "taskId": "4"
}
Response
{
  "data": {
    "duplicateTaskFromGroup": {
      "issue": IssueInstance,
      "tasks": [4]
    }
  }
}

duplicateUnit

Response

Returns a Unit

Arguments
NameDescription
_id - ID!
copyChildren - Boolean!

Example

Query
mutation DuplicateUnit(
  $_id: ID!,
  $copyChildren: Boolean!
) {
  duplicateUnit(
    _id: $_id,
    copyChildren: $copyChildren
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "copyChildren": false}
Response
{
  "data": {
    "duplicateUnit": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "folder": UnitFolder,
      "folderId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "order": 987,
      "protected": true,
      "symbol": "abc123",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

editPreset

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
presetId - ID
presetIds - [ID]
templateId - ID!
where - PresetWhereInput!

Example

Query
mutation EditPreset(
  $presetId: ID,
  $presetIds: [ID],
  $templateId: ID!,
  $where: PresetWhereInput!
) {
  editPreset(
    presetId: $presetId,
    presetIds: $presetIds,
    templateId: $templateId,
    where: $where
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "presetId": "4",
  "presetIds": ["4"],
  "templateId": 4,
  "where": PresetWhereInput
}
Response
{
  "data": {
    "editPreset": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": false,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

enableJob

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
mutation EnableJob(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  enableJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "tenant": "4",
  "where": JobWhereUniqueInput
}
Response
{
  "data": {
    "enableJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

followUpRequest

Response

Returns a Request

Arguments
NameDescription
requestId - ID!

Example

Query
mutation FollowUpRequest($requestId: ID!) {
  followUpRequest(requestId: $requestId) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"requestId": 4}
Response
{
  "data": {
    "followUpRequest": {
      "_id": "4",
      "approved": [Account],
      "approvedIds": [4],
      "approvers": [Account],
      "approversIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": [4],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": "4",
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

generateDeviceMQTTAuthentication

Description

generate authentication credentials in the mqtt manager API

Response

Returns a DeviceMqttConfig

Arguments
NameDescription
device - DeviceWhereUniqueInput!

Example

Query
mutation GenerateDeviceMQTTAuthentication($device: DeviceWhereUniqueInput!) {
  generateDeviceMQTTAuthentication(device: $device) {
    clientId
    id
    name
    password
    topic
    username
  }
}
Variables
{"device": DeviceWhereUniqueInput}
Response
{
  "data": {
    "generateDeviceMQTTAuthentication": {
      "clientId": "xyz789",
      "id": "xyz789",
      "name": "abc123",
      "password": "xyz789",
      "topic": "xyz789",
      "username": "abc123"
    }
  }
}

generateTemplateDraftFromDescription

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
description - String!
folderId - ID

Example

Query
mutation GenerateTemplateDraftFromDescription(
  $description: String!,
  $folderId: ID
) {
  generateTemplateDraftFromDescription(
    description: $description,
    folderId: $folderId
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"description": "xyz789", "folderId": 4}
Response
{
  "data": {
    "generateTemplateDraftFromDescription": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

generateTemplateFromDocument

Response

Returns a GenerateIssueTemplate

Arguments
NameDescription
fileId - ID!
folderId - ID

Example

Query
mutation GenerateTemplateFromDocument(
  $fileId: ID!,
  $folderId: ID
) {
  generateTemplateFromDocument(
    fileId: $fileId,
    folderId: $folderId
  ) {
    imageIds
    templateDraftId
  }
}
Variables
{"fileId": 4, "folderId": "4"}
Response
{
  "data": {
    "generateTemplateFromDocument": {
      "imageIds": [4],
      "templateDraftId": "4"
    }
  }
}

getDashboardDraft

Response

Returns a DashboardDraft

Arguments
NameDescription
dashboardId - ID

Example

Query
mutation GetDashboardDraft($dashboardId: ID) {
  getDashboardDraft(dashboardId: $dashboardId) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    dashboard {
      ...DashboardFragment
    }
    dashboardId
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    updatedAt
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"dashboardId": 4}
Response
{
  "data": {
    "getDashboardDraft": {
      "_id": 4,
      "account": Account,
      "accountId": "4",
      "autoRefresh": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "dashboard": Dashboard,
      "dashboardId": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "widgets": [Widget]
    }
  }
}

getRTCToken

Response

Returns an AgoraIOToken

Arguments
NameDescription
room_id - String!

Example

Query
mutation GetRTCToken($room_id: String!) {
  getRTCToken(room_id: $room_id) {
    rtc_token
    rtm_token
    uid
  }
}
Variables
{"room_id": "abc123"}
Response
{
  "data": {
    "getRTCToken": {
      "rtc_token": "abc123",
      "rtm_token": "abc123",
      "uid": "abc123"
    }
  }
}

getRoomHistory

Response

Returns a RoomHistoryResponse

Arguments
NameDescription
column - String
createdAt - DateIntervalInput
lastActivity - DateIntervalInput
limit - Int
order - String
skip - Int
tenant - Boolean
textSearch - String
userIdIn - [String!]
userIdNin - [String!]

Example

Query
mutation GetRoomHistory(
  $column: String,
  $createdAt: DateIntervalInput,
  $lastActivity: DateIntervalInput,
  $limit: Int,
  $order: String,
  $skip: Int,
  $tenant: Boolean,
  $textSearch: String,
  $userIdIn: [String!],
  $userIdNin: [String!]
) {
  getRoomHistory(
    column: $column,
    createdAt: $createdAt,
    lastActivity: $lastActivity,
    limit: $limit,
    order: $order,
    skip: $skip,
    tenant: $tenant,
    textSearch: $textSearch,
    userIdIn: $userIdIn,
    userIdNin: $userIdNin
  ) {
    logs {
      ...RoomHistoryFragment
    }
  }
}
Variables
{
  "column": "xyz789",
  "createdAt": DateIntervalInput,
  "lastActivity": DateIntervalInput,
  "limit": 987,
  "order": "xyz789",
  "skip": 987,
  "tenant": false,
  "textSearch": "xyz789",
  "userIdIn": ["abc123"],
  "userIdNin": ["xyz789"]
}
Response
{"data": {"getRoomHistory": {"logs": [RoomHistory]}}}

getRoomUsers

Response

Returns a RoomUserList

Arguments
NameDescription
room_id - String!

Example

Query
mutation GetRoomUsers($room_id: String!) {
  getRoomUsers(room_id: $room_id) {
    users {
      ...RoomUserFragment
    }
  }
}
Variables
{"room_id": "abc123"}
Response
{"data": {"getRoomUsers": {"users": [RoomUser]}}}

getSessionByToken

Response

Returns a Session

Arguments
NameDescription
token - String!

Example

Query
mutation GetSessionByToken($token: String!) {
  getSessionByToken(token: $token) {
    approved
    create_at
    details {
      ...SessionDetailsFragment
    }
    device_id
    entity_roles
    expires_at
    id
    is_guest
    is_oauth
    language
    last_activity_at
    props
    roles
    room_id
    tenant_id
    token
    update_at
    user_contact_list
    user_email
    user_id
    vision_user_id
  }
}
Variables
{"token": "xyz789"}
Response
{
  "data": {
    "getSessionByToken": {
      "approved": true,
      "create_at": 987,
      "details": SessionDetails,
      "device_id": "abc123",
      "entity_roles": "abc123",
      "expires_at": 123,
      "id": "abc123",
      "is_guest": true,
      "is_oauth": false,
      "language": "abc123",
      "last_activity_at": 987,
      "props": {},
      "roles": "abc123",
      "room_id": "xyz789",
      "tenant_id": "abc123",
      "token": "abc123",
      "update_at": 987,
      "user_contact_list": {},
      "user_email": "xyz789",
      "user_id": "abc123",
      "vision_user_id": "abc123"
    }
  }
}

getUploadFileRequest

Response

Returns an UploadFileInfo

Arguments
NameDescription
comment - String
name - String!
polygonCount - Int
size - Int!
thumbnail - Upload
uploadedFromLibrary - BooleanDefault = false

Example

Query
mutation GetUploadFileRequest(
  $comment: String,
  $name: String!,
  $polygonCount: Int,
  $size: Int!,
  $thumbnail: Upload,
  $uploadedFromLibrary: Boolean
) {
  getUploadFileRequest(
    comment: $comment,
    name: $name,
    polygonCount: $polygonCount,
    size: $size,
    thumbnail: $thumbnail,
    uploadedFromLibrary: $uploadedFromLibrary
  ) {
    _id
    formData
    url
    validUntil
  }
}
Variables
{
  "comment": "abc123",
  "name": "abc123",
  "polygonCount": 123,
  "size": 123,
  "thumbnail": Upload,
  "uploadedFromLibrary": false
}
Response
{
  "data": {
    "getUploadFileRequest": {
      "_id": "4",
      "formData": Any,
      "url": "xyz789",
      "validUntil": 123
    }
  }
}

getUploadFileRequestForFile

Response

Returns an UploadFileInfo

Arguments
NameDescription
size - Int!
thumbnail - Upload
where - FileWhereUniqueInput!

Example

Query
mutation GetUploadFileRequestForFile(
  $size: Int!,
  $thumbnail: Upload,
  $where: FileWhereUniqueInput!
) {
  getUploadFileRequestForFile(
    size: $size,
    thumbnail: $thumbnail,
    where: $where
  ) {
    _id
    formData
    url
    validUntil
  }
}
Variables
{
  "size": 123,
  "thumbnail": Upload,
  "where": FileWhereUniqueInput
}
Response
{
  "data": {
    "getUploadFileRequestForFile": {
      "_id": "4",
      "formData": Any,
      "url": "xyz789",
      "validUntil": 123
    }
  }
}

getUploadLogoDarkFileRequest

Response

Returns an UploadFileInfo

Arguments
NameDescription
name - String!
size - Int!

Example

Query
mutation GetUploadLogoDarkFileRequest(
  $name: String!,
  $size: Int!
) {
  getUploadLogoDarkFileRequest(
    name: $name,
    size: $size
  ) {
    _id
    formData
    url
    validUntil
  }
}
Variables
{"name": "xyz789", "size": 123}
Response
{
  "data": {
    "getUploadLogoDarkFileRequest": {
      "_id": 4,
      "formData": Any,
      "url": "xyz789",
      "validUntil": 123
    }
  }
}

getUploadLogoLightFileRequest

Response

Returns an UploadFileInfo

Arguments
NameDescription
name - String!
size - Int!

Example

Query
mutation GetUploadLogoLightFileRequest(
  $name: String!,
  $size: Int!
) {
  getUploadLogoLightFileRequest(
    name: $name,
    size: $size
  ) {
    _id
    formData
    url
    validUntil
  }
}
Variables
{"name": "xyz789", "size": 987}
Response
{
  "data": {
    "getUploadLogoLightFileRequest": {
      "_id": 4,
      "formData": Any,
      "url": "xyz789",
      "validUntil": 123
    }
  }
}

instantiateIssuesOnWorkPackage

Response

Returns a Job

Arguments
NameDescription
issueCatalogs - [WorkPackageData!]!
jobId - ID!

Example

Query
mutation InstantiateIssuesOnWorkPackage(
  $issueCatalogs: [WorkPackageData!]!,
  $jobId: ID!
) {
  instantiateIssuesOnWorkPackage(
    issueCatalogs: $issueCatalogs,
    jobId: $jobId
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"issueCatalogs": [WorkPackageData], "jobId": 4}
Response
{
  "data": {
    "instantiateIssuesOnWorkPackage": {
      "_id": "4",
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

joinRoomByCode

Response

Returns a Room

Arguments
NameDescription
room_code - String!

Example

Query
mutation JoinRoomByCode($room_code: String!) {
  joinRoomByCode(room_code: $room_code) {
    chatroom_id
    code
    create_at
    create_by
    delete_at
    duration
    entity_id
    id
    labels
    last_activity_at
    name
    permissions {
      ...RoomPermissionsFragment
    }
    tenant_id
    update_at
    user_details {
      ...RoomDetailsFragment
    }
    valid_until
  }
}
Variables
{"room_code": "xyz789"}
Response
{
  "data": {
    "joinRoomByCode": {
      "chatroom_id": "abc123",
      "code": "abc123",
      "create_at": "abc123",
      "create_by": "abc123",
      "delete_at": "xyz789",
      "duration": "xyz789",
      "entity_id": "xyz789",
      "id": "abc123",
      "labels": ["xyz789"],
      "last_activity_at": "abc123",
      "name": "abc123",
      "permissions": RoomPermissions,
      "tenant_id": "xyz789",
      "update_at": "xyz789",
      "user_details": RoomDetails,
      "valid_until": "abc123"
    }
  }
}

joinRoomById

Response

Returns a Room

Arguments
NameDescription
room_id - String!

Example

Query
mutation JoinRoomById($room_id: String!) {
  joinRoomById(room_id: $room_id) {
    chatroom_id
    code
    create_at
    create_by
    delete_at
    duration
    entity_id
    id
    labels
    last_activity_at
    name
    permissions {
      ...RoomPermissionsFragment
    }
    tenant_id
    update_at
    user_details {
      ...RoomDetailsFragment
    }
    valid_until
  }
}
Variables
{"room_id": "xyz789"}
Response
{
  "data": {
    "joinRoomById": {
      "chatroom_id": "abc123",
      "code": "abc123",
      "create_at": "abc123",
      "create_by": "abc123",
      "delete_at": "xyz789",
      "duration": "xyz789",
      "entity_id": "xyz789",
      "id": "xyz789",
      "labels": ["xyz789"],
      "last_activity_at": "abc123",
      "name": "xyz789",
      "permissions": RoomPermissions,
      "tenant_id": "abc123",
      "update_at": "abc123",
      "user_details": RoomDetails,
      "valid_until": "xyz789"
    }
  }
}

linkInputsToManyActions

Response

Returns [Action]

Arguments
NameDescription
data - [ActionIssuesMultipleUpdateInput!]!

Example

Query
mutation LinkInputsToManyActions($data: [ActionIssuesMultipleUpdateInput!]!) {
  linkInputsToManyActions(data: $data) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": [ActionIssuesMultipleUpdateInput]}
Response
{
  "data": {
    "linkInputsToManyActions": [
      {
        "ID": 123,
        "_id": "4",
        "alert": Alert,
        "alertId": "4",
        "assignedAccounts": [Account],
        "assignedAccountsIds": ["4"],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": ["4"],
        "catalog": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "dueDate": "2007-12-03T10:15:30Z",
        "element": Element,
        "elementId": "4",
        "files": [File],
        "filesIds": [4],
        "finishDate": "2007-12-03T10:15:30Z",
        "input": 4,
        "isLocked": true,
        "issueName": "xyz789",
        "issues": [ActionIssue],
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": "4",
        "log": [ActionLog],
        "name": "xyz789",
        "protected": false,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "site": Site,
        "siteId": "4",
        "status": "CANT_DO",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

lockAction

Response

Returns an Action

Arguments
NameDescription
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
mutation LockAction(
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  lockAction(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ActionWhereUniqueInput}
Response
{
  "data": {
    "lockAction": {
      "ID": 123,
      "_id": 4,
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": ["4"],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "isLocked": true,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

lockIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation LockIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  lockIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "lockIssue": {
      "_id": "4",
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

login

Response

Returns an AccessToken

Arguments
NameDescription
domain - String
password - String
username - String!

Example

Query
mutation Login(
  $domain: String,
  $password: String,
  $username: String!
) {
  login(
    domain: $domain,
    password: $password,
    username: $username
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    assistExp
    assistToken
    createdAt
    exp
    impersonatedBy {
      ...AccountFragment
    }
    impersonatedById
    redirectUrl
    updatedAt
  }
}
Variables
{
  "domain": "xyz789",
  "password": "xyz789",
  "username": "abc123"
}
Response
{
  "data": {
    "login": {
      "_id": "xyz789",
      "account": Account,
      "accountId": "4",
      "assistExp": 987.65,
      "assistToken": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "exp": 123.45,
      "impersonatedBy": Account,
      "impersonatedById": 4,
      "redirectUrl": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

logout

Response

Returns a String

Example

Query
mutation Logout {
  logout
}
Response
{"data": {"logout": "xyz789"}}

markAllSeen

Response

Returns an Account

Arguments
NameDescription
markType - MarkAllReadTypeEnum!

Example

Query
mutation MarkAllSeen($markType: MarkAllReadTypeEnum!) {
  markAllSeen(markType: $markType) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"markType": "action"}
Response
{
  "data": {
    "markAllSeen": {
      "ARUser": true,
      "_id": "4",
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": true,
      "isPlatformAdmin": true,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

markManySeen

Response

Returns an Account

Arguments
NameDescription
docIds - [ID!]!
markType - MarkAllReadTypeEnum!

Example

Query
mutation MarkManySeen(
  $docIds: [ID!]!,
  $markType: MarkAllReadTypeEnum!
) {
  markManySeen(
    docIds: $docIds,
    markType: $markType
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"docIds": ["4"], "markType": "action"}
Response
{
  "data": {
    "markManySeen": {
      "ARUser": false,
      "_id": 4,
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": true,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

markMessagesAsRead

Response

Returns [ChatMessage]

Arguments
NameDescription
_ids - [ID]
chatRoom - ID

Example

Query
mutation MarkMessagesAsRead(
  $_ids: [ID],
  $chatRoom: ID
) {
  markMessagesAsRead(
    _ids: $_ids,
    chatRoom: $chatRoom
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": ["4"], "chatRoom": 4}
Response
{
  "data": {
    "markMessagesAsRead": [
      {
        "_id": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "files": [File],
        "filesIds": [4],
        "important": true,
        "infoMessage": ChatMessageInfoMessage,
        "mentions": [ChatMessageMention],
        "pinned": false,
        "protected": true,
        "receivedBy": [Account],
        "receivedByIds": ["4"],
        "removed": false,
        "replyTo": ChatMessage,
        "replyToId": "4",
        "seenBy": [Account],
        "seenByIds": ["4"],
        "system": false,
        "text": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

markSeen

Response

Returns an Account

Arguments
NameDescription
docId - ID

Example

Query
mutation MarkSeen($docId: ID) {
  markSeen(docId: $docId) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"docId": "4"}
Response
{
  "data": {
    "markSeen": {
      "ARUser": false,
      "_id": "4",
      "actions": 123,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

markSeenPost

Response

Returns a Post

Arguments
NameDescription
postId - ID!

Example

Query
mutation MarkSeenPost($postId: ID!) {
  markSeenPost(postId: $postId) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"postId": "4"}
Response
{
  "data": {
    "markSeenPost": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": [4],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 123,
      "totalRootComments": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

moveIssueTemplates

Response

Returns an IssueTemplate

Arguments
NameDescription
_ids - [ID!]!
folder - ID

Example

Query
mutation MoveIssueTemplates(
  $_ids: [ID!]!,
  $folder: ID
) {
  moveIssueTemplates(
    _ids: $_ids,
    folder: $folder
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"_ids": [4], "folder": "4"}
Response
{
  "data": {
    "moveIssueTemplates": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

moveManyElements

Response

Returns [Element]

Arguments
NameDescription
_ids - [ID!]!
parentId - ID
siteId - ID

Example

Query
mutation MoveManyElements(
  $_ids: [ID!]!,
  $parentId: ID,
  $siteId: ID
) {
  moveManyElements(
    _ids: $_ids,
    parentId: $parentId,
    siteId: $siteId
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "_ids": ["4"],
  "parentId": "4",
  "siteId": "4"
}
Response
{
  "data": {
    "moveManyElements": [
      {
        "_id": 4,
        "arLocked": false,
        "awaitingApproval": false,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "abc123",
        "elements": [Element],
        "elementsCount": 123,
        "icon": "xyz789",
        "image": File,
        "imageDetails": ElementImageDetail,
        "imageId": 4,
        "inputs": [Input],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "log": [ElementLog],
        "marker": Marker,
        "markerId": 4,
        "name": "xyz789",
        "needsApproval": true,
        "parent": Element,
        "parentId": 4,
        "parentsTree": [Element],
        "parentsTreeIds": ["4"],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": 4,
        "pendingInputs": [Input],
        "profile": Profile,
        "profileId": 4,
        "protected": true,
        "responsibles": Responsibles,
        "site": Site,
        "siteId": 4,
        "system": false,
        "tags": [ElementTag],
        "tasks": [Task],
        "tasksCount": 123,
        "template": ElementTemplate,
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

moveManyProfileFolders

Response

Returns [ProfileFolder]

Arguments
NameDescription
_ids - [ID!]!
parentId - ID

Example

Query
mutation MoveManyProfileFolders(
  $_ids: [ID!]!,
  $parentId: ID
) {
  moveManyProfileFolders(
    _ids: $_ids,
    parentId: $parentId
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": [4], "parentId": 4}
Response
{
  "data": {
    "moveManyProfileFolders": [
      {
        "_id": "4",
        "context": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "abc123",
        "parent": ProfileFolder,
        "parentId": "4",
        "parentsTree": [ProfileFolder],
        "parentsTreeCount": 123,
        "parentsTreeIds": ["4"],
        "profileFoldersCount": 123,
        "profilesCount": 987,
        "protected": true,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

moveManyProfiles

Response

Returns [Profile]

Arguments
NameDescription
_ids - [ID!]!
folderId - ID
parentId - ID

Example

Query
mutation MoveManyProfiles(
  $_ids: [ID!]!,
  $folderId: ID,
  $parentId: ID
) {
  moveManyProfiles(
    _ids: $_ids,
    folderId: $folderId,
    parentId: $parentId
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "_ids": [4],
  "folderId": 4,
  "parentId": "4"
}
Response
{
  "data": {
    "moveManyProfiles": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "elementsCount": 123,
        "folder": ProfileFolder,
        "folderId": 4,
        "inputs": [Input],
        "labelValues": [LabelValue],
        "labelValuesIds": ["4"],
        "name": "abc123",
        "parent": Profile,
        "parentId": "4",
        "parentsTree": [Profile],
        "parentsTreeIds": ["4"],
        "profilesCount": 987,
        "protected": true,
        "system": false,
        "template": ProfileTemplate,
        "templateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

moveManySites

Response

Returns [Site]

Arguments
NameDescription
_ids - [ID!]!
parentId - ID

Example

Query
mutation MoveManySites(
  $_ids: [ID!]!,
  $parentId: ID
) {
  moveManySites(
    _ids: $_ids,
    parentId: $parentId
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": ["4"], "parentId": 4}
Response
{
  "data": {
    "moveManySites": [
      {
        "_id": "4",
        "accessToSites": [Site],
        "actionsCount": 123,
        "awaitingApproval": false,
        "coordinates": [987.65],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "devicesCount": 987,
        "elements": [Element],
        "elementsCount": 123,
        "inputs": [Input],
        "isRoot": false,
        "issues": [IssueInstance],
        "issuesCount": 123,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [SiteLog],
        "myCalendarCount": 123,
        "myIssuesCount": 987,
        "name": "abc123",
        "nearbySites": [Site],
        "needsApproval": false,
        "parent": Site,
        "parentId": 4,
        "parentsTree": [Site],
        "parentsTreeIds": ["4"],
        "pendingAt": "2007-12-03",
        "pendingBy": Account,
        "pendingById": "4",
        "pendingInputs": [Input],
        "protected": false,
        "responsibles": Responsibles,
        "sites": [Site],
        "sitesCount": 123,
        "system": false,
        "template": SiteTemplate,
        "templateId": "4",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

moveTaskTemplateDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
fromTaskTemplateGroup - ID!
issueTemplateDraft - ID!
taskTemplateNewOrder - Int
taskTemplatesToMove - [ID!]!
toTaskTemplateGroup - ID!

Example

Query
mutation MoveTaskTemplateDrafts(
  $fromTaskTemplateGroup: ID!,
  $issueTemplateDraft: ID!,
  $taskTemplateNewOrder: Int,
  $taskTemplatesToMove: [ID!]!,
  $toTaskTemplateGroup: ID!
) {
  moveTaskTemplateDrafts(
    fromTaskTemplateGroup: $fromTaskTemplateGroup,
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplateNewOrder: $taskTemplateNewOrder,
    taskTemplatesToMove: $taskTemplatesToMove,
    toTaskTemplateGroup: $toTaskTemplateGroup
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "fromTaskTemplateGroup": "4",
  "issueTemplateDraft": 4,
  "taskTemplateNewOrder": 987,
  "taskTemplatesToMove": ["4"],
  "toTaskTemplateGroup": 4
}
Response
{
  "data": {
    "moveTaskTemplateDrafts": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

notifyUpload

Response

Returns a File

Arguments
NameDescription
data - FileUpdateInput
where - FileWhereUniqueInput!

Example

Query
mutation NotifyUpload(
  $data: FileUpdateInput,
  $where: FileWhereUniqueInput!
) {
  notifyUpload(
    data: $data,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{
  "data": FileUpdateInput,
  "where": FileWhereUniqueInput
}
Response
{
  "data": {
    "notifyUpload": {
      "_id": 4,
      "accessToken": "xyz789",
      "awsId": "abc123",
      "comment": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "xyz789",
      "hasThumbnail": true,
      "mime": "xyz789",
      "name": "xyz789",
      "path": "abc123",
      "protected": false,
      "size": 123.45,
      "system": true,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "uploadedFromLibrary": true
    }
  }
}

pauseGroupTimer

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
groupId - ID!

Example

Query
mutation PauseGroupTimer(
  $_id: ID!,
  $groupId: ID!
) {
  pauseGroupTimer(
    _id: $_id,
    groupId: $groupId
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": "4", "groupId": 4}
Response
{
  "data": {
    "pauseGroupTimer": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": true,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

permissionBundleAssign

Response

Returns a Role

Arguments
NameDescription
assignBundles - [PermissionAssignCreateInput!]!
role - ID!

Example

Query
mutation PermissionBundleAssign(
  $assignBundles: [PermissionAssignCreateInput!]!,
  $role: ID!
) {
  permissionBundleAssign(
    assignBundles: $assignBundles,
    role: $role
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "assignBundles": [PermissionAssignCreateInput],
  "role": "4"
}
Response
{
  "data": {
    "permissionBundleAssign": {
      "_id": 4,
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "name": "xyz789",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

reOpenIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation ReOpenIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  reOpenIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"tenant": 4, "where": IssueInstanceWhereUniqueInput}
Response
{
  "data": {
    "reOpenIssue": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["abc123"],
      "protected": true,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

reassignIssueInstance

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
accounts - [ID]
labelValues - [ID]

Example

Query
mutation ReassignIssueInstance(
  $_id: ID!,
  $accounts: [ID],
  $labelValues: [ID]
) {
  reassignIssueInstance(
    _id: $_id,
    accounts: $accounts,
    labelValues: $labelValues
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "_id": "4",
  "accounts": [4],
  "labelValues": [4]
}
Response
{
  "data": {
    "reassignIssueInstance": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

reassignTasks

Response

Returns [Task]

Arguments
NameDescription
data - [TaskMultipleReassignInput!]!

Example

Query
mutation ReassignTasks($data: [TaskMultipleReassignInput!]!) {
  reassignTasks(data: $data) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{"data": [TaskMultipleReassignInput]}
Response
{
  "data": {
    "reassignTasks": [
      {
        "_id": "4",
        "advancedLabelSelection": TaskAdvancedLabelSelection,
        "arConfiguration": TaskArConfiguration,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedMaterials": [TaskAssignedMaterial],
        "assignedSkills": [TaskAssignedSkill],
        "assignedTools": [TaskAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "description": "abc123",
        "element": Element,
        "elementId": 4,
        "estimatedDuration": 987,
        "executedBy": [Account],
        "executedByIds": [4],
        "executionInputs": [Input],
        "inputs": [Input],
        "isActiveByOnResponse": true,
        "isLocked": false,
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "name": "xyz789",
        "onResponseId": 4,
        "order": 987,
        "originalTaskId": "4",
        "parentsTree": ["4"],
        "possibleActions": ["abc123"],
        "remarks": [TaskRemark],
        "score": TaskScore,
        "site": Site,
        "siteId": "4",
        "stateMachineInstance": StateMachineInstance,
        "taskTemplate": "4",
        "updatedAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

recoverPassword

Response

Returns a Boolean

Arguments
NameDescription
account - String!
domain - String
recaptcha - String

Example

Query
mutation RecoverPassword(
  $account: String!,
  $domain: String,
  $recaptcha: String
) {
  recoverPassword(
    account: $account,
    domain: $domain,
    recaptcha: $recaptcha
  )
}
Variables
{
  "account": "abc123",
  "domain": "xyz789",
  "recaptcha": "xyz789"
}
Response
{"data": {"recoverPassword": true}}

rejectIssue

Response

Returns an IssueInstance

Arguments
NameDescription
data - IssueRejectionInput!
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation RejectIssue(
  $data: IssueRejectionInput!,
  $where: IssueInstanceWhereUniqueInput!
) {
  rejectIssue(
    data: $data,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "data": IssueRejectionInput,
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "rejectIssue": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["abc123"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

removeChatGroupParticipant

Response

Returns a ChatRoom

Arguments
NameDescription
account - ID!
where - ChatRoomWhereUniqueInput!

Example

Query
mutation RemoveChatGroupParticipant(
  $account: ID!,
  $where: ChatRoomWhereUniqueInput!
) {
  removeChatGroupParticipant(
    account: $account,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"account": 4, "where": ChatRoomWhereUniqueInput}
Response
{
  "data": {
    "removeChatGroupParticipant": {
      "_id": 4,
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "canSendMessage": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "abc123",
      "previewedBy": [Account],
      "previewedByIds": ["4"],
      "protected": false,
      "room": Room,
      "roomId": "abc123",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

removeFile

Response

Returns a File

Arguments
NameDescription
tenant - ID
where - FileWhereUniqueInput!

Example

Query
mutation RemoveFile(
  $tenant: ID,
  $where: FileWhereUniqueInput!
) {
  removeFile(
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{
  "tenant": "4",
  "where": FileWhereUniqueInput
}
Response
{
  "data": {
    "removeFile": {
      "_id": "4",
      "accessToken": "abc123",
      "awsId": "xyz789",
      "comment": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "xyz789",
      "hasThumbnail": false,
      "mime": "abc123",
      "name": "xyz789",
      "path": "abc123",
      "protected": false,
      "size": 123.45,
      "system": true,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "uploadedFromLibrary": true
    }
  }
}

removeSkillLevels

Response

Returns [SkillLevel]

Arguments
NameDescription
accountIds - [ID!]!
skillSubjectId - ID!

Example

Query
mutation RemoveSkillLevels(
  $accountIds: [ID!]!,
  $skillSubjectId: ID!
) {
  removeSkillLevels(
    accountIds: $accountIds,
    skillSubjectId: $skillSubjectId
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "accountIds": ["4"],
  "skillSubjectId": "4"
}
Response
{
  "data": {
    "removeSkillLevels": [
      {
        "_id": 4,
        "account": Account,
        "accountId": "4",
        "acquisitionDate": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "files": [File],
        "filesIds": [4],
        "level": "EXPERT",
        "protected": false,
        "requiredLevel": "EXPERT",
        "skill": Skill,
        "skillId": "4",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

removeSkillSubjects

Response

Returns [SkillSubject]

Arguments
NameDescription
skillSubjectIds - [ID!]!

Example

Query
mutation RemoveSkillSubjects($skillSubjectIds: [ID!]!) {
  removeSkillSubjects(skillSubjectIds: $skillSubjectIds) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{"skillSubjectIds": [4]}
Response
{
  "data": {
    "removeSkillSubjects": [
      {
        "_id": 4,
        "chosenSubjectLevels": ["abc123"],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "name": "abc123",
        "protected": false,
        "skillCount": 123,
        "skillGroupCount": 987,
        "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "userCount": 987
      }
    ]
  }
}

repeatTaskManyTimes

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
groupId - ID!
taskId - [ID!]!
timesToRepeat - Int!

Example

Query
mutation RepeatTaskManyTimes(
  $_id: ID!,
  $groupId: ID!,
  $taskId: [ID!]!,
  $timesToRepeat: Int!
) {
  repeatTaskManyTimes(
    _id: $_id,
    groupId: $groupId,
    taskId: $taskId,
    timesToRepeat: $timesToRepeat
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "_id": 4,
  "groupId": 4,
  "taskId": ["4"],
  "timesToRepeat": 987
}
Response
{
  "data": {
    "repeatTaskManyTimes": {
      "_id": "4",
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": false,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": [4],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

replaceRolesAssignedAndDelete

Response

Returns [Role]

Arguments
NameDescription
_idsToDelete - [ID!]!
_idsToReplace - [ID!]!

Example

Query
mutation ReplaceRolesAssignedAndDelete(
  $_idsToDelete: [ID!]!,
  $_idsToReplace: [ID!]!
) {
  replaceRolesAssignedAndDelete(
    _idsToDelete: $_idsToDelete,
    _idsToReplace: $_idsToReplace
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_idsToDelete": [4], "_idsToReplace": [4]}
Response
{
  "data": {
    "replaceRolesAssignedAndDelete": [
      {
        "_id": "4",
        "assignedGroups": [RoleAssignedGroup],
        "clearances": [MyClearances],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "name": "abc123",
        "protected": false,
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

replaceSkillLevels

Response

Returns an ID

Arguments
NameDescription
data - [ReplaceLevelsItem!]!

Example

Query
mutation ReplaceSkillLevels($data: [ReplaceLevelsItem!]!) {
  replaceSkillLevels(data: $data)
}
Variables
{"data": [ReplaceLevelsItem]}
Response
{"data": {"replaceSkillLevels": "4"}}

rescheduleJob

Response

Returns a Job

Arguments
NameDescription
date - DateTime!
id - ID!

Example

Query
mutation RescheduleJob(
  $date: DateTime!,
  $id: ID!
) {
  rescheduleJob(
    date: $date,
    id: $id
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "date": "2007-12-03T10:15:30Z",
  "id": "4"
}
Response
{
  "data": {
    "rescheduleJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

rescheduleManyJobs

Response

Returns a Job

Arguments
NameDescription
date - DateTime!
id - ID!
scheduleNext - ID!
updatePast - Boolean!

Example

Query
mutation RescheduleManyJobs(
  $date: DateTime!,
  $id: ID!,
  $scheduleNext: ID!,
  $updatePast: Boolean!
) {
  rescheduleManyJobs(
    date: $date,
    id: $id,
    scheduleNext: $scheduleNext,
    updatePast: $updatePast
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "date": "2007-12-03T10:15:30Z",
  "id": "4",
  "scheduleNext": "4",
  "updatePast": false
}
Response
{
  "data": {
    "rescheduleManyJobs": {
      "_id": 4,
      "data": JobData,
      "failReason": "xyz789",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "xyz789",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

resendInvite

Response

Returns an Invite

Arguments
NameDescription
_id - String!
tenant - ID

Example

Query
mutation ResendInvite(
  $_id: String!,
  $tenant: ID
) {
  resendInvite(
    _id: $_id,
    tenant: $tenant
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "_id": "abc123",
  "tenant": "4"
}
Response
{
  "data": {
    "resendInvite": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": false,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

resendInviteByEmail

Response

Returns an Invite

Arguments
NameDescription
email - String!
type - String!

Example

Query
mutation ResendInviteByEmail(
  $email: String!,
  $type: String!
) {
  resendInviteByEmail(
    email: $email,
    type: $type
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "email": "xyz789",
  "type": "abc123"
}
Response
{
  "data": {
    "resendInviteByEmail": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": true,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

resendManyInvites

Response

Returns [Invite]

Arguments
NameDescription
_ids - [String!]!

Example

Query
mutation ResendManyInvites($_ids: [String!]!) {
  resendManyInvites(_ids: $_ids) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{"_ids": ["xyz789"]}
Response
{
  "data": {
    "resendManyInvites": [
      {
        "_id": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "extra": InviteExtra,
        "lastSentAt": "2007-12-03T10:15:30Z",
        "protected": false,
        "system": true,
        "token": "abc123",
        "type": "invite_user_to_application",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4,
        "validUntil": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

resendManyInvitesByEmail

Response

Returns [Invite]

Arguments
NameDescription
emails - [String!]!
type - String!

Example

Query
mutation ResendManyInvitesByEmail(
  $emails: [String!]!,
  $type: String!
) {
  resendManyInvitesByEmail(
    emails: $emails,
    type: $type
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "emails": ["abc123"],
  "type": "abc123"
}
Response
{
  "data": {
    "resendManyInvitesByEmail": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "extra": InviteExtra,
        "lastSentAt": "2007-12-03T10:15:30Z",
        "protected": true,
        "system": false,
        "token": "xyz789",
        "type": "invite_user_to_application",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "validUntil": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

resetArConfiguration

Response

Returns an ArConfiguration

Example

Query
mutation ResetArConfiguration {
  resetArConfiguration {
    _id
    blockedMarkersColor
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    finishedMarkersColor
    markersOnFinishingTask
    markersSize
    markersToShow
    markersType
    notSequentialMarkersColor
    protected
    sequentialMarkersColor
    system
    timerFinishTask
    typeOfInput
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Response
{
  "data": {
    "resetArConfiguration": {
      "_id": "4",
      "blockedMarkersColor": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "finishedMarkersColor": "xyz789",
      "markersOnFinishingTask": "CLOSE",
      "markersSize": 123,
      "markersToShow": "ALL",
      "markersType": "ARROW",
      "notSequentialMarkersColor": "abc123",
      "protected": false,
      "sequentialMarkersColor": "xyz789",
      "system": false,
      "timerFinishTask": "FIVESECONDS",
      "typeOfInput": "BASIC",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

resetIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation ResetIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  resetIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "tenant": "4",
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "resetIssue": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["abc123"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

resetPassword

Response

Returns an Account

Arguments
NameDescription
newPassword - String!
recaptcha - String
token - StringToken string

Example

Query
mutation ResetPassword(
  $newPassword: String!,
  $recaptcha: String,
  $token: String
) {
  resetPassword(
    newPassword: $newPassword,
    recaptcha: $recaptcha,
    token: $token
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "newPassword": "abc123",
  "recaptcha": "xyz789",
  "token": "xyz789"
}
Response
{
  "data": {
    "resetPassword": {
      "ARUser": true,
      "_id": 4,
      "actions": 123,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

resumeGroupTimer

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
groupId - ID!
timer - Int!

Example

Query
mutation ResumeGroupTimer(
  $_id: ID!,
  $groupId: ID!,
  $timer: Int!
) {
  resumeGroupTimer(
    _id: $_id,
    groupId: $groupId,
    timer: $timer
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": 4, "groupId": 4, "timer": 123}
Response
{
  "data": {
    "resumeGroupTimer": {
      "_id": 4,
      "acknowledgeRequired": true,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsAcknowledge": false,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["abc123"],
      "protected": false,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

retakeTask

Response

Returns a Task

Arguments
NameDescription
tenant - ID
where - TaskWhereUniqueInput!

Example

Query
mutation RetakeTask(
  $tenant: ID,
  $where: TaskWhereUniqueInput!
) {
  retakeTask(
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{"tenant": 4, "where": TaskWhereUniqueInput}
Response
{
  "data": {
    "retakeTask": {
      "_id": "4",
      "advancedLabelSelection": TaskAdvancedLabelSelection,
      "arConfiguration": TaskArConfiguration,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedMaterials": [TaskAssignedMaterial],
      "assignedSkills": [TaskAssignedSkill],
      "assignedTools": [TaskAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "estimatedDuration": 987,
      "executedBy": [Account],
      "executedByIds": ["4"],
      "executionInputs": [Input],
      "inputs": [Input],
      "isActiveByOnResponse": false,
      "isLocked": true,
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "onResponseId": 4,
      "order": 987,
      "originalTaskId": 4,
      "parentsTree": ["4"],
      "possibleActions": ["xyz789"],
      "remarks": [TaskRemark],
      "score": TaskScore,
      "site": Site,
      "siteId": "4",
      "stateMachineInstance": StateMachineInstance,
      "taskTemplate": "4",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

runIssues

Response

Returns [IssueInstance]

Arguments
NameDescription
_ids - [ID]
elementIdToSet - IDSite id to set on on-demand work orders
elementIds - [ID]Element ids to filter frequencies to start
labelValuesIds - [ID]
scheduler - [IssueCatalogSchedulerType]
siteIdToSet - IDSite id to set on on-demand work orders
siteIds - [ID]Site ids to filter frequencies to start
timestamp - DateTime

Example

Query
mutation RunIssues(
  $_ids: [ID],
  $elementIdToSet: ID,
  $elementIds: [ID],
  $labelValuesIds: [ID],
  $scheduler: [IssueCatalogSchedulerType],
  $siteIdToSet: ID,
  $siteIds: [ID],
  $timestamp: DateTime
) {
  runIssues(
    _ids: $_ids,
    elementIdToSet: $elementIdToSet,
    elementIds: $elementIds,
    labelValuesIds: $labelValuesIds,
    scheduler: $scheduler,
    siteIdToSet: $siteIdToSet,
    siteIds: $siteIds,
    timestamp: $timestamp
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "_ids": ["4"],
  "elementIdToSet": "4",
  "elementIds": [4],
  "labelValuesIds": [4],
  "scheduler": [IssueCatalogSchedulerType],
  "siteIdToSet": 4,
  "siteIds": [4],
  "timestamp": "2007-12-03T10:15:30Z"
}
Response
{
  "data": {
    "runIssues": [
      {
        "_id": "4",
        "acknowledgeRequired": true,
        "acknowledgedAccounts": [Account],
        "acknowledgedAccountsIds": ["4"],
        "allTaskScore": IssueTasksScore,
        "allowTracking": true,
        "approval": IssueInstanceApproval,
        "assignedAccounts": [Account],
        "assignedAccountsIds": [4],
        "assignedLabelValues": [LabelValue],
        "assignedLabelValuesIds": [4],
        "assignedSkills": [IssueInstanceAssignedSkill],
        "catalog": IssueCatalog,
        "catalogId": "4",
        "chatRoom": ChatRoom,
        "chatRoomId": 4,
        "closedAt": "2007-12-03T10:15:30Z",
        "completedTasksCount": 987,
        "conflictHandler": "keepBoth",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "createdBySystem": true,
        "customArConfiguration": true,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "dueDate": "2007-12-03T10:15:30Z",
        "dueDateStamp": "2007-12-03T10:15:30Z",
        "duration": 123,
        "element": Element,
        "elementId": 4,
        "emailsToSendReport": ["abc123"],
        "endDate": "2007-12-03T10:15:30Z",
        "estimatedDuration": 123,
        "estimatedDurationUnit": "hours",
        "executedBy": [Account],
        "executedByIds": ["4"],
        "failResponses": 987,
        "filterTasksLabelValues": [LabelValue],
        "filterTasksLabelValuesIds": ["4"],
        "finishedByConditionalInput": true,
        "frequency": IssueInstanceFrequency,
        "glarID": "abc123",
        "glarPrefix": "abc123",
        "inputs": [Input],
        "isLocked": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "lockedBy": Account,
        "lockedById": 4,
        "markers": [Marker],
        "materialLegendAndComments": false,
        "name": "abc123",
        "needsAcknowledge": true,
        "needsApproval": true,
        "note": "abc123",
        "parentElement": Element,
        "parentElementId": 4,
        "parentSite": Site,
        "parentSiteId": "4",
        "possibleActions": ["abc123"],
        "protected": false,
        "remarksOnTasks": false,
        "requestDescription": false,
        "rootElement": Element,
        "rootElementId": "4",
        "rootSite": Site,
        "rootSiteId": "4",
        "scoreInputs": false,
        "seenBy": [Account],
        "seenByIds": ["4"],
        "sequential": false,
        "site": Site,
        "siteId": 4,
        "startDate": "2007-12-03T10:15:30Z",
        "stateMachineInstance": StateMachineInstance,
        "system": true,
        "taskGroups": [TaskGroup],
        "timesheetCount": 987,
        "timesheets": [Timesheet],
        "toolAssociations": [
          IssueInstanceToolAssociation
        ],
        "toolItems": [ToolItem],
        "toolItemsIds": [4],
        "toolLegendAndComments": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "usersNotBlocked": [4],
        "workPackage": JobDataWorkPackage,
        "workPackageId": "4"
      }
    ]
  }
}

runJob

Response

Returns a Job

Arguments
NameDescription
tenant - ID
where - JobWhereUniqueInput!

Example

Query
mutation RunJob(
  $tenant: ID,
  $where: JobWhereUniqueInput!
) {
  runJob(
    tenant: $tenant,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"tenant": 4, "where": JobWhereUniqueInput}
Response
{
  "data": {
    "runJob": {
      "_id": "4",
      "data": JobData,
      "failReason": "abc123",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

sendNotifications

This mutation no longer is in use, please don't use it
Response

Returns [PushNotification]

Arguments
NameDescription
data - PushNotificationCreateInput

Example

Query
mutation SendNotifications($data: PushNotificationCreateInput) {
  sendNotifications(data: $data) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"data": PushNotificationCreateInput}
Response
{
  "data": {
    "sendNotifications": [
      {
        "_id": 4,
        "acknowledged": true,
        "body": "xyz789",
        "createdAt": "2007-12-03T10:15:30Z",
        "data": PushNotificationDatum,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": [4],
        "protected": false,
        "system": true,
        "title": "xyz789",
        "to": Account,
        "toId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "viewed": false
      }
    ]
  }
}

setGpsLocation

Response

Returns an Account

Arguments
NameDescription
coordinates - [Float!]!

Example

Query
mutation SetGpsLocation($coordinates: [Float!]!) {
  setGpsLocation(coordinates: $coordinates) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"coordinates": [123.45]}
Response
{
  "data": {
    "setGpsLocation": {
      "ARUser": false,
      "_id": "4",
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": 4,
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "xyz789",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": true,
      "isPlatformAdmin": false,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": false,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

setPhoto

Response

Returns an Account

Arguments
NameDescription
accountId - ID
photo - Upload!

Example

Query
mutation SetPhoto(
  $accountId: ID,
  $photo: Upload!
) {
  setPhoto(
    accountId: $accountId,
    photo: $photo
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "accountId": "4",
  "photo": Upload
}
Response
{
  "data": {
    "setPhoto": {
      "ARUser": true,
      "_id": 4,
      "actions": 987,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 987,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "xyz789",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": "4",
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": 4,
      "tenantId": 4,
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "xyz789"
    }
  }
}

setPreferences

Response

Returns an Account

Arguments
NameDescription
data - AccountPreferencesCreateInput!

Example

Query
mutation SetPreferences($data: AccountPreferencesCreateInput!) {
  setPreferences(data: $data) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"data": AccountPreferencesCreateInput}
Response
{
  "data": {
    "setPreferences": {
      "ARUser": false,
      "_id": "4",
      "actions": 987,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": [4],
      "chat": 987,
      "clientId": "4",
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "xyz789",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [987.65],
      "impersonatedBy": 4,
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": false,
      "isContact": false,
      "isPlatformAdmin": false,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "xyz789"
    }
  }
}

setTaskExecutionInputNote

Response

Returns a Task

Arguments
NameDescription
_id - ID!Task ID
_inputId - ID!Input ID
data - InputNoteUpdateInput!
onResponsePath - [ID]

Example

Query
mutation SetTaskExecutionInputNote(
  $_id: ID!,
  $_inputId: ID!,
  $data: InputNoteUpdateInput!,
  $onResponsePath: [ID]
) {
  setTaskExecutionInputNote(
    _id: $_id,
    _inputId: $_inputId,
    data: $data,
    onResponsePath: $onResponsePath
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{
  "_id": "4",
  "_inputId": "4",
  "data": InputNoteUpdateInput,
  "onResponsePath": [4]
}
Response
{
  "data": {
    "setTaskExecutionInputNote": {
      "_id": 4,
      "advancedLabelSelection": TaskAdvancedLabelSelection,
      "arConfiguration": TaskArConfiguration,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedMaterials": [TaskAssignedMaterial],
      "assignedSkills": [TaskAssignedSkill],
      "assignedTools": [TaskAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "estimatedDuration": 987,
      "executedBy": [Account],
      "executedByIds": ["4"],
      "executionInputs": [Input],
      "inputs": [Input],
      "isActiveByOnResponse": false,
      "isLocked": false,
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "onResponseId": 4,
      "order": 987,
      "originalTaskId": 4,
      "parentsTree": [4],
      "possibleActions": ["xyz789"],
      "remarks": [TaskRemark],
      "score": TaskScore,
      "site": Site,
      "siteId": 4,
      "stateMachineInstance": StateMachineInstance,
      "taskTemplate": 4,
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

setTaskExecutionInputs

Response

Returns a Task

Arguments
NameDescription
_id - ID!Task ID
cancelMotive - String
data - [InputValueUpdateInput!]!
issueId - IDIssue ID
timestamp - DateTime

Example

Query
mutation SetTaskExecutionInputs(
  $_id: ID!,
  $cancelMotive: String,
  $data: [InputValueUpdateInput!]!,
  $issueId: ID,
  $timestamp: DateTime
) {
  setTaskExecutionInputs(
    _id: $_id,
    cancelMotive: $cancelMotive,
    data: $data,
    issueId: $issueId,
    timestamp: $timestamp
  ) {
    _id
    advancedLabelSelection {
      ...TaskAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskArConfigurationFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedMaterials {
      ...TaskAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskAssignedSkillFragment
    }
    assignedTools {
      ...TaskAssignedToolFragment
    }
    createdAt
    description
    element {
      ...ElementFragment
    }
    elementId
    estimatedDuration
    executedBy {
      ...AccountFragment
    }
    executedByIds
    executionInputs {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isActiveByOnResponse
    isLocked
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    onResponseId
    order
    originalTaskId
    parentsTree
    possibleActions
    remarks {
      ...TaskRemarkFragment
    }
    score {
      ...TaskScoreFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    taskTemplate
    updatedAt
  }
}
Variables
{
  "_id": "4",
  "cancelMotive": "abc123",
  "data": [InputValueUpdateInput],
  "issueId": "4",
  "timestamp": "2007-12-03T10:15:30Z"
}
Response
{
  "data": {
    "setTaskExecutionInputs": {
      "_id": 4,
      "advancedLabelSelection": TaskAdvancedLabelSelection,
      "arConfiguration": TaskArConfiguration,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedMaterials": [TaskAssignedMaterial],
      "assignedSkills": [TaskAssignedSkill],
      "assignedTools": [TaskAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "abc123",
      "element": Element,
      "elementId": "4",
      "estimatedDuration": 987,
      "executedBy": [Account],
      "executedByIds": ["4"],
      "executionInputs": [Input],
      "inputs": [Input],
      "isActiveByOnResponse": true,
      "isLocked": true,
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "onResponseId": 4,
      "order": 987,
      "originalTaskId": "4",
      "parentsTree": ["4"],
      "possibleActions": ["abc123"],
      "remarks": [TaskRemark],
      "score": TaskScore,
      "site": Site,
      "siteId": 4,
      "stateMachineInstance": StateMachineInstance,
      "taskTemplate": 4,
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

softDeleteFiles

Response

Returns a DeleteManyFilesInfo

Arguments
NameDescription
where - FileWhereInput!

Example

Query
mutation SoftDeleteFiles($where: FileWhereInput!) {
  softDeleteFiles(where: $where) {
    deleted
  }
}
Variables
{"where": FileWhereInput}
Response
{"data": {"softDeleteFiles": {"deleted": 123}}}

startGroupTimer

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
groupId - ID!

Example

Query
mutation StartGroupTimer(
  $_id: ID!,
  $groupId: ID!
) {
  startGroupTimer(
    _id: $_id,
    groupId: $groupId
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": 4, "groupId": 4}
Response
{
  "data": {
    "startGroupTimer": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

startRecording

Response

Returns a HandleRecording

Arguments
NameDescription
room_id - String!
session_id - String
video_track_id - String!

Example

Query
mutation StartRecording(
  $room_id: String!,
  $session_id: String,
  $video_track_id: String!
) {
  startRecording(
    room_id: $room_id,
    session_id: $session_id,
    video_track_id: $video_track_id
  ) {
    expiredTimeInSeconds
    resourceId
    sid
  }
}
Variables
{
  "room_id": "xyz789",
  "session_id": "abc123",
  "video_track_id": "xyz789"
}
Response
{
  "data": {
    "startRecording": {
      "expiredTimeInSeconds": 123,
      "resourceId": "xyz789",
      "sid": "abc123"
    }
  }
}

stopRecording

Response

Returns a HandleRecording

Arguments
NameDescription
room_id - String!

Example

Query
mutation StopRecording($room_id: String!) {
  stopRecording(room_id: $room_id) {
    expiredTimeInSeconds
    resourceId
    sid
  }
}
Variables
{"room_id": "xyz789"}
Response
{
  "data": {
    "stopRecording": {
      "expiredTimeInSeconds": 123,
      "resourceId": "xyz789",
      "sid": "abc123"
    }
  }
}

subscribeTopic

Response

Returns an Int

Arguments
NameDescription
token - String

Example

Query
mutation SubscribeTopic($token: String) {
  subscribeTopic(token: $token)
}
Variables
{"token": "xyz789"}
Response
{"data": {"subscribeTopic": 123}}

switchTaskTemplateDraftVariants

Response

Returns [IssueTemplateDraft]

Arguments
NameDescription
_id - ID!
taskTemplates - [ID!]!

Example

Query
mutation SwitchTaskTemplateDraftVariants(
  $_id: ID!,
  $taskTemplates: [ID!]!
) {
  switchTaskTemplateDraftVariants(
    _id: $_id,
    taskTemplates: $taskTemplates
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"_id": 4, "taskTemplates": ["4"]}
Response
{
  "data": {
    "switchTaskTemplateDraftVariants": [
      {
        "_id": "4",
        "assignedSkills": [
          IssueTemplateDraftAssignedSkill
        ],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "favorites": [IssueTemplateDraftFavorite],
        "folder": IssueTemplateFolder,
        "folderId": "4",
        "frame": IssueTemplateDraftFrame,
        "icon": "abc123",
        "protected": true,
        "selectedVariant": "4",
        "system": true,
        "taskTemplateGroups": [
          IssueTemplateDraftTaskTemplateGroup
        ],
        "timeMapColumns": [
          IssueTemplateDraftTimeMapColumn
        ],
        "timeTableFilters": [
          IssueTemplateDraftTimeTableFilter
        ],
        "title": "xyz789",
        "updateTemplate": IssueTemplate,
        "updateTemplateId": 4,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": IssueTemplateDraftVariant
      }
    ]
  }
}

taskGroupDraftsByLabelFilter

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
_id - ID!
filter - [TaskTemplateAdvancedLabelSelectionFilterCreateInput]

Example

Query
mutation TaskGroupDraftsByLabelFilter(
  $_id: ID!,
  $filter: [TaskTemplateAdvancedLabelSelectionFilterCreateInput]
) {
  taskGroupDraftsByLabelFilter(
    _id: $_id,
    filter: $filter
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "_id": "4",
  "filter": [
    TaskTemplateAdvancedLabelSelectionFilterCreateInput
  ]
}
Response
{
  "data": {
    "taskGroupDraftsByLabelFilter": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

toggleAcknowledgePushNotification

Response

Returns a PushNotification

Arguments
NameDescription
id - ID!

Example

Query
mutation ToggleAcknowledgePushNotification($id: ID!) {
  toggleAcknowledgePushNotification(id: $id) {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Variables
{"id": 4}
Response
{
  "data": {
    "toggleAcknowledgePushNotification": {
      "_id": 4,
      "acknowledged": true,
      "body": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "data": PushNotificationDatum,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": [4],
      "protected": true,
      "system": true,
      "title": "abc123",
      "to": Account,
      "toId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "viewed": true
    }
  }
}

toggleLikePost

Response

Returns a Post

Arguments
NameDescription
postId - ID!

Example

Query
mutation ToggleLikePost($postId: ID!) {
  toggleLikePost(postId: $postId) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"postId": 4}
Response
{
  "data": {
    "toggleLikePost": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": ["4"],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 123,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

unDeleteOnePost

Response

Returns a Boolean

Arguments
NameDescription
tenant - ID
where - PostWhereUniqueInput!

Example

Query
mutation UnDeleteOnePost(
  $tenant: ID,
  $where: PostWhereUniqueInput!
) {
  unDeleteOnePost(
    tenant: $tenant,
    where: $where
  )
}
Variables
{"tenant": 4, "where": PostWhereUniqueInput}
Response
{"data": {"unDeleteOnePost": true}}

unlockAction

Response

Returns an Action

Arguments
NameDescription
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
mutation UnlockAction(
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  unlockAction(
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"tenant": 4, "where": ActionWhereUniqueInput}
Response
{
  "data": {
    "unlockAction": {
      "ID": 987,
      "_id": "4",
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": 4,
      "files": [File],
      "filesIds": ["4"],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "isLocked": false,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionLog],
      "name": "abc123",
      "protected": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "site": Site,
      "siteId": 4,
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

unlockIssue

Response

Returns an IssueInstance

Arguments
NameDescription
tenant - ID
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation UnlockIssue(
  $tenant: ID,
  $where: IssueInstanceWhereUniqueInput!
) {
  unlockIssue(
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "tenant": "4",
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "unlockIssue": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "createdBySystem": true,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": ["4"],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

updateAccount

Response

Returns an Account

Arguments
NameDescription
data - AccountUpdateInput!
tenant - ID
where - AccountWhereUniqueInput!

Example

Query
mutation UpdateAccount(
  $data: AccountUpdateInput!,
  $tenant: ID,
  $where: AccountWhereUniqueInput!
) {
  updateAccount(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "data": AccountUpdateInput,
  "tenant": "4",
  "where": AccountWhereUniqueInput
}
Response
{
  "data": {
    "updateAccount": {
      "ARUser": true,
      "_id": 4,
      "actions": 987,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": "4",
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "email": "xyz789",
      "feed": 123,
      "filters": [AccountFilter],
      "firstLogin": false,
      "folder": AccountFolder,
      "folderId": "4",
      "gps": [123.45],
      "impersonatedBy": 4,
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": true,
      "isPlatformAdmin": true,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["xyz789"],
      "myClearances": [MyClearances],
      "name": "xyz789",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "xyz789",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": "4",
      "tutorialCompleted": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

updateAccountFolder

Response

Returns an AccountFolder

Arguments
NameDescription
data - AccountFolderUpdateInput!
tenant - ID
where - AccountFolderWhereUniqueInput!

Example

Query
mutation UpdateAccountFolder(
  $data: AccountFolderUpdateInput!,
  $tenant: ID,
  $where: AccountFolderWhereUniqueInput!
) {
  updateAccountFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountFoldersCount
    accountsCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountFolderFragment
    }
    parentId
    parentsTree {
      ...AccountFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AccountFolderUpdateInput,
  "tenant": "4",
  "where": AccountFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateAccountFolder": {
      "_id": "4",
      "accountFoldersCount": 123,
      "accountsCount": 123,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": AccountFolder,
      "parentId": 4,
      "parentsTree": [AccountFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateAccountTemplateFolder

Response

Returns an AccountTemplateFolder

Example

Query
mutation UpdateAccountTemplateFolder(
  $data: AccountTemplateFolderUpdateInput!,
  $tenant: ID,
  $where: AccountTemplateFolderWhereUniqueInput!
) {
  updateAccountTemplateFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accountTemplateFoldersCount
    accountTemplatesCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AccountTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...AccountTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AccountTemplateFolderUpdateInput,
  "tenant": "4",
  "where": AccountTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateAccountTemplateFolder": {
      "_id": 4,
      "accountTemplateFoldersCount": 987,
      "accountTemplatesCount": 123,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": AccountTemplateFolder,
      "parentId": "4",
      "parentsTree": [AccountTemplateFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateAction

Response

Returns an Action

Arguments
NameDescription
data - ActionUpdateInput!
tenant - ID
where - ActionWhereUniqueInput!

Example

Query
mutation UpdateAction(
  $data: ActionUpdateInput!,
  $tenant: ID,
  $where: ActionWhereUniqueInput!
) {
  updateAction(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    isLocked
    issueName
    issues {
      ...ActionIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ActionUpdateInput,
  "tenant": "4",
  "where": ActionWhereUniqueInput
}
Response
{
  "data": {
    "updateAction": {
      "ID": 987,
      "_id": "4",
      "alert": Alert,
      "alertId": 4,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "catalog": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "element": Element,
      "elementId": "4",
      "files": [File],
      "filesIds": [4],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": "4",
      "isLocked": true,
      "issueName": "abc123",
      "issues": [ActionIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "log": [ActionLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateActionDraft

Response

Returns an ActionDraft

Arguments
NameDescription
data - ActionDraftUpdateInput!
tenant - ID
where - ActionDraftWhereUniqueInput!

Example

Query
mutation UpdateActionDraft(
  $data: ActionDraftUpdateInput!,
  $tenant: ID,
  $where: ActionDraftWhereUniqueInput!
) {
  updateActionDraft(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    ID
    _id
    alert {
      ...AlertFragment
    }
    alertId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    catalog
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate {
      ...ActionDraftDueDateFragment
    }
    element {
      ...ElementFragment
    }
    elementId
    files {
      ...FileFragment
    }
    filesIds
    finishDate
    input
    issueName
    issues {
      ...ActionDraftIssueFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    log {
      ...ActionDraftLogFragment
    }
    name
    protected
    seenBy {
      ...AccountFragment
    }
    seenByIds
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ActionDraftUpdateInput,
  "tenant": "4",
  "where": ActionDraftWhereUniqueInput
}
Response
{
  "data": {
    "updateActionDraft": {
      "ID": 987,
      "_id": "4",
      "alert": Alert,
      "alertId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "catalog": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "dueDate": ActionDraftDueDate,
      "element": Element,
      "elementId": 4,
      "files": [File],
      "filesIds": ["4"],
      "finishDate": "2007-12-03T10:15:30Z",
      "input": 4,
      "issueName": "xyz789",
      "issues": [ActionDraftIssue],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "log": [ActionDraftLog],
      "name": "abc123",
      "protected": true,
      "seenBy": [Account],
      "seenByIds": [4],
      "site": Site,
      "siteId": "4",
      "status": "CANT_DO",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateAlarmConfigurations

Response

Returns a Configuration

Arguments
NameDescription
address - String
database - String
enabled - Boolean
password - String
type - AlarmTypes
username - String

Example

Query
mutation UpdateAlarmConfigurations(
  $address: String,
  $database: String,
  $enabled: Boolean,
  $password: String,
  $type: AlarmTypes,
  $username: String
) {
  updateAlarmConfigurations(
    address: $address,
    database: $database,
    enabled: $enabled,
    password: $password,
    type: $type,
    username: $username
  ) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{
  "address": "xyz789",
  "database": "abc123",
  "enabled": true,
  "password": "abc123",
  "type": "InfluxDBV2",
  "username": "xyz789"
}
Response
{
  "data": {
    "updateAlarmConfigurations": {
      "_id": 4,
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateAnchor

Response

Returns an Anchor

Arguments
NameDescription
data - AnchorUpdateInput!
tenant - ID
where - AnchorWhereUniqueInput!

Example

Query
mutation UpdateAnchor(
  $data: AnchorUpdateInput!,
  $tenant: ID,
  $where: AnchorWhereUniqueInput!
) {
  updateAnchor(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    area {
      ...AreaFragment
    }
    areaId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    photo {
      ...FileFragment
    }
    photoId
    protected
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AnchorUpdateInput,
  "tenant": "4",
  "where": AnchorWhereUniqueInput
}
Response
{
  "data": {
    "updateAnchor": {
      "_id": "4",
      "area": Area,
      "areaId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "photo": File,
      "photoId": "4",
      "protected": false,
      "spatialAnchorId": "abc123",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateAnchorImage

Response

Returns an AnchorImage

Arguments
NameDescription
data - AnchorImageUpdateInput!
tenant - ID
where - AnchorImageWhereUniqueInput!

Example

Query
mutation UpdateAnchorImage(
  $data: AnchorImageUpdateInput!,
  $tenant: ID,
  $where: AnchorImageWhereUniqueInput!
) {
  updateAnchorImage(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    height
    markers {
      ...MarkerFragment
    }
    markersCount
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AnchorImageUpdateInput,
  "tenant": 4,
  "where": AnchorImageWhereUniqueInput
}
Response
{
  "data": {
    "updateAnchorImage": {
      "_id": "4",
      "coordinates": [123.45],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "height": 123.45,
      "markers": [Marker],
      "markersCount": 987,
      "name": "xyz789",
      "photo": File,
      "photoId": "4",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateArConfiguration

Response

Returns an ArConfiguration

Arguments
NameDescription
data - ArConfigurationUpdateInput!
tenant - ID
where - ArConfigurationWhereUniqueInput!

Example

Query
mutation UpdateArConfiguration(
  $data: ArConfigurationUpdateInput!,
  $tenant: ID,
  $where: ArConfigurationWhereUniqueInput!
) {
  updateArConfiguration(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    blockedMarkersColor
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    finishedMarkersColor
    markersOnFinishingTask
    markersSize
    markersToShow
    markersType
    notSequentialMarkersColor
    protected
    sequentialMarkersColor
    system
    timerFinishTask
    typeOfInput
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ArConfigurationUpdateInput,
  "tenant": 4,
  "where": ArConfigurationWhereUniqueInput
}
Response
{
  "data": {
    "updateArConfiguration": {
      "_id": "4",
      "blockedMarkersColor": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "finishedMarkersColor": "xyz789",
      "markersOnFinishingTask": "CLOSE",
      "markersSize": 987,
      "markersToShow": "ALL",
      "markersType": "ARROW",
      "notSequentialMarkersColor": "abc123",
      "protected": true,
      "sequentialMarkersColor": "xyz789",
      "system": true,
      "timerFinishTask": "FIVESECONDS",
      "typeOfInput": "BASIC",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateArea

Response

Returns an Area

Arguments
NameDescription
data - AreaUpdateInput!
tenant - ID
where - AreaWhereUniqueInput!

Example

Query
mutation UpdateArea(
  $data: AreaUpdateInput!,
  $tenant: ID,
  $where: AreaWhereUniqueInput!
) {
  updateArea(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AreaUpdateInput,
  "tenant": "4",
  "where": AreaWhereUniqueInput
}
Response
{
  "data": {
    "updateArea": {
      "_id": 4,
      "anchors": [Anchor],
      "anchorsIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": AreaFolder,
      "folderId": 4,
      "name": "abc123",
      "photo": File,
      "photoId": 4,
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateAreaFolder

Response

Returns an AreaFolder

Arguments
NameDescription
data - AreaFolderUpdateInput!
tenant - ID
where - AreaFolderWhereUniqueInput!

Example

Query
mutation UpdateAreaFolder(
  $data: AreaFolderUpdateInput!,
  $tenant: ID,
  $where: AreaFolderWhereUniqueInput!
) {
  updateAreaFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    areaFoldersCount
    areasCount
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...AreaFolderFragment
    }
    parentId
    parentsTree {
      ...AreaFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": AreaFolderUpdateInput,
  "tenant": "4",
  "where": AreaFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateAreaFolder": {
      "_id": "4",
      "areaFoldersCount": 987,
      "areasCount": 987,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": AreaFolder,
      "parentId": "4",
      "parentsTree": [AreaFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateChatMessage

Response

Returns a ChatMessage

Arguments
NameDescription
data - ChatMessageUpdateInput!
tenant - ID
where - ChatMessageWhereUniqueInput!

Example

Query
mutation UpdateChatMessage(
  $data: ChatMessageUpdateInput!,
  $tenant: ID,
  $where: ChatMessageWhereUniqueInput!
) {
  updateChatMessage(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ChatMessageUpdateInput,
  "tenant": "4",
  "where": ChatMessageWhereUniqueInput
}
Response
{
  "data": {
    "updateChatMessage": {
      "_id": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": [4],
      "important": true,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": false,
      "protected": false,
      "receivedBy": [Account],
      "receivedByIds": [4],
      "removed": false,
      "replyTo": ChatMessage,
      "replyToId": 4,
      "seenBy": [Account],
      "seenByIds": [4],
      "system": false,
      "text": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateChatRoom

Response

Returns a ChatRoom

Arguments
NameDescription
data - ChatRoomUpdateData
where - ChatRoomWhereUniqueInput

Example

Query
mutation UpdateChatRoom(
  $data: ChatRoomUpdateData,
  $where: ChatRoomWhereUniqueInput
) {
  updateChatRoom(
    data: $data,
    where: $where
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ChatRoomUpdateData,
  "where": ChatRoomWhereUniqueInput
}
Response
{
  "data": {
    "updateChatRoom": {
      "_id": "4",
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "canSendMessage": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "abc123",
      "previewedBy": [Account],
      "previewedByIds": ["4"],
      "protected": false,
      "room": Room,
      "roomId": "abc123",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateChatRoomImportantMessages

Response

Returns a ChatRoom

Arguments
NameDescription
data - ImportantMessagesInput
id - ID

Example

Query
mutation UpdateChatRoomImportantMessages(
  $data: ImportantMessagesInput,
  $id: ID
) {
  updateChatRoomImportantMessages(
    data: $data,
    id: $id
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ImportantMessagesInput,
  "id": "4"
}
Response
{
  "data": {
    "updateChatRoomImportantMessages": {
      "_id": 4,
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "xyz789",
      "previewedBy": [Account],
      "previewedByIds": ["4"],
      "protected": true,
      "room": Room,
      "roomId": "xyz789",
      "system": false,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateComment

Response

Returns a Comment

Arguments
NameDescription
data - CommentUpdateInput!
tenant - ID
where - CommentWhereUniqueInput!

Example

Query
mutation UpdateComment(
  $data: CommentUpdateInput!,
  $tenant: ID,
  $where: CommentWhereUniqueInput!
) {
  updateComment(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": CommentUpdateInput,
  "tenant": 4,
  "where": CommentWhereUniqueInput
}
Response
{
  "data": {
    "updateComment": {
      "_id": 4,
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": "4",
      "parentsTree": [Comment],
      "parentsTreeIds": [4],
      "post": Post,
      "postId": "4",
      "rootReplies": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateContact

Response

Returns a Contact

Arguments
NameDescription
data - ContactUpdateInput!
tenant - ID
where - ContactWhereUniqueInput!

Example

Query
mutation UpdateContact(
  $data: ContactUpdateInput!,
  $tenant: ID,
  $where: ContactWhereUniqueInput!
) {
  updateContact(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    user {
      ...AccountFragment
    }
    userContact {
      ...AccountFragment
    }
    userContactId
    userId
  }
}
Variables
{
  "data": ContactUpdateInput,
  "tenant": "4",
  "where": ContactWhereUniqueInput
}
Response
{
  "data": {
    "updateContact": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "user": Account,
      "userContact": Account,
      "userContactId": "4",
      "userId": "4"
    }
  }
}

updateDashboard

Response

Returns a Dashboard

Arguments
NameDescription
data - DashboardUpdateInput!
tenant - ID
where - DashboardWhereUniqueInput!

Example

Query
mutation UpdateDashboard(
  $data: DashboardUpdateInput!,
  $tenant: ID,
  $where: DashboardWhereUniqueInput!
) {
  updateDashboard(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    default
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...DashboardFolderFragment
    }
    folderId
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{
  "data": DashboardUpdateInput,
  "tenant": "4",
  "where": DashboardWhereUniqueInput
}
Response
{
  "data": {
    "updateDashboard": {
      "_id": 4,
      "account": Account,
      "accountId": "4",
      "autoRefresh": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "default": true,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "folder": DashboardFolder,
      "folderId": "4",
      "name": "abc123",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "widgets": [Widget]
    }
  }
}

updateDashboardDraft

Response

Returns a DashboardDraft

Arguments
NameDescription
data - DashboardDraftInput
where - DashboardDraftWhereUniqueInput

Example

Query
mutation UpdateDashboardDraft(
  $data: DashboardDraftInput,
  $where: DashboardDraftWhereUniqueInput
) {
  updateDashboardDraft(
    data: $data,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    dashboard {
      ...DashboardFragment
    }
    dashboardId
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    updatedAt
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{
  "data": DashboardDraftInput,
  "where": DashboardDraftWhereUniqueInput
}
Response
{
  "data": {
    "updateDashboardDraft": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "autoRefresh": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "dashboard": Dashboard,
      "dashboardId": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "widgets": [Widget]
    }
  }
}

updateDashboardFolder

Response

Returns a DashboardFolder

Arguments
NameDescription
data - DashboardFolderUpdateInput!
tenant - ID
where - DashboardFolderWhereUniqueInput!

Example

Query
mutation UpdateDashboardFolder(
  $data: DashboardFolderUpdateInput!,
  $tenant: ID,
  $where: DashboardFolderWhereUniqueInput!
) {
  updateDashboardFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboardFoldersCount
    dashboardsCount
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...DashboardFolderFragment
    }
    parentId
    parentsTree {
      ...DashboardFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": DashboardFolderUpdateInput,
  "tenant": 4,
  "where": DashboardFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateDashboardFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "dashboardFoldersCount": 123,
      "dashboardsCount": 123,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": DashboardFolder,
      "parentId": "4",
      "parentsTree": [DashboardFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateDevice

Response

Returns a Device

Arguments
NameDescription
data - DeviceUpdateInput!
tenant - ID
where - DeviceWhereUniqueInput!

Example

Query
mutation UpdateDevice(
  $data: DeviceUpdateInput!,
  $tenant: ID,
  $where: DeviceWhereUniqueInput!
) {
  updateDevice(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    deviceType
    lastBrowse
    lastRead
    mqttBrockerAddress
    mqttConfig {
      ...DeviceMqttConfigFragment
    }
    mqttId
    name
    protected
    protocol
    site {
      ...SiteFragment
    }
    siteId
    status
    system
    topic
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": DeviceUpdateInput,
  "tenant": "4",
  "where": DeviceWhereUniqueInput
}
Response
{
  "data": {
    "updateDevice": {
      "_id": "4",
      "address": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "deviceType": "other_generic",
      "lastBrowse": {},
      "lastRead": {},
      "mqttBrockerAddress": "xyz789",
      "mqttConfig": DeviceMqttConfig,
      "mqttId": "abc123",
      "name": "abc123",
      "protected": true,
      "protocol": "generic",
      "site": Site,
      "siteId": 4,
      "status": "xyz789",
      "system": false,
      "topic": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateElement

Response

Returns an Element

Arguments
NameDescription
data - ElementUpdateInput!
tenant - ID
where - ElementWhereUniqueInput!

Example

Query
mutation UpdateElement(
  $data: ElementUpdateInput!,
  $tenant: ID,
  $where: ElementWhereUniqueInput!
) {
  updateElement(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementUpdateInput,
  "tenant": "4",
  "where": ElementWhereUniqueInput
}
Response
{
  "data": {
    "updateElement": {
      "_id": "4",
      "arLocked": true,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "elements": [Element],
      "elementsCount": 123,
      "icon": "xyz789",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": 4,
      "name": "xyz789",
      "needsApproval": true,
      "parent": Element,
      "parentId": "4",
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": "4",
      "protected": false,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": "4",
      "system": false,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 987,
      "template": ElementTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateElementSiteReport

Response

Returns an ElementSiteReport

Arguments
NameDescription
data - ElementSiteReportUpdateInput!
tenant - ID
where - ElementSiteReportWhereUniqueInput!

Example

Query
mutation UpdateElementSiteReport(
  $data: ElementSiteReportUpdateInput!,
  $tenant: ID,
  $where: ElementSiteReportWhereUniqueInput!
) {
  updateElementSiteReport(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplate {
      ...ElementTemplateFragment
    }
    elementTemplateId
    folder {
      ...ElementSiteReportFolderFragment
    }
    folderId
    generalFields
    inputFields
    myConfig {
      ...ElementSiteReportConfigFragment
    }
    name
    protected
    siteTemplate {
      ...SiteTemplateFragment
    }
    siteTemplateId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementSiteReportUpdateInput,
  "tenant": 4,
  "where": ElementSiteReportWhereUniqueInput
}
Response
{
  "data": {
    "updateElementSiteReport": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementTemplate": ElementTemplate,
      "elementTemplateId": "4",
      "folder": ElementSiteReportFolder,
      "folderId": "4",
      "generalFields": ["description"],
      "inputFields": ["4"],
      "myConfig": ElementSiteReportConfig,
      "name": "abc123",
      "protected": false,
      "siteTemplate": SiteTemplate,
      "siteTemplateId": 4,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateElementSiteReportConfig

Response

Returns an ElementSiteReportConfig

Example

Query
mutation UpdateElementSiteReportConfig(
  $data: ElementSiteReportConfigUpdateInput!,
  $tenant: ID,
  $where: ElementSiteReportConfigWhereUniqueInput!
) {
  updateElementSiteReportConfig(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReport {
      ...ElementSiteReportFragment
    }
    elementSiteReportId
    generalFieldsToHide
    inputFieldsToHide
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementSiteReportConfigUpdateInput,
  "tenant": 4,
  "where": ElementSiteReportConfigWhereUniqueInput
}
Response
{
  "data": {
    "updateElementSiteReportConfig": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementSiteReport": ElementSiteReport,
      "elementSiteReportId": 4,
      "generalFieldsToHide": ["abc123"],
      "inputFieldsToHide": ["4"],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateElementSiteReportFolder

Response

Returns an ElementSiteReportFolder

Example

Query
mutation UpdateElementSiteReportFolder(
  $data: ElementSiteReportFolderUpdateInput!,
  $tenant: ID,
  $where: ElementSiteReportFolderWhereUniqueInput!
) {
  updateElementSiteReportFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementSiteReportFoldersCount
    elementSiteReportsCount
    name
    parent {
      ...ElementSiteReportFolderFragment
    }
    parentId
    parentsTree {
      ...ElementSiteReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementSiteReportFolderUpdateInput,
  "tenant": 4,
  "where": ElementSiteReportFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateElementSiteReportFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "elementSiteReportFoldersCount": 123,
      "elementSiteReportsCount": 987,
      "name": "abc123",
      "parent": ElementSiteReportFolder,
      "parentId": 4,
      "parentsTree": [ElementSiteReportFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateElementTemplate

Response

Returns an ElementTemplate

Example

Query
mutation UpdateElementTemplate(
  $data: ElementTemplateUpdateInput!,
  $where: ElementTemplateWhereUniqueInput!
) {
  updateElementTemplate(
    data: $data,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementTemplateUpdateInput,
  "where": ElementTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateElementTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": ElementTemplateFolder,
      "folderId": 4,
      "frame": ElementTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "system": false,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateElementTemplateFolder

Response

Returns an ElementTemplateFolder

Example

Query
mutation UpdateElementTemplateFolder(
  $data: ElementTemplateFolderUpdateInput!,
  $tenant: ID,
  $where: ElementTemplateFolderWhereUniqueInput!
) {
  updateElementTemplateFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    elementTemplateFoldersCount
    elementTemplatesCount
    name
    parent {
      ...ElementTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ElementTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ElementTemplateFolderUpdateInput,
  "tenant": 4,
  "where": ElementTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateElementTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "elementTemplateFoldersCount": 123,
      "elementTemplatesCount": 123,
      "name": "abc123",
      "parent": ElementTemplateFolder,
      "parentId": 4,
      "parentsTree": [ElementTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateFile

Response

Returns a File

Arguments
NameDescription
data - FileUpdateInput!
tenant - ID
where - FileWhereUniqueInput!

Example

Query
mutation UpdateFile(
  $data: FileUpdateInput!,
  $tenant: ID,
  $where: FileWhereUniqueInput!
) {
  updateFile(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToken
    awsId
    comment
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    details {
      ...FileDetailFragment
    }
    download {
      ...DownloadFileInfoFragment
    }
    extension
    hasThumbnail
    mime
    name
    path
    protected
    size
    system
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    uploadedFromLibrary
  }
}
Variables
{
  "data": FileUpdateInput,
  "tenant": "4",
  "where": FileWhereUniqueInput
}
Response
{
  "data": {
    "updateFile": {
      "_id": "4",
      "accessToken": "xyz789",
      "awsId": "abc123",
      "comment": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "details": FileDetail,
      "download": DownloadFileInfo,
      "extension": "abc123",
      "hasThumbnail": true,
      "mime": "xyz789",
      "name": "abc123",
      "path": "abc123",
      "protected": false,
      "size": 123.45,
      "system": true,
      "type": "All",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "uploadedFromLibrary": true
    }
  }
}

updateFileConfigurations

Response

Returns a Configuration

Arguments
NameDescription
accessKey - String
bucket - String
endpoint - String
jwtSecret - String
localStorageDirectory - String
maximumFileSize - Float
secretAccessKey - String

Example

Query
mutation UpdateFileConfigurations(
  $accessKey: String,
  $bucket: String,
  $endpoint: String,
  $jwtSecret: String,
  $localStorageDirectory: String,
  $maximumFileSize: Float,
  $secretAccessKey: String
) {
  updateFileConfigurations(
    accessKey: $accessKey,
    bucket: $bucket,
    endpoint: $endpoint,
    jwtSecret: $jwtSecret,
    localStorageDirectory: $localStorageDirectory,
    maximumFileSize: $maximumFileSize,
    secretAccessKey: $secretAccessKey
  ) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{
  "accessKey": "abc123",
  "bucket": "abc123",
  "endpoint": "xyz789",
  "jwtSecret": "xyz789",
  "localStorageDirectory": "abc123",
  "maximumFileSize": 987.65,
  "secretAccessKey": "xyz789"
}
Response
{
  "data": {
    "updateFileConfigurations": {
      "_id": "4",
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateHeatmapConfiguration

Response

Returns a HeatmapConfiguration

Arguments
NameDescription
data - HeatmapConfigurationUpdateInput!
tenant - ID
where - HeatmapConfigurationWhereUniqueInput!

Example

Query
mutation UpdateHeatmapConfiguration(
  $data: HeatmapConfigurationUpdateInput!,
  $tenant: ID,
  $where: HeatmapConfigurationWhereUniqueInput!
) {
  updateHeatmapConfiguration(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": HeatmapConfigurationUpdateInput,
  "tenant": 4,
  "where": HeatmapConfigurationWhereUniqueInput
}
Response
{
  "data": {
    "updateHeatmapConfiguration": {
      "_id": "4",
      "colorsRange": [HeatmapConfigurationColorsRange],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "protected": true,
      "system": false,
      "taskTime": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateHeatmapConfigurationDraft

Example

Query
mutation UpdateHeatmapConfigurationDraft(
  $data: HeatmapConfigurationDraftUpdateInput!,
  $tenant: ID,
  $where: HeatmapConfigurationDraftWhereUniqueInput!
) {
  updateHeatmapConfigurationDraft(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    colorsRange {
      ...HeatmapConfigurationDraftColorsRangeFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateDraft {
      ...IssueTemplateDraftFragment
    }
    issueTemplateDraftId
    issueTemplateId
    protected
    system
    taskTime
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": HeatmapConfigurationDraftUpdateInput,
  "tenant": "4",
  "where": HeatmapConfigurationDraftWhereUniqueInput
}
Response
{
  "data": {
    "updateHeatmapConfigurationDraft": {
      "_id": "4",
      "colorsRange": [
        HeatmapConfigurationDraftColorsRange
      ],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueTemplate": IssueTemplate,
      "issueTemplateDraft": IssueTemplateDraft,
      "issueTemplateDraftId": "4",
      "issueTemplateId": 4,
      "protected": false,
      "system": true,
      "taskTime": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateInfluDBV1Configurations

Response

Returns a Configuration

Arguments
NameDescription
address - String
bucket - String
password - String
username - String

Example

Query
mutation UpdateInfluDBV1Configurations(
  $address: String,
  $bucket: String,
  $password: String,
  $username: String
) {
  updateInfluDBV1Configurations(
    address: $address,
    bucket: $bucket,
    password: $password,
    username: $username
  ) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{
  "address": "abc123",
  "bucket": "xyz789",
  "password": "abc123",
  "username": "xyz789"
}
Response
{
  "data": {
    "updateInfluDBV1Configurations": {
      "_id": 4,
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateInfluDBV2Configurations

Response

Returns a Configuration

Arguments
NameDescription
address - String
bucket - String
organization - String
token - String

Example

Query
mutation UpdateInfluDBV2Configurations(
  $address: String,
  $bucket: String,
  $organization: String,
  $token: String
) {
  updateInfluDBV2Configurations(
    address: $address,
    bucket: $bucket,
    organization: $organization,
    token: $token
  ) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{
  "address": "abc123",
  "bucket": "xyz789",
  "organization": "xyz789",
  "token": "abc123"
}
Response
{
  "data": {
    "updateInfluDBV2Configurations": {
      "_id": "4",
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateInputTemplateDraft

Response

Returns an Input

Arguments
NameDescription
inputToUpdate - ID!
issueTemplateDraft - ID!
taskTemplateGroup - ID!
taskToUpdate - ID!
update - InputUpdateInput!

Example

Query
mutation UpdateInputTemplateDraft(
  $inputToUpdate: ID!,
  $issueTemplateDraft: ID!,
  $taskTemplateGroup: ID!,
  $taskToUpdate: ID!,
  $update: InputUpdateInput!
) {
  updateInputTemplateDraft(
    inputToUpdate: $inputToUpdate,
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplateGroup: $taskTemplateGroup,
    taskToUpdate: $taskToUpdate,
    update: $update
  ) {
    _id
    actions {
      ...ActionFragment
    }
    container
    date {
      ...InputDateFragment
    }
    datetime {
      ...InputDatetimeFragment
    }
    description
    element {
      ...InputElementFragment
    }
    file {
      ...InputFileFragment
    }
    getURLsOfDescriptionFiles
    instruction {
      ...InputInstructionFragment
    }
    isMutable
    labelValue {
      ...InputLabelValueFragment
    }
    log {
      ...InputLogFragment
    }
    name
    note {
      ...InputNoteFragment
    }
    number {
      ...InputNumberFragment
    }
    order
    required
    signature {
      ...InputSignatureFragment
    }
    site {
      ...InputSiteFragment
    }
    string {
      ...InputStringFragment
    }
    table {
      ...InputTableFragment
    }
    tag
    tags {
      ...InputTagFragment
    }
    time {
      ...InputTimeFragment
    }
    tool {
      ...InputToolFragment
    }
    tooltip
    type
    value {
      ... on InputDate {
        ...InputDateFragment
      }
      ... on InputDatetime {
        ...InputDatetimeFragment
      }
      ... on InputElement {
        ...InputElementFragment
      }
      ... on InputFile {
        ...InputFileFragment
      }
      ... on InputInstruction {
        ...InputInstructionFragment
      }
      ... on InputLabelValue {
        ...InputLabelValueFragment
      }
      ... on InputNumber {
        ...InputNumberFragment
      }
      ... on InputSignature {
        ...InputSignatureFragment
      }
      ... on InputSite {
        ...InputSiteFragment
      }
      ... on InputString {
        ...InputStringFragment
      }
      ... on InputTable {
        ...InputTableFragment
      }
      ... on InputTime {
        ...InputTimeFragment
      }
      ... on InputTool {
        ...InputToolFragment
      }
    }
  }
}
Variables
{
  "inputToUpdate": 4,
  "issueTemplateDraft": 4,
  "taskTemplateGroup": "4",
  "taskToUpdate": "4",
  "update": InputUpdateInput
}
Response
{
  "data": {
    "updateInputTemplateDraft": {
      "_id": "4",
      "actions": [Action],
      "container": "xyz789",
      "date": InputDate,
      "datetime": InputDatetime,
      "description": "abc123",
      "element": InputElement,
      "file": InputFile,
      "getURLsOfDescriptionFiles": "abc123",
      "instruction": InputInstruction,
      "isMutable": false,
      "labelValue": InputLabelValue,
      "log": [InputLog],
      "name": "abc123",
      "note": InputNote,
      "number": InputNumber,
      "order": 123,
      "required": false,
      "signature": InputSignature,
      "site": InputSite,
      "string": InputString,
      "table": InputTable,
      "tag": "abc123",
      "tags": InputTag,
      "time": InputTime,
      "tool": InputTool,
      "tooltip": "xyz789",
      "type": "date",
      "value": InputDate
    }
  }
}

updateInvite

Response

Returns an Invite

Arguments
NameDescription
data - InviteUpdateInput!
tenant - ID
where - InviteWhereUniqueInput!

Example

Query
mutation UpdateInvite(
  $data: InviteUpdateInput!,
  $tenant: ID,
  $where: InviteWhereUniqueInput!
) {
  updateInvite(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    extra {
      ...InviteExtraFragment
    }
    lastSentAt
    protected
    system
    token
    type
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    validUntil
  }
}
Variables
{
  "data": InviteUpdateInput,
  "tenant": 4,
  "where": InviteWhereUniqueInput
}
Response
{
  "data": {
    "updateInvite": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "extra": InviteExtra,
      "lastSentAt": "2007-12-03T10:15:30Z",
      "protected": true,
      "system": true,
      "token": "abc123",
      "type": "invite_user_to_application",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "validUntil": "2007-12-03T10:15:30Z"
    }
  }
}

updateIssue

Response

Returns an IssueInstance

Arguments
NameDescription
data - IssueUpdateInput!
where - IssueInstanceWhereUniqueInput!

Example

Query
mutation UpdateIssue(
  $data: IssueUpdateInput!,
  $where: IssueInstanceWhereUniqueInput!
) {
  updateIssue(
    data: $data,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "data": IssueUpdateInput,
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "updateIssue": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": [4],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": true,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": "4",
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": true,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": false,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

updateIssueCatalog

Response

Returns an IssueCatalog

Arguments
NameDescription
data - IssueCatalogUpdateInput!
tenant - ID
where - IssueCatalogWhereUniqueInput!

Example

Query
mutation UpdateIssueCatalog(
  $data: IssueCatalogUpdateInput!,
  $tenant: ID,
  $where: IssueCatalogWhereUniqueInput!
) {
  updateIssueCatalog(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueCatalogUpdateInput,
  "tenant": 4,
  "where": IssueCatalogWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueCatalog": {
      "_id": 4,
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogReport,
      "requestDescription": true,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": false,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateIssueCatalogDraft

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
data - IssueCatalogDraftUpdateInput!
tenant - ID
where - IssueCatalogDraftWhereUniqueInput!

Example

Query
mutation UpdateIssueCatalogDraft(
  $data: IssueCatalogDraftUpdateInput!,
  $tenant: ID,
  $where: IssueCatalogDraftWhereUniqueInput!
) {
  updateIssueCatalogDraft(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueCatalogDraftUpdateInput,
  "tenant": "4",
  "where": IssueCatalogDraftWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueCatalogDraft": {
      "_id": "4",
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": true,
      "remarksOnTasks": false,
      "report": IssueCatalogDraftReport,
      "requestDescription": true,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": false,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateIssueCatalogFolder

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
data - IssueCatalogFolderUpdateInput!
tenant - ID
where - IssueCatalogFolderWhereUniqueInput!

Example

Query
mutation UpdateIssueCatalogFolder(
  $data: IssueCatalogFolderUpdateInput!,
  $tenant: ID,
  $where: IssueCatalogFolderWhereUniqueInput!
) {
  updateIssueCatalogFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueCatalogFolderUpdateInput,
  "tenant": "4",
  "where": IssueCatalogFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueCatalogFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 123,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": "4",
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateIssueReport

Response

Returns an IssueReport

Arguments
NameDescription
data - IssueReportUpdateInput!
tenant - ID
where - IssueReportWhereUniqueInput!

Example

Query
mutation UpdateIssueReport(
  $data: IssueReportUpdateInput!,
  $tenant: ID,
  $where: IssueReportWhereUniqueInput!
) {
  updateIssueReport(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    distinctIssueReportValues {
      ...IssueReportDistinctValuesFragment
    }
    folder {
      ...IssueReportFolderFragment
    }
    folderId
    generalFields
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    myConfig {
      ...IssueReportConfigFragment
    }
    name
    protected
    system
    taskConditionalInputFields
    taskInputFields
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueReportUpdateInput,
  "tenant": "4",
  "where": IssueReportWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueReport": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "distinctIssueReportValues": IssueReportDistinctValues,
      "folder": IssueReportFolder,
      "folderId": 4,
      "generalFields": ["actions"],
      "issueCatalog": IssueCatalog,
      "issueCatalogId": "4",
      "myConfig": IssueReportConfig,
      "name": "xyz789",
      "protected": false,
      "system": false,
      "taskConditionalInputFields": ["4"],
      "taskInputFields": [4],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateIssueReportConfig

Response

Returns an IssueReportConfig

Arguments
NameDescription
data - IssueReportConfigUpdateInput!
tenant - ID
where - IssueReportConfigWhereUniqueInput!

Example

Query
mutation UpdateIssueReportConfig(
  $data: IssueReportConfigUpdateInput!,
  $tenant: ID,
  $where: IssueReportConfigWhereUniqueInput!
) {
  updateIssueReportConfig(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    generalFieldsToHide
    issueReport {
      ...IssueReportFragment
    }
    issueReportId
    protected
    system
    taskInputFieldsToHide
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueReportConfigUpdateInput,
  "tenant": 4,
  "where": IssueReportConfigWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueReportConfig": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "generalFieldsToHide": ["xyz789"],
      "issueReport": IssueReport,
      "issueReportId": "4",
      "protected": true,
      "system": true,
      "taskInputFieldsToHide": ["4"],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateIssueReportFolder

Response

Returns an IssueReportFolder

Arguments
NameDescription
data - IssueReportFolderUpdateInput!
tenant - ID
where - IssueReportFolderWhereUniqueInput!

Example

Query
mutation UpdateIssueReportFolder(
  $data: IssueReportFolderUpdateInput!,
  $tenant: ID,
  $where: IssueReportFolderWhereUniqueInput!
) {
  updateIssueReportFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueReportFoldersCount
    issueReportsCount
    name
    parent {
      ...IssueReportFolderFragment
    }
    parentId
    parentsTree {
      ...IssueReportFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueReportFolderUpdateInput,
  "tenant": 4,
  "where": IssueReportFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueReportFolder": {
      "_id": 4,
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueReportFoldersCount": 123,
      "issueReportsCount": 123,
      "name": "xyz789",
      "parent": IssueReportFolder,
      "parentId": "4",
      "parentsTree": [IssueReportFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateIssueTasks

Response

Returns an IssueInstance

Arguments
NameDescription
data - [TaskMultipleUpdateInput!]!
where - IssueInstanceWhereUniqueInput

Example

Query
mutation UpdateIssueTasks(
  $data: [TaskMultipleUpdateInput!]!,
  $where: IssueInstanceWhereUniqueInput
) {
  updateIssueTasks(
    data: $data,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{
  "data": [TaskMultipleUpdateInput],
  "where": IssueInstanceWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueTasks": {
      "_id": "4",
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": true,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": false,
      "customArConfiguration": false,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 987,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "xyz789",
      "parentElement": Element,
      "parentElementId": 4,
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": true,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

updateIssueTemplate

Response

Returns an IssueTemplate

Arguments
NameDescription
data - IssueTemplateUpdateInput!
tenant - ID
where - IssueTemplateWhereUniqueInput!

Example

Query
mutation UpdateIssueTemplate(
  $data: IssueTemplateUpdateInput!,
  $tenant: ID,
  $where: IssueTemplateWhereUniqueInput!
) {
  updateIssueTemplate(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "data": IssueTemplateUpdateInput,
  "tenant": 4,
  "where": IssueTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueTemplate": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

updateIssueTemplateDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
data - IssueTemplateDraftUpdateInput!
tenant - ID
where - IssueTemplateDraftWhereUniqueInput!

Example

Query
mutation UpdateIssueTemplateDraft(
  $data: IssueTemplateDraftUpdateInput!,
  $tenant: ID,
  $where: IssueTemplateDraftWhereUniqueInput!
) {
  updateIssueTemplateDraft(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "data": IssueTemplateDraftUpdateInput,
  "tenant": "4",
  "where": IssueTemplateDraftWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueTemplateDraft": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateIssueTemplateFolder

Response

Returns an IssueTemplateFolder

Arguments
NameDescription
data - IssueTemplateFolderUpdateInput!
tenant - ID
where - IssueTemplateFolderWhereUniqueInput!

Example

Query
mutation UpdateIssueTemplateFolder(
  $data: IssueTemplateFolderUpdateInput!,
  $tenant: ID,
  $where: IssueTemplateFolderWhereUniqueInput!
) {
  updateIssueTemplateFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplateFoldersCount
    issueTemplatesCount
    name
    parent {
      ...IssueTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...IssueTemplateFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": IssueTemplateFolderUpdateInput,
  "tenant": 4,
  "where": IssueTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateIssueTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplateFoldersCount": 123,
      "issueTemplatesCount": 987,
      "name": "xyz789",
      "parent": IssueTemplateFolder,
      "parentId": 4,
      "parentsTree": [IssueTemplateFolder],
      "parentsTreeIds": [4],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateLabel

Response

Returns a Label

Arguments
NameDescription
data - LabelUpdateInput!
tenant - ID
where - LabelWhereUniqueInput!

Example

Query
mutation UpdateLabel(
  $data: LabelUpdateInput!,
  $tenant: ID,
  $where: LabelWhereUniqueInput!
) {
  updateLabel(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    icon
    labelValues {
      ...LabelValueFragment
    }
    name
    order
    protected
    singleSelection
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": LabelUpdateInput,
  "tenant": 4,
  "where": LabelWhereUniqueInput
}
Response
{
  "data": {
    "updateLabel": {
      "_id": "4",
      "context": "Account",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "icon": "abc123",
      "labelValues": [LabelValue],
      "name": "abc123",
      "order": 123,
      "protected": true,
      "singleSelection": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateLabelValue

Response

Returns a LabelValue

Arguments
NameDescription
data - LabelValueUpdateInput!
tenant - ID
where - LabelValueWhereUniqueInput!

Example

Query
mutation UpdateLabelValue(
  $data: LabelValueUpdateInput!,
  $tenant: ID,
  $where: LabelValueWhereUniqueInput!
) {
  updateLabelValue(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    backgroundColor
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    label {
      ...LabelFragment
    }
    labelId
    order
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    value
  }
}
Variables
{
  "data": LabelValueUpdateInput,
  "tenant": "4",
  "where": LabelValueWhereUniqueInput
}
Response
{
  "data": {
    "updateLabelValue": {
      "_id": 4,
      "backgroundColor": "abc123",
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "label": Label,
      "labelId": 4,
      "order": 123,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "value": "xyz789"
    }
  }
}

updateLocation

Response

Returns a Location

Arguments
NameDescription
data - LocationUpdateInput!
tenant - ID
where - LocationWhereUniqueInput!

Example

Query
mutation UpdateLocation(
  $data: LocationUpdateInput!,
  $tenant: ID,
  $where: LocationWhereUniqueInput!
) {
  updateLocation(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...LocationAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    protected
    storage {
      ...StorageFragment
    }
    storageId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": LocationUpdateInput,
  "tenant": 4,
  "where": LocationWhereUniqueInput
}
Response
{
  "data": {
    "updateLocation": {
      "_id": 4,
      "address": LocationAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "protected": true,
      "storage": Storage,
      "storageId": 4,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateMQTTConfigurations

Response

Returns a Configuration

Arguments
NameDescription
address - String
certificate_authority - String
token - String

Example

Query
mutation UpdateMQTTConfigurations(
  $address: String,
  $certificate_authority: String,
  $token: String
) {
  updateMQTTConfigurations(
    address: $address,
    certificate_authority: $certificate_authority,
    token: $token
  ) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{
  "address": "xyz789",
  "certificate_authority": "xyz789",
  "token": "xyz789"
}
Response
{
  "data": {
    "updateMQTTConfigurations": {
      "_id": 4,
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateManyAreas

Response

Returns an Area

Arguments
NameDescription
_ids - [ID!]!
update - AreaUpdateManyInput!

Example

Query
mutation UpdateManyAreas(
  $_ids: [ID!]!,
  $update: AreaUpdateManyInput!
) {
  updateManyAreas(
    _ids: $_ids,
    update: $update
  ) {
    _id
    anchors {
      ...AnchorFragment
    }
    anchorsIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...AreaFolderFragment
    }
    folderId
    name
    photo {
      ...FileFragment
    }
    photoId
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "_ids": ["4"],
  "update": AreaUpdateManyInput
}
Response
{
  "data": {
    "updateManyAreas": {
      "_id": "4",
      "anchors": [Anchor],
      "anchorsIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": AreaFolder,
      "folderId": "4",
      "name": "xyz789",
      "photo": File,
      "photoId": "4",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateManyElementTemplates

Response

Returns [ElementTemplate]

Arguments
NameDescription
update - ElementTemplateUpdateInput!
where - ElementTemplateWhereInput!

Example

Query
mutation UpdateManyElementTemplates(
  $update: ElementTemplateUpdateInput!,
  $where: ElementTemplateWhereInput!
) {
  updateManyElementTemplates(
    update: $update,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ElementTemplateFolderFragment
    }
    folderId
    frame {
      ...ElementTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "update": ElementTemplateUpdateInput,
  "where": ElementTemplateWhereInput
}
Response
{
  "data": {
    "updateManyElementTemplates": [
      {
        "_id": 4,
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "xyz789",
        "folder": ElementTemplateFolder,
        "folderId": "4",
        "frame": ElementTemplateFrame,
        "icon": "abc123",
        "protected": true,
        "system": true,
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

updateManyIssueTemplates

Response

Returns [IssueTemplate]

Arguments
NameDescription
update - IssueTemplateUpdateInput!
where - IssueTemplateWhereInput!

Example

Query
mutation UpdateManyIssueTemplates(
  $update: IssueTemplateUpdateInput!,
  $where: IssueTemplateWhereInput!
) {
  updateManyIssueTemplates(
    update: $update,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "update": IssueTemplateUpdateInput,
  "where": IssueTemplateWhereInput
}
Response
{
  "data": {
    "updateManyIssueTemplates": [
      {
        "_id": 4,
        "archived": true,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "favorites": [IssueTemplateFavorite],
        "folder": IssueTemplateFolder,
        "folderId": 4,
        "frame": IssueTemplateFrame,
        "icon": "xyz789",
        "protected": false,
        "selectedVariant": 4,
        "system": false,
        "taskTemplateGroups": [TaskTemplateGroup],
        "timeMapColumns": [IssueTemplateTimeMapColumn],
        "timeTableFilters": [
          IssueTemplateTimeTableFilter
        ],
        "title": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": IssueTemplateVariant
      }
    ]
  }
}

updateManyProfileTemplates

Response

Returns [ProfileTemplate]

Arguments
NameDescription
update - ProfileTemplateUpdateInput!
where - ProfileTemplateWhereInput!

Example

Query
mutation UpdateManyProfileTemplates(
  $update: ProfileTemplateUpdateInput!,
  $where: ProfileTemplateWhereInput!
) {
  updateManyProfileTemplates(
    update: $update,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "update": ProfileTemplateUpdateInput,
  "where": ProfileTemplateWhereInput
}
Response
{
  "data": {
    "updateManyProfileTemplates": [
      {
        "_id": "4",
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": "4",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "folder": ProfileTemplateFolder,
        "folderId": 4,
        "frame": ProfileTemplateFrame,
        "icon": "xyz789",
        "protected": true,
        "system": false,
        "title": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

updateManySiteTemplates

Response

Returns [SiteTemplate]

Arguments
NameDescription
update - SiteTemplateUpdateInput!
where - SiteTemplateWhereInput!

Example

Query
mutation UpdateManySiteTemplates(
  $update: SiteTemplateUpdateInput!,
  $where: SiteTemplateWhereInput!
) {
  updateManySiteTemplates(
    update: $update,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "update": SiteTemplateUpdateInput,
  "where": SiteTemplateWhereInput
}
Response
{
  "data": {
    "updateManySiteTemplates": [
      {
        "_id": 4,
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": "4",
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "folder": SiteTemplateFolder,
        "folderId": 4,
        "frame": SiteTemplateFrame,
        "icon": "abc123",
        "protected": false,
        "system": true,
        "title": "xyz789",
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

updateManyTaskMappingDrafts

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
issueCatalogDraft - ID!
taskMappingsToUpdate - [ID!]!
update - IssueCatalogDraftTaskMappingUpdateInput!

Example

Query
mutation UpdateManyTaskMappingDrafts(
  $issueCatalogDraft: ID!,
  $taskMappingsToUpdate: [ID!]!,
  $update: IssueCatalogDraftTaskMappingUpdateInput!
) {
  updateManyTaskMappingDrafts(
    issueCatalogDraft: $issueCatalogDraft,
    taskMappingsToUpdate: $taskMappingsToUpdate,
    update: $update
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "issueCatalogDraft": "4",
  "taskMappingsToUpdate": ["4"],
  "update": IssueCatalogDraftTaskMappingUpdateInput
}
Response
{
  "data": {
    "updateManyTaskMappingDrafts": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": false,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": true,
      "remarksOnTasks": false,
      "report": IssueCatalogDraftReport,
      "requestDescription": true,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": false,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": false,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": "4",
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateManyTaskTemplateDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
issueTemplateDraft - ID!
taskTemplatesToUpdate - [ID!]!
update - TaskTemplateUpdateManyInput!

Example

Query
mutation UpdateManyTaskTemplateDrafts(
  $issueTemplateDraft: ID!,
  $taskTemplatesToUpdate: [ID!]!,
  $update: TaskTemplateUpdateManyInput!
) {
  updateManyTaskTemplateDrafts(
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplatesToUpdate: $taskTemplatesToUpdate,
    update: $update
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "issueTemplateDraft": 4,
  "taskTemplatesToUpdate": ["4"],
  "update": TaskTemplateUpdateManyInput
}
Response
{
  "data": {
    "updateManyTaskTemplateDrafts": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": false,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateManyTaskTemplateGroups

Response

Returns [TaskTemplateGroup]

Arguments
NameDescription
_ids - [ID!]!
update - TaskTemplateGroupUpdateInput!

Example

Query
mutation UpdateManyTaskTemplateGroups(
  $_ids: [ID!]!,
  $update: TaskTemplateGroupUpdateInput!
) {
  updateManyTaskTemplateGroups(
    _ids: $_ids,
    update: $update
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_ids": [4], "update": TaskTemplateGroupUpdateInput}
Response
{
  "data": {
    "updateManyTaskTemplateGroups": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "issueTemplate": IssueTemplate,
        "issueTemplateId": "4",
        "markersToShow": "ALL",
        "name": "abc123",
        "order": 987,
        "protected": false,
        "sequential": false,
        "system": false,
        "taskTemplates": [TaskTemplate],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

updateManyTaskTemplates

Response

Returns [TaskTemplate]

Arguments
NameDescription
_ids - [ID!]!
update - TaskTemplateUpdateInput!

Example

Query
mutation UpdateManyTaskTemplates(
  $_ids: [ID!]!,
  $update: TaskTemplateUpdateInput!
) {
  updateManyTaskTemplates(
    _ids: $_ids,
    update: $update
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"_ids": [4], "update": TaskTemplateUpdateInput}
Response
{
  "data": {
    "updateManyTaskTemplates": [
      {
        "_id": "4",
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "estimatedDuration": 987,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": "4",
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": true,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [TaskTemplateLog],
        "manualId": "xyz789",
        "mapping": TaskMapping,
        "name": "xyz789",
        "onResponseId": "4",
        "order": 123,
        "parentsTree": [4],
        "protected": true,
        "remarks": [TaskTemplateRemark],
        "show": true,
        "system": true,
        "totalScore": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": TaskTemplateVariant
      }
    ]
  }
}

updateManyUnits

Response

Returns [Unit]

Arguments
NameDescription
units - [UnitToUpdate]

Example

Query
mutation UpdateManyUnits($units: [UnitToUpdate]) {
  updateManyUnits(units: $units) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"units": [UnitToUpdate]}
Response
{
  "data": {
    "updateManyUnits": [
      {
        "_id": 4,
        "archived": false,
        "archivedAt": "2007-12-03T10:15:30Z",
        "archivedBy": Account,
        "archivedById": "4",
        "convert": [UnitConvert],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "description": "xyz789",
        "folder": UnitFolder,
        "folderId": "4",
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "name": "abc123",
        "order": 123,
        "protected": false,
        "symbol": "abc123",
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4"
      }
    ]
  }
}

updateMarker

Response

Returns a Marker

Arguments
NameDescription
data - MarkerUpdateInput!
tenant - ID
where - MarkerWhereUniqueInput!

Example

Query
mutation UpdateMarker(
  $data: MarkerUpdateInput!,
  $tenant: ID,
  $where: MarkerWhereUniqueInput!
) {
  updateMarker(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    anchorId
    anchorImage {
      ...AnchorImageFragment
    }
    anchorImageId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    position
    protected
    rotation
    scale
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": MarkerUpdateInput,
  "tenant": "4",
  "where": MarkerWhereUniqueInput
}
Response
{
  "data": {
    "updateMarker": {
      "_id": "4",
      "anchorId": "abc123",
      "anchorImage": AnchorImage,
      "anchorImageId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "position": [987.65],
      "protected": false,
      "rotation": [987.65],
      "scale": [123.45],
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateMaterial

Response

Returns a Material

Arguments
NameDescription
data - MaterialUpdateInput!
tenant - ID
where - MaterialWhereUniqueInput!

Example

Query
mutation UpdateMaterial(
  $data: MaterialUpdateInput!,
  $tenant: ID,
  $where: MaterialWhereUniqueInput!
) {
  updateMaterial(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    brand
    brandModel
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dimension {
      ...MaterialDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    iva
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    price
    protected
    quantity
    sellingPrice
    stockPerStorage {
      ...MaterialStockPerStorageFragment
    }
    system
    totalStock
    type
    unit {
      ...UnitFragment
    }
    unitId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": MaterialUpdateInput,
  "tenant": 4,
  "where": MaterialWhereUniqueInput
}
Response
{
  "data": {
    "updateMaterial": {
      "_id": 4,
      "brand": "abc123",
      "brandModel": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dimension": MaterialDimension,
      "images": [File],
      "imagesIds": [4],
      "iva": 123.45,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "price": 123.45,
      "protected": true,
      "quantity": 987.65,
      "sellingPrice": 987.65,
      "stockPerStorage": [MaterialStockPerStorage],
      "system": false,
      "totalStock": 123,
      "type": "SERIALIZED",
      "unit": Unit,
      "unitId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateMaterialItem

Response

Returns a MaterialItem

Arguments
NameDescription
data - MaterialItemUpdateInput!
tenant - ID
where - MaterialItemWhereUniqueInput!

Example

Query
mutation UpdateMaterialItem(
  $data: MaterialItemUpdateInput!,
  $tenant: ID,
  $where: MaterialItemWhereUniqueInput!
) {
  updateMaterialItem(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    buyOrder
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...MaterialItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expirationDate
    expirationDateType
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    material {
      ...MaterialFragment
    }
    materialId
    protected
    quantity
    serialNumber
    state
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": MaterialItemUpdateInput,
  "tenant": 4,
  "where": MaterialItemWhereUniqueInput
}
Response
{
  "data": {
    "updateMaterialItem": {
      "_id": 4,
      "buyOrder": "abc123",
      "code": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "customFields": [MaterialItemCustomField],
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "expirationDate": "2007-12-03T10:15:30Z",
      "expirationDateType": "abc123",
      "hiddenFields": ["xyz789"],
      "location": Location,
      "locationId": 4,
      "material": Material,
      "materialId": "4",
      "protected": true,
      "quantity": 123.45,
      "serialNumber": "xyz789",
      "state": "abc123",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateModelInstance

Response

Returns a ModelInstance

Arguments
NameDescription
data - ModelInstanceUpdateInput!
tenant - ID
where - ModelInstanceWhereUniqueInput!

Example

Query
mutation UpdateModelInstance(
  $data: ModelInstanceUpdateInput!,
  $tenant: ID,
  $where: ModelInstanceWhereUniqueInput!
) {
  updateModelInstance(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    model {
      ...FileFragment
    }
    modelId
    position
    protected
    rotation
    scale
    spatialAnchorId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ModelInstanceUpdateInput,
  "tenant": "4",
  "where": ModelInstanceWhereUniqueInput
}
Response
{
  "data": {
    "updateModelInstance": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "model": File,
      "modelId": "4",
      "position": [987.65],
      "protected": true,
      "rotation": [123.45],
      "scale": [123.45],
      "spatialAnchorId": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateMultipleTaskTemplateDrafts

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
data - [TaskMultipleUpdateInput!]!
issueDraftId - ID!
taskTemplateGroup - ID!

Example

Query
mutation UpdateMultipleTaskTemplateDrafts(
  $data: [TaskMultipleUpdateInput!]!,
  $issueDraftId: ID!,
  $taskTemplateGroup: ID!
) {
  updateMultipleTaskTemplateDrafts(
    data: $data,
    issueDraftId: $issueDraftId,
    taskTemplateGroup: $taskTemplateGroup
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "data": [TaskMultipleUpdateInput],
  "issueDraftId": "4",
  "taskTemplateGroup": 4
}
Response
{
  "data": {
    "updateMultipleTaskTemplateDrafts": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateMultipleTaskTemplateGroups

Response

Returns [TaskTemplateGroup]

Arguments
NameDescription
update - [TaskTemplateGroupMultipleUpdateInput!]!

Example

Query
mutation UpdateMultipleTaskTemplateGroups($update: [TaskTemplateGroupMultipleUpdateInput!]!) {
  updateMultipleTaskTemplateGroups(update: $update) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"update": [TaskTemplateGroupMultipleUpdateInput]}
Response
{
  "data": {
    "updateMultipleTaskTemplateGroups": [
      {
        "_id": 4,
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "issueTemplate": IssueTemplate,
        "issueTemplateId": 4,
        "markersToShow": "ALL",
        "name": "xyz789",
        "order": 987,
        "protected": true,
        "sequential": false,
        "system": false,
        "taskTemplates": [TaskTemplate],
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

updateMultipleTaskTemplates

Response

Returns [TaskTemplate]

Arguments
NameDescription
update - [TaskTemplateMultipleUpdateInput!]!

Example

Query
mutation UpdateMultipleTaskTemplates($update: [TaskTemplateMultipleUpdateInput!]!) {
  updateMultipleTaskTemplates(update: $update) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{"update": [TaskTemplateMultipleUpdateInput]}
Response
{
  "data": {
    "updateMultipleTaskTemplates": [
      {
        "_id": "4",
        "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
        "arConfiguration": TaskTemplateArConfiguration,
        "assignedMaterials": [
          TaskTemplateAssignedMaterial
        ],
        "assignedSkills": [TaskTemplateAssignedSkill],
        "assignedTools": [TaskTemplateAssignedTool],
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": false,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": "4",
        "description": "abc123",
        "estimatedDuration": 987,
        "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
        "group": TaskTemplateGroup,
        "groupId": 4,
        "inputHistory": [Input],
        "inputs": [Input],
        "isRepeatable": false,
        "labelValues": [LabelValue],
        "labelValuesIds": [4],
        "log": [TaskTemplateLog],
        "manualId": "xyz789",
        "mapping": TaskMapping,
        "name": "abc123",
        "onResponseId": "4",
        "order": 123,
        "parentsTree": ["4"],
        "protected": true,
        "remarks": [TaskTemplateRemark],
        "show": false,
        "system": true,
        "totalScore": 123,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": "4",
        "variant": TaskTemplateVariant
      }
    ]
  }
}

updateNfcTag

Response

Returns a NfcTag

Arguments
NameDescription
data - NfcTagUpdateInput!
tenant - ID
where - NfcTagWhereUniqueInput!

Example

Query
mutation UpdateNfcTag(
  $data: NfcTagUpdateInput!,
  $tenant: ID,
  $where: NfcTagWhereUniqueInput!
) {
  updateNfcTag(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    linkedTo {
      ...NfcTagLinkedToFragment
    }
    protected
    system
    uid
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": NfcTagUpdateInput,
  "tenant": "4",
  "where": NfcTagWhereUniqueInput
}
Response
{
  "data": {
    "updateNfcTag": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "linkedTo": NfcTagLinkedTo,
      "protected": false,
      "system": false,
      "uid": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateOneJob

Response

Returns a Job

Arguments
NameDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
element - ID
executionDate - DateTime
inputs - [InputCreateInput]
jobId - ID!
site - ID
taskMappings - [JobDataTaskMappingCreateInput]

Example

Query
mutation UpdateOneJob(
  $assignedAccounts: [ID],
  $assignedLabelValues: [ID],
  $element: ID,
  $executionDate: DateTime,
  $inputs: [InputCreateInput],
  $jobId: ID!,
  $site: ID,
  $taskMappings: [JobDataTaskMappingCreateInput]
) {
  updateOneJob(
    assignedAccounts: $assignedAccounts,
    assignedLabelValues: $assignedLabelValues,
    element: $element,
    executionDate: $executionDate,
    inputs: $inputs,
    jobId: $jobId,
    site: $site,
    taskMappings: $taskMappings
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "element": 4,
  "executionDate": "2007-12-03T10:15:30Z",
  "inputs": [InputCreateInput],
  "jobId": "4",
  "site": "4",
  "taskMappings": [JobDataTaskMappingCreateInput]
}
Response
{
  "data": {
    "updateOneJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

updateParentForIssueCatalog

Response

Returns an IssueCatalog

Arguments
NameDescription
id - ID!
newParentId - ID

Example

Query
mutation UpdateParentForIssueCatalog(
  $id: ID!,
  $newParentId: ID
) {
  updateParentForIssueCatalog(
    id: $id,
    newParentId: $newParentId
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "id": "4",
  "newParentId": "4"
}
Response
{
  "data": {
    "updateParentForIssueCatalog": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": true,
      "remarksOnTasks": false,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": 4,
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": true,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateParentForIssueCatalogFolder

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
id - ID!
newParentId - ID

Example

Query
mutation UpdateParentForIssueCatalogFolder(
  $id: ID!,
  $newParentId: ID
) {
  updateParentForIssueCatalogFolder(
    id: $id,
    newParentId: $newParentId
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"id": "4", "newParentId": 4}
Response
{
  "data": {
    "updateParentForIssueCatalogFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 987,
      "name": "abc123",
      "parent": IssueCatalogFolder,
      "parentId": 4,
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updatePdfJob

Response

Returns a PdfJob

Arguments
NameDescription
data - PdfJobUpdateInput!
tenant - ID
where - PdfJobWhereUniqueInput!

Example

Query
mutation UpdatePdfJob(
  $data: PdfJobUpdateInput!,
  $tenant: ID,
  $where: PdfJobWhereUniqueInput!
) {
  updatePdfJob(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    contentId
    contentType
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    error
    pdfType
    protected
    status
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    url
    validUntil
  }
}
Variables
{
  "data": PdfJobUpdateInput,
  "tenant": "4",
  "where": PdfJobWhereUniqueInput
}
Response
{
  "data": {
    "updatePdfJob": {
      "_id": 4,
      "contentId": 4,
      "contentType": "issue",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "error": "xyz789",
      "pdfType": "detailed",
      "protected": true,
      "status": "failed",
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "url": "abc123",
      "validUntil": 987
    }
  }
}

updatePeriodicIssueTemplateDraft

Response

Returns an ID

Arguments
NameDescription
draftId - ID!
groupMap - [GroupMapUpdateInput]
otherDraftAttributes - DraftAttributesUpdateInput
taskMap - [TaskTemplateMapUpdateInput]

Example

Query
mutation UpdatePeriodicIssueTemplateDraft(
  $draftId: ID!,
  $groupMap: [GroupMapUpdateInput],
  $otherDraftAttributes: DraftAttributesUpdateInput,
  $taskMap: [TaskTemplateMapUpdateInput]
) {
  updatePeriodicIssueTemplateDraft(
    draftId: $draftId,
    groupMap: $groupMap,
    otherDraftAttributes: $otherDraftAttributes,
    taskMap: $taskMap
  )
}
Variables
{
  "draftId": 4,
  "groupMap": [GroupMapUpdateInput],
  "otherDraftAttributes": DraftAttributesUpdateInput,
  "taskMap": [TaskTemplateMapUpdateInput]
}
Response
{
  "data": {
    "updatePeriodicIssueTemplateDraft": "4"
  }
}

updatePost

Response

Returns a Post

Arguments
NameDescription
data - PostUpdateInput!
tenant - ID
where - PostWhereUniqueInput!

Example

Query
mutation UpdatePost(
  $data: PostUpdateInput!,
  $tenant: ID,
  $where: PostWhereUniqueInput!
) {
  updatePost(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": PostUpdateInput,
  "tenant": 4,
  "where": PostWhereUniqueInput
}
Response
{
  "data": {
    "updatePost": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "likes": [Account],
      "likesIds": [4],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 123,
      "totalRootComments": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateProfile

Response

Returns a Profile

Arguments
NameDescription
data - ProfileUpdateInput!
tenant - ID
where - ProfileWhereUniqueInput!

Example

Query
mutation UpdateProfile(
  $data: ProfileUpdateInput!,
  $tenant: ID,
  $where: ProfileWhereUniqueInput!
) {
  updateProfile(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileUpdateInput,
  "tenant": "4",
  "where": ProfileWhereUniqueInput
}
Response
{
  "data": {
    "updateProfile": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "elementsCount": 123,
      "folder": ProfileFolder,
      "folderId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "name": "xyz789",
      "parent": Profile,
      "parentId": 4,
      "parentsTree": [Profile],
      "parentsTreeIds": ["4"],
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "template": ProfileTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateProfileFolder

Response

Returns a ProfileFolder

Arguments
NameDescription
data - ProfileFolderUpdateInput!
tenant - ID
where - ProfileFolderWhereUniqueInput!

Example

Query
mutation UpdateProfileFolder(
  $data: ProfileFolderUpdateInput!,
  $tenant: ID,
  $where: ProfileFolderWhereUniqueInput!
) {
  updateProfileFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileFoldersCount
    profilesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileFolderUpdateInput,
  "tenant": "4",
  "where": ProfileFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateProfileFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": ProfileFolder,
      "parentId": "4",
      "parentsTree": [ProfileFolder],
      "parentsTreeCount": 123,
      "parentsTreeIds": ["4"],
      "profileFoldersCount": 987,
      "profilesCount": 987,
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateProfileTemplate

Response

Returns a ProfileTemplate

Arguments
NameDescription
data - ProfileTemplateUpdateInput!
tenant - ID
where - ProfileTemplateWhereUniqueInput!

Example

Query
mutation UpdateProfileTemplate(
  $data: ProfileTemplateUpdateInput!,
  $tenant: ID,
  $where: ProfileTemplateWhereUniqueInput!
) {
  updateProfileTemplate(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...ProfileTemplateFolderFragment
    }
    folderId
    frame {
      ...ProfileTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileTemplateUpdateInput,
  "tenant": 4,
  "where": ProfileTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateProfileTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "folder": ProfileTemplateFolder,
      "folderId": "4",
      "frame": ProfileTemplateFrame,
      "icon": "abc123",
      "protected": false,
      "system": false,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateProfileTemplateFolder

Response

Returns a ProfileTemplateFolder

Example

Query
mutation UpdateProfileTemplateFolder(
  $data: ProfileTemplateFolderUpdateInput!,
  $tenant: ID,
  $where: ProfileTemplateFolderWhereUniqueInput!
) {
  updateProfileTemplateFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...ProfileTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...ProfileTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    profileTemplateFoldersCount
    profileTemplatesCount
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ProfileTemplateFolderUpdateInput,
  "tenant": 4,
  "where": ProfileTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateProfileTemplateFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": ProfileTemplateFolder,
      "parentId": "4",
      "parentsTree": [ProfileTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": ["4"],
      "profileTemplateFoldersCount": 987,
      "profileTemplatesCount": 123,
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateRecordLayout

Response

Returns a Boolean

Arguments
NameDescription
room_id - String!
uid - String!

Example

Query
mutation UpdateRecordLayout(
  $room_id: String!,
  $uid: String!
) {
  updateRecordLayout(
    room_id: $room_id,
    uid: $uid
  )
}
Variables
{
  "room_id": "abc123",
  "uid": "abc123"
}
Response
{"data": {"updateRecordLayout": true}}

updateRequestTemplate

Response

Returns a RequestTemplate

Arguments
NameDescription
data - RequestTemplateUpdateInput!
tenant - ID
where - RequestTemplateWhereUniqueInput!

Example

Query
mutation UpdateRequestTemplate(
  $data: RequestTemplateUpdateInput!,
  $tenant: ID,
  $where: RequestTemplateWhereUniqueInput!
) {
  updateRequestTemplate(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    commentRequired
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    expireDate {
      ...RequestTemplateExpireDateFragment
    }
    frame {
      ...RequestTemplateFrameFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": RequestTemplateUpdateInput,
  "tenant": "4",
  "where": RequestTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateRequestTemplate": {
      "_id": 4,
      "commentRequired": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "expireDate": RequestTemplateExpireDate,
      "frame": RequestTemplateFrame,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateRole

Response

Returns a Role

Arguments
NameDescription
data - RoleUpdateInput!
tenant - ID
where - RoleWhereUniqueInput!

Example

Query
mutation UpdateRole(
  $data: RoleUpdateInput!,
  $tenant: ID,
  $where: RoleWhereUniqueInput!
) {
  updateRole(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedGroups {
      ...RoleAssignedGroupFragment
    }
    clearances {
      ...MyClearancesFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": RoleUpdateInput,
  "tenant": "4",
  "where": RoleWhereUniqueInput
}
Response
{
  "data": {
    "updateRole": {
      "_id": 4,
      "assignedGroups": [RoleAssignedGroup],
      "clearances": [MyClearances],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "name": "xyz789",
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateRoomDuration

Response

Returns a RoomHistoryDetails

Arguments
NameDescription
roomId - String!

Example

Query
mutation UpdateRoomDuration($roomId: String!) {
  updateRoomDuration(roomId: $roomId) {
    chatroom_id
    code
    create_at
    create_by
    duration
    id
    last_activity_at
    name
    participants {
      ...AccountFragment
    }
    user_create_by {
      ...AccountFragment
    }
    users
    valid_until
  }
}
Variables
{"roomId": "xyz789"}
Response
{
  "data": {
    "updateRoomDuration": {
      "chatroom_id": "xyz789",
      "code": "xyz789",
      "create_at": "2007-12-03T10:15:30Z",
      "create_by": "xyz789",
      "duration": "xyz789",
      "id": "xyz789",
      "last_activity_at": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "participants": [Account],
      "user_create_by": Account,
      "users": ["abc123"],
      "valid_until": "xyz789"
    }
  }
}

updateRoomName

Response

Returns a Room

Arguments
NameDescription
name - String!
roomId - String!

Example

Query
mutation UpdateRoomName(
  $name: String!,
  $roomId: String!
) {
  updateRoomName(
    name: $name,
    roomId: $roomId
  ) {
    chatroom_id
    code
    create_at
    create_by
    delete_at
    duration
    entity_id
    id
    labels
    last_activity_at
    name
    permissions {
      ...RoomPermissionsFragment
    }
    tenant_id
    update_at
    user_details {
      ...RoomDetailsFragment
    }
    valid_until
  }
}
Variables
{
  "name": "xyz789",
  "roomId": "abc123"
}
Response
{
  "data": {
    "updateRoomName": {
      "chatroom_id": "xyz789",
      "code": "abc123",
      "create_at": "xyz789",
      "create_by": "abc123",
      "delete_at": "xyz789",
      "duration": "xyz789",
      "entity_id": "abc123",
      "id": "abc123",
      "labels": ["abc123"],
      "last_activity_at": "xyz789",
      "name": "abc123",
      "permissions": RoomPermissions,
      "tenant_id": "abc123",
      "update_at": "xyz789",
      "user_details": RoomDetails,
      "valid_until": "abc123"
    }
  }
}

updateSite

Response

Returns a Site

Arguments
NameDescription
data - SiteUpdateInput!
tenant - ID
where - SiteWhereUniqueInput!

Example

Query
mutation UpdateSite(
  $data: SiteUpdateInput!,
  $tenant: ID,
  $where: SiteWhereUniqueInput!
) {
  updateSite(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SiteUpdateInput,
  "tenant": "4",
  "where": SiteWhereUniqueInput
}
Response
{
  "data": {
    "updateSite": {
      "_id": "4",
      "accessToSites": [Site],
      "actionsCount": 987,
      "awaitingApproval": false,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "devicesCount": 987,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": false,
      "issues": [IssueInstance],
      "issuesCount": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [SiteLog],
      "myCalendarCount": 123,
      "myIssuesCount": 987,
      "name": "xyz789",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": "4",
      "parentsTree": [Site],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "protected": true,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 123,
      "system": false,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateSiteTemplate

Response

Returns a SiteTemplate

Arguments
NameDescription
data - SiteTemplateUpdateInput!
tenant - ID
where - SiteTemplateWhereUniqueInput!

Example

Query
mutation UpdateSiteTemplate(
  $data: SiteTemplateUpdateInput!,
  $tenant: ID,
  $where: SiteTemplateWhereUniqueInput!
) {
  updateSiteTemplate(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...SiteTemplateFolderFragment
    }
    folderId
    frame {
      ...SiteTemplateFrameFragment
    }
    icon
    protected
    system
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SiteTemplateUpdateInput,
  "tenant": 4,
  "where": SiteTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateSiteTemplate": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "folder": SiteTemplateFolder,
      "folderId": "4",
      "frame": SiteTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "system": true,
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateSiteTemplateFolder

Response

Returns a SiteTemplateFolder

Arguments
NameDescription
data - SiteTemplateFolderUpdateInput!
tenant - ID
where - SiteTemplateFolderWhereUniqueInput!

Example

Query
mutation UpdateSiteTemplateFolder(
  $data: SiteTemplateFolderUpdateInput!,
  $tenant: ID,
  $where: SiteTemplateFolderWhereUniqueInput!
) {
  updateSiteTemplateFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...SiteTemplateFolderFragment
    }
    parentId
    parentsTree {
      ...SiteTemplateFolderFragment
    }
    parentsTreeCount
    parentsTreeIds
    protected
    siteTemplateFoldersCount
    siteTemplatesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SiteTemplateFolderUpdateInput,
  "tenant": "4",
  "where": SiteTemplateFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateSiteTemplateFolder": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "abc123",
      "parent": SiteTemplateFolder,
      "parentId": "4",
      "parentsTree": [SiteTemplateFolder],
      "parentsTreeCount": 987,
      "parentsTreeIds": ["4"],
      "protected": false,
      "siteTemplateFoldersCount": 123,
      "siteTemplatesCount": 123,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateSkill

Response

Returns a Skill

Arguments
NameDescription
data - SkillUpdateInput!
tenant - ID
where - SkillWhereUniqueInput!

Example

Query
mutation UpdateSkill(
  $data: SkillUpdateInput!,
  $tenant: ID,
  $where: SkillWhereUniqueInput!
) {
  updateSkill(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSkillLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    name
    protected
    renewal {
      ...SkillRenewalFragment
    }
    renewalWarning {
      ...SkillRenewalWarningFragment
    }
    skillGroup {
      ...SkillGroupFragment
    }
    skillGroupId
    skillSpecificLevelsData {
      ...SkillSkillSpecificLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SkillUpdateInput,
  "tenant": 4,
  "where": SkillWhereUniqueInput
}
Response
{
  "data": {
    "updateSkill": {
      "_id": 4,
      "chosenSkillLevels": ["xyz789"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "name": "xyz789",
      "protected": false,
      "renewal": SkillRenewal,
      "renewalWarning": SkillRenewalWarning,
      "skillGroup": SkillGroup,
      "skillGroupId": "4",
      "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateSkillGroup

Response

Returns a SkillGroup

Arguments
NameDescription
data - SkillGroupUpdateInput!
tenant - ID
where - SkillGroupWhereUniqueInput!

Example

Query
mutation UpdateSkillGroup(
  $data: SkillGroupUpdateInput!,
  $tenant: ID,
  $where: SkillGroupWhereUniqueInput!
) {
  updateSkillGroup(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skills {
      ...SkillFragment
    }
    subject {
      ...SkillSubjectFragment
    }
    subjectId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SkillGroupUpdateInput,
  "tenant": "4",
  "where": SkillGroupWhereUniqueInput
}
Response
{
  "data": {
    "updateSkillGroup": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "protected": false,
      "skillCount": 987,
      "skills": [Skill],
      "subject": SkillSubject,
      "subjectId": 4,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateSkillLevel

Response

Returns a SkillLevel

Arguments
NameDescription
data - SkillLevelUpdateInput!
tenant - ID
where - SkillLevelWhereUniqueInput!

Example

Query
mutation UpdateSkillLevel(
  $data: SkillLevelUpdateInput!,
  $tenant: ID,
  $where: SkillLevelWhereUniqueInput!
) {
  updateSkillLevel(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": SkillLevelUpdateInput,
  "tenant": 4,
  "where": SkillLevelWhereUniqueInput
}
Response
{
  "data": {
    "updateSkillLevel": {
      "_id": 4,
      "account": Account,
      "accountId": "4",
      "acquisitionDate": "2007-12-03T10:15:30Z",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": [4],
      "level": "EXPERT",
      "protected": true,
      "requiredLevel": "EXPERT",
      "skill": Skill,
      "skillId": "4",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateSkillLevels

Response

Returns [SkillLevel]

Arguments
NameDescription
data - SkillLevelUpdateInput!
ids - [ID!]!

Example

Query
mutation UpdateSkillLevels(
  $data: SkillLevelUpdateInput!,
  $ids: [ID!]!
) {
  updateSkillLevels(
    data: $data,
    ids: $ids
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    acquisitionDate
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    level
    protected
    requiredLevel
    skill {
      ...SkillFragment
    }
    skillId
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"data": SkillLevelUpdateInput, "ids": [4]}
Response
{
  "data": {
    "updateSkillLevels": [
      {
        "_id": "4",
        "account": Account,
        "accountId": "4",
        "acquisitionDate": "2007-12-03T10:15:30Z",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "files": [File],
        "filesIds": [4],
        "level": "EXPERT",
        "protected": false,
        "requiredLevel": "EXPERT",
        "skill": Skill,
        "skillId": "4",
        "system": false,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

updateSkillSubject

Response

Returns a SkillSubject

Arguments
NameDescription
data - SkillSubjectUpdateInput!
tenant - ID
where - SkillSubjectWhereUniqueInput!

Example

Query
mutation UpdateSkillSubject(
  $data: SkillSubjectUpdateInput!,
  $tenant: ID,
  $where: SkillSubjectWhereUniqueInput!
) {
  updateSkillSubject(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chosenSubjectLevels
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    skillCount
    skillGroupCount
    subjectLevelsData {
      ...SkillSubjectSubjectLevelsDatumFragment
    }
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    userCount
  }
}
Variables
{
  "data": SkillSubjectUpdateInput,
  "tenant": 4,
  "where": SkillSubjectWhereUniqueInput
}
Response
{
  "data": {
    "updateSkillSubject": {
      "_id": "4",
      "chosenSubjectLevels": ["abc123"],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "protected": false,
      "skillCount": 987,
      "skillGroupCount": 123,
      "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "userCount": 987
    }
  }
}

updateStateMachine

Response

Returns a StateMachine

Arguments
NameDescription
data - StateMachineUpdateInput!
tenant - ID
where - StateMachineWhereUniqueInput!

Example

Query
mutation UpdateStateMachine(
  $data: StateMachineUpdateInput!,
  $tenant: ID,
  $where: StateMachineWhereUniqueInput!
) {
  updateStateMachine(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...StateMachineFolderFragment
    }
    folderId
    initState
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    protected
    states {
      ...StateMachineStateFragment
    }
    system
    timeBomb {
      ...StateMachineTimeBombFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": StateMachineUpdateInput,
  "tenant": "4",
  "where": StateMachineWhereUniqueInput
}
Response
{
  "data": {
    "updateStateMachine": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": StateMachineFolder,
      "folderId": 4,
      "initState": "abc123",
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "xyz789",
      "protected": false,
      "states": [StateMachineState],
      "system": false,
      "timeBomb": StateMachineTimeBomb,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateStateMachineFolder

Response

Returns a StateMachineFolder

Arguments
NameDescription
data - StateMachineFolderUpdateInput!
tenant - ID
where - StateMachineFolderWhereUniqueInput!

Example

Query
mutation UpdateStateMachineFolder(
  $data: StateMachineFolderUpdateInput!,
  $tenant: ID,
  $where: StateMachineFolderWhereUniqueInput!
) {
  updateStateMachineFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...StateMachineFolderFragment
    }
    parentId
    parentsTree {
      ...StateMachineFolderFragment
    }
    parentsTreeIds
    protected
    stateMachineFoldersCount
    stateMachinesCount
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": StateMachineFolderUpdateInput,
  "tenant": "4",
  "where": StateMachineFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateStateMachineFolder": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "name": "xyz789",
      "parent": StateMachineFolder,
      "parentId": "4",
      "parentsTree": [StateMachineFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "stateMachineFoldersCount": 123,
      "stateMachinesCount": 123,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateStorage

Response

Returns a Storage

Arguments
NameDescription
data - StorageUpdateInput!
tenant - ID
where - StorageWhereUniqueInput!

Example

Query
mutation UpdateStorage(
  $data: StorageUpdateInput!,
  $tenant: ID,
  $where: StorageWhereUniqueInput!
) {
  updateStorage(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    address {
      ...StorageAddressFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    locations {
      ...LocationFragment
    }
    locationsIds
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": StorageUpdateInput,
  "tenant": 4,
  "where": StorageWhereUniqueInput
}
Response
{
  "data": {
    "updateStorage": {
      "_id": "4",
      "address": StorageAddress,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "locations": [Location],
      "locationsIds": ["4"],
      "name": "abc123",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateTab

Response

Returns a Tab

Arguments
NameDescription
data - TabUpdateInput!
tenant - ID
where - TabWhereUniqueInput!

Example

Query
mutation UpdateTab(
  $data: TabUpdateInput!,
  $tenant: ID,
  $where: TabWhereUniqueInput!
) {
  updateTab(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    columns {
      ...TabColumnFragment
    }
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TabUpdateInput,
  "tenant": "4",
  "where": TabWhereUniqueInput
}
Response
{
  "data": {
    "updateTab": {
      "_id": 4,
      "account": Account,
      "accountId": 4,
      "columns": [TabColumn],
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "protected": false,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateTaskMapping

Response

Returns a TaskMapping

Arguments
NameDescription
data - TaskMappingUpdateInput!
tenant - ID
where - TaskMappingWhereUniqueInput!

Example

Query
mutation UpdateTaskMapping(
  $data: TaskMappingUpdateInput!,
  $tenant: ID,
  $where: TaskMappingWhereUniqueInput!
) {
  updateTaskMapping(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...TaskMappingAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    element {
      ...ElementFragment
    }
    elementId
    issueCatalog {
      ...IssueCatalogFragment
    }
    issueCatalogId
    protected
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskTemplate {
      ...TaskTemplateFragment
    }
    taskTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TaskMappingUpdateInput,
  "tenant": 4,
  "where": TaskMappingWhereUniqueInput
}
Response
{
  "data": {
    "updateTaskMapping": {
      "_id": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [TaskMappingAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "element": Element,
      "elementId": 4,
      "issueCatalog": IssueCatalog,
      "issueCatalogId": "4",
      "protected": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskTemplate": TaskTemplate,
      "taskTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateTaskMappingDraft

Response

Returns an IssueCatalogDraft

Arguments
NameDescription
_id - ID!
update - IssueCatalogDraftTaskMappingUpdateInput!

Example

Query
mutation UpdateTaskMappingDraft(
  $_id: ID!,
  $update: IssueCatalogDraftTaskMappingUpdateInput!
) {
  updateTaskMappingDraft(
    _id: $_id,
    update: $update
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogDraftApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogDraftAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogDraftPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogDraftReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogDraftSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...IssueCatalogDraftTaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    updateCatalog {
      ...IssueCatalogFragment
    }
    updateCatalogId
    updateLog {
      ...IssueCatalogDraftUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "_id": 4,
  "update": IssueCatalogDraftTaskMappingUpdateInput
}
Response
{
  "data": {
    "updateTaskMappingDraft": {
      "_id": "4",
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogDraftApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogDraftAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogDraftPaperForm,
      "protected": true,
      "remarksOnTasks": false,
      "report": IssueCatalogDraftReport,
      "requestDescription": true,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogDraftScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [IssueCatalogDraftTaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": true,
      "updateCatalog": IssueCatalog,
      "updateCatalogId": 4,
      "updateLog": [IssueCatalogDraftUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateTaskTemplate

Response

Returns a TaskTemplate

Arguments
NameDescription
data - TaskTemplateUpdateInput!
tenant - ID
where - TaskTemplateWhereUniqueInput!

Example

Query
mutation UpdateTaskTemplate(
  $data: TaskTemplateUpdateInput!,
  $tenant: ID,
  $where: TaskTemplateWhereUniqueInput!
) {
  updateTaskTemplate(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    advancedLabelSelection {
      ...TaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...TaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...TaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...TaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...TaskTemplateAssignedToolFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    estimatedDuration
    estimatedDurationDivided {
      ...TaskTemplateEstimatedDurationDividedFragment
    }
    group {
      ...TaskTemplateGroupFragment
    }
    groupId
    inputHistory {
      ...InputFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...TaskTemplateLogFragment
    }
    manualId
    mapping {
      ...TaskMappingFragment
    }
    name
    onResponseId
    order
    parentsTree
    protected
    remarks {
      ...TaskTemplateRemarkFragment
    }
    show
    system
    totalScore
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...TaskTemplateVariantFragment
    }
  }
}
Variables
{
  "data": TaskTemplateUpdateInput,
  "tenant": 4,
  "where": TaskTemplateWhereUniqueInput
}
Response
{
  "data": {
    "updateTaskTemplate": {
      "_id": "4",
      "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
      "arConfiguration": TaskTemplateArConfiguration,
      "assignedMaterials": [TaskTemplateAssignedMaterial],
      "assignedSkills": [TaskTemplateAssignedSkill],
      "assignedTools": [TaskTemplateAssignedTool],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "estimatedDuration": 987,
      "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
      "group": TaskTemplateGroup,
      "groupId": "4",
      "inputHistory": [Input],
      "inputs": [Input],
      "isRepeatable": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [TaskTemplateLog],
      "manualId": "abc123",
      "mapping": TaskMapping,
      "name": "abc123",
      "onResponseId": 4,
      "order": 987,
      "parentsTree": ["4"],
      "protected": true,
      "remarks": [TaskTemplateRemark],
      "show": true,
      "system": true,
      "totalScore": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": TaskTemplateVariant
    }
  }
}

updateTaskTemplateDraft

Arguments
NameDescription
issueTemplateDraft - ID!
taskTemplateGroup - ID!
taskToUpdate - ID!
update - IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput!

Example

Query
mutation UpdateTaskTemplateDraft(
  $issueTemplateDraft: ID!,
  $taskTemplateGroup: ID!,
  $taskToUpdate: ID!,
  $update: IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput!
) {
  updateTaskTemplateDraft(
    issueTemplateDraft: $issueTemplateDraft,
    taskTemplateGroup: $taskTemplateGroup,
    taskToUpdate: $taskToUpdate,
    update: $update
  ) {
    _id
    advancedLabelSelection {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFragment
    }
    arConfiguration {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationFragment
    }
    assignedMaterials {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialFragment
    }
    assignedSkills {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillFragment
    }
    assignedTools {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolFragment
    }
    description
    estimatedDuration
    estimatedDurationDivided {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedFragment
    }
    inputs {
      ...InputFragment
    }
    isRepeatable
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateLogFragment
    }
    manualId
    name
    onResponseId
    order
    parentsTree
    remarks {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkFragment
    }
    show
    totalScore
    variant {
      ...IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantFragment
    }
  }
}
Variables
{
  "issueTemplateDraft": 4,
  "taskTemplateGroup": "4",
  "taskToUpdate": "4",
  "update": IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput
}
Response
{
  "data": {
    "updateTaskTemplateDraft": {
      "_id": "4",
      "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection,
      "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration,
      "assignedMaterials": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial
      ],
      "assignedSkills": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill
      ],
      "assignedTools": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool
      ],
      "description": "xyz789",
      "estimatedDuration": 123,
      "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided,
      "inputs": [Input],
      "isRepeatable": false,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateLog
      ],
      "manualId": "abc123",
      "name": "abc123",
      "onResponseId": 4,
      "order": 123,
      "parentsTree": [4],
      "remarks": [
        IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark
      ],
      "show": true,
      "totalScore": 987,
      "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant
    }
  }
}

updateTaskTemplateDraftsVariantOrder

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
taskTemplateDraft - ID!
taskTemplateGroup - ID!
tasks - [TaskVariantOrder!]!

Example

Query
mutation UpdateTaskTemplateDraftsVariantOrder(
  $taskTemplateDraft: ID!,
  $taskTemplateGroup: ID!,
  $tasks: [TaskVariantOrder!]!
) {
  updateTaskTemplateDraftsVariantOrder(
    taskTemplateDraft: $taskTemplateDraft,
    taskTemplateGroup: $taskTemplateGroup,
    tasks: $tasks
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "taskTemplateDraft": 4,
  "taskTemplateGroup": "4",
  "tasks": [TaskVariantOrder]
}
Response
{
  "data": {
    "updateTaskTemplateDraftsVariantOrder": {
      "_id": 4,
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "abc123",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateTaskTemplateGroup

Response

Returns a TaskTemplateGroup

Arguments
NameDescription
data - TaskTemplateGroupUpdateInput!
tenant - ID
where - TaskTemplateGroupWhereUniqueInput!

Example

Query
mutation UpdateTaskTemplateGroup(
  $data: TaskTemplateGroupUpdateInput!,
  $tenant: ID,
  $where: TaskTemplateGroupWhereUniqueInput!
) {
  updateTaskTemplateGroup(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueTemplate {
      ...IssueTemplateFragment
    }
    issueTemplateId
    markersToShow
    name
    order
    protected
    sequential
    system
    taskTemplates {
      ...TaskTemplateFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TaskTemplateGroupUpdateInput,
  "tenant": 4,
  "where": TaskTemplateGroupWhereUniqueInput
}
Response
{
  "data": {
    "updateTaskTemplateGroup": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "issueTemplate": IssueTemplate,
      "issueTemplateId": "4",
      "markersToShow": "ALL",
      "name": "xyz789",
      "order": 123,
      "protected": false,
      "sequential": true,
      "system": false,
      "taskTemplates": [TaskTemplate],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateTaskTemplateGroupDraft

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
draft - ID!
taskTemplateGroup - ID!
update - TaskGroupUpdateInput!

Example

Query
mutation UpdateTaskTemplateGroupDraft(
  $draft: ID!,
  $taskTemplateGroup: ID!,
  $update: TaskGroupUpdateInput!
) {
  updateTaskTemplateGroupDraft(
    draft: $draft,
    taskTemplateGroup: $taskTemplateGroup,
    update: $update
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{
  "draft": 4,
  "taskTemplateGroup": 4,
  "update": TaskGroupUpdateInput
}
Response
{
  "data": {
    "updateTaskTemplateGroupDraft": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": false,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateTaskTemplateGroupDraftsOrder

Response

Returns an IssueTemplateDraft

Arguments
NameDescription
draft - ID!
taskTemplateGroups - [ID!]!

Example

Query
mutation UpdateTaskTemplateGroupDraftsOrder(
  $draft: ID!,
  $taskTemplateGroups: [ID!]!
) {
  updateTaskTemplateGroupDraftsOrder(
    draft: $draft,
    taskTemplateGroups: $taskTemplateGroups
  ) {
    _id
    assignedSkills {
      ...IssueTemplateDraftAssignedSkillFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateDraftFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateDraftFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...IssueTemplateDraftTaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateDraftTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateDraftTimeTableFilterFragment
    }
    title
    updateTemplate {
      ...IssueTemplateFragment
    }
    updateTemplateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateDraftVariantFragment
    }
  }
}
Variables
{"draft": "4", "taskTemplateGroups": [4]}
Response
{
  "data": {
    "updateTaskTemplateGroupDraftsOrder": {
      "_id": "4",
      "assignedSkills": [IssueTemplateDraftAssignedSkill],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateDraftFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateDraftFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": "4",
      "system": true,
      "taskTemplateGroups": [
        IssueTemplateDraftTaskTemplateGroup
      ],
      "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
      "timeTableFilters": [
        IssueTemplateDraftTimeTableFilter
      ],
      "title": "xyz789",
      "updateTemplate": IssueTemplate,
      "updateTemplateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateDraftVariant
    }
  }
}

updateTeam

Response

Returns a Team

Arguments
NameDescription
data - TeamUpdateInput!
tenant - ID
where - TeamWhereUniqueInput!

Example

Query
mutation UpdateTeam(
  $data: TeamUpdateInput!,
  $tenant: ID,
  $where: TeamWhereUniqueInput!
) {
  updateTeam(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    color
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    members {
      ...TeamMemberFragment
    }
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TeamUpdateInput,
  "tenant": "4",
  "where": TeamWhereUniqueInput
}
Response
{
  "data": {
    "updateTeam": {
      "_id": 4,
      "color": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "members": [TeamMember],
      "name": "abc123",
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateTenant

Response

Returns a Tenant

Example

Query
mutation UpdateTenant {
  updateTenant {
    _id
    admin
    adminAccountFolder
    adminAccountTemplate
    adminAccountTemplateFolder
    adminRole
    adminRoleFolder
    config {
      ...TenantConfigFragment
    }
    createdAt
    default
    domain
    email
    invitesCount
    isAdminTenant
    master
    name
    password
    rootSite
    rootSiteTemplate
    rootSiteTemplateFolder
    totalAccounts
    updatedAt
    username
  }
}
Response
{
  "data": {
    "updateTenant": {
      "_id": 4,
      "admin": 4,
      "adminAccountFolder": 4,
      "adminAccountTemplate": 4,
      "adminAccountTemplateFolder": 4,
      "adminRole": 4,
      "adminRoleFolder": 4,
      "config": TenantConfig,
      "createdAt": "2007-12-03T10:15:30Z",
      "default": false,
      "domain": "xyz789",
      "email": "abc123",
      "invitesCount": 123,
      "isAdminTenant": true,
      "master": false,
      "name": "abc123",
      "password": "abc123",
      "rootSite": 4,
      "rootSiteTemplate": 4,
      "rootSiteTemplateFolder": "4",
      "totalAccounts": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "username": "abc123"
    }
  }
}

updateTenantConfigArCore

Response

Returns a LeanTenantConfigArCore

Arguments
NameDescription
data - TenantConfigArCoreUpdateInput!

Example

Query
mutation UpdateTenantConfigArCore($data: TenantConfigArCoreUpdateInput!) {
  updateTenantConfigArCore(data: $data) {
    audience
    clientEmail
    privateKey
    privateKeyId
  }
}
Variables
{"data": TenantConfigArCoreUpdateInput}
Response
{
  "data": {
    "updateTenantConfigArCore": {
      "audience": "xyz789",
      "clientEmail": "abc123",
      "privateKey": "abc123",
      "privateKeyId": "xyz789"
    }
  }
}

updateTenantConfigLDAP

Response

Returns a TenantConfigLdap

Arguments
NameDescription
data - TenantConfigLdapUpdateInput!

Example

Query
mutation UpdateTenantConfigLDAP($data: TenantConfigLdapUpdateInput!) {
  updateTenantConfigLDAP(data: $data) {
    ad
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesIds
    bindDN
    defaultRole {
      ...RoleFragment
    }
    defaultRoleId
    disabled
    fieldMap {
      ...TenantConfigLdapFieldMapFragment
    }
    filter
    overrideRolesOnUpdate
    password
    roleMap {
      ...TenantConfigLdapRoleMapFragment
    }
    searchDN
    url
    username
  }
}
Variables
{"data": TenantConfigLdapUpdateInput}
Response
{
  "data": {
    "updateTenantConfigLDAP": {
      "ad": false,
      "authorizedSites": [Site],
      "authorizedSitesIds": ["4"],
      "bindDN": "xyz789",
      "defaultRole": Role,
      "defaultRoleId": "4",
      "disabled": false,
      "fieldMap": TenantConfigLdapFieldMap,
      "filter": "abc123",
      "overrideRolesOnUpdate": false,
      "password": "xyz789",
      "roleMap": [TenantConfigLdapRoleMap],
      "searchDN": "xyz789",
      "url": "xyz789",
      "username": "xyz789"
    }
  }
}

updateTenantConfigSAML

Response

Returns a TenantConfigSaml

Arguments
NameDescription
data - TenantConfigSamlUpdateInput!

Example

Query
mutation UpdateTenantConfigSAML($data: TenantConfigSamlUpdateInput!) {
  updateTenantConfigSAML(data: $data) {
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesIds
    callbackUrl
    cert
    defaultRole {
      ...RoleFragment
    }
    defaultRoleId
    entryPoint
    fetchUrl {
      ...TenantConfigSamlFetchUrlFragment
    }
    fieldMap {
      ...TenantConfigSamlFieldMapFragment
    }
    issuer
    overrideRolesOnUpdate
    roleMap {
      ...TenantConfigSamlRoleMapFragment
    }
  }
}
Variables
{"data": TenantConfigSamlUpdateInput}
Response
{
  "data": {
    "updateTenantConfigSAML": {
      "authorizedSites": [Site],
      "authorizedSitesIds": [4],
      "callbackUrl": "xyz789",
      "cert": "abc123",
      "defaultRole": Role,
      "defaultRoleId": "4",
      "entryPoint": "xyz789",
      "fetchUrl": TenantConfigSamlFetchUrl,
      "fieldMap": TenantConfigSamlFieldMap,
      "issuer": "abc123",
      "overrideRolesOnUpdate": true,
      "roleMap": [TenantConfigSamlRoleMap]
    }
  }
}

updateTenantPalette

Response

Returns a Tenant

Arguments
NameDescription
paletteDark - TenantConfigPaletteDarkUpdateInput!
paletteLight - TenantConfigPaletteLightUpdateInput!

Example

Query
mutation UpdateTenantPalette(
  $paletteDark: TenantConfigPaletteDarkUpdateInput!,
  $paletteLight: TenantConfigPaletteLightUpdateInput!
) {
  updateTenantPalette(
    paletteDark: $paletteDark,
    paletteLight: $paletteLight
  ) {
    _id
    admin
    adminAccountFolder
    adminAccountTemplate
    adminAccountTemplateFolder
    adminRole
    adminRoleFolder
    config {
      ...TenantConfigFragment
    }
    createdAt
    default
    domain
    email
    invitesCount
    isAdminTenant
    master
    name
    password
    rootSite
    rootSiteTemplate
    rootSiteTemplateFolder
    totalAccounts
    updatedAt
    username
  }
}
Variables
{
  "paletteDark": TenantConfigPaletteDarkUpdateInput,
  "paletteLight": TenantConfigPaletteLightUpdateInput
}
Response
{
  "data": {
    "updateTenantPalette": {
      "_id": 4,
      "admin": 4,
      "adminAccountFolder": 4,
      "adminAccountTemplate": 4,
      "adminAccountTemplateFolder": 4,
      "adminRole": "4",
      "adminRoleFolder": "4",
      "config": TenantConfig,
      "createdAt": "2007-12-03T10:15:30Z",
      "default": true,
      "domain": "xyz789",
      "email": "xyz789",
      "invitesCount": 123,
      "isAdminTenant": true,
      "master": false,
      "name": "abc123",
      "password": "abc123",
      "rootSite": 4,
      "rootSiteTemplate": 4,
      "rootSiteTemplateFolder": 4,
      "totalAccounts": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "username": "xyz789"
    }
  }
}

updateTenantTimeZone

Response

Returns a String

Arguments
NameDescription
timeZone - String!

Example

Query
mutation UpdateTenantTimeZone($timeZone: String!) {
  updateTenantTimeZone(timeZone: $timeZone)
}
Variables
{"timeZone": "abc123"}
Response
{"data": {"updateTenantTimeZone": "abc123"}}

updateTimeseriesConfigurations

Response

Returns a Configuration

Arguments
NameDescription
type - TimeSeriesTypes

Example

Query
mutation UpdateTimeseriesConfigurations($type: TimeSeriesTypes) {
  updateTimeseriesConfigurations(type: $type) {
    _id
    alarm {
      ...ConfigurationAlarmFragment
    }
    client {
      ...ConfigurationClientFragment
    }
    firebase {
      ...ConfigurationFirebaseFragment
    }
    grpc {
      ...ConfigurationGrpcFragment
    }
    http {
      ...ConfigurationHttpFragment
    }
    ldap {
      ...ConfigurationLdapFragment
    }
    mixedReality {
      ...ConfigurationMixedRealityFragment
    }
    mqttAuth {
      ...ConfigurationMqttAuthFragment
    }
    options {
      ...ConfigurationOptionFragment
    }
    recaptcha {
      ...ConfigurationRecaptchaFragment
    }
    redis {
      ...ConfigurationRediFragment
    }
    sentry {
      ...ConfigurationSentryFragment
    }
    server {
      ...ConfigurationServerFragment
    }
    settings {
      ...ConfigurationSettingFragment
    }
    storage {
      ...ConfigurationStorageFragment
    }
    timeseries {
      ...ConfigurationTimeseryFragment
    }
    websocket {
      ...ConfigurationWebsocketFragment
    }
  }
}
Variables
{"type": "InfluxV1"}
Response
{
  "data": {
    "updateTimeseriesConfigurations": {
      "_id": 4,
      "alarm": ConfigurationAlarm,
      "client": ConfigurationClient,
      "firebase": ConfigurationFirebase,
      "grpc": ConfigurationGrpc,
      "http": ConfigurationHttp,
      "ldap": ConfigurationLdap,
      "mixedReality": ConfigurationMixedReality,
      "mqttAuth": ConfigurationMqttAuth,
      "options": ConfigurationOption,
      "recaptcha": ConfigurationRecaptcha,
      "redis": ConfigurationRedi,
      "sentry": ConfigurationSentry,
      "server": ConfigurationServer,
      "settings": ConfigurationSetting,
      "storage": ConfigurationStorage,
      "timeseries": ConfigurationTimesery,
      "websocket": ConfigurationWebsocket
    }
  }
}

updateTimesheet

Response

Returns a Timesheet

Arguments
NameDescription
data - TimesheetUpdateInput!
tenant - ID
where - TimesheetWhereUniqueInput!

Example

Query
mutation UpdateTimesheet(
  $data: TimesheetUpdateInput!,
  $tenant: ID,
  $where: TimesheetWhereUniqueInput!
) {
  updateTimesheet(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    action {
      ...ActionFragment
    }
    actionId
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    duration
    finishDate
    issue {
      ...IssueInstanceFragment
    }
    issueId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    startDate
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": TimesheetUpdateInput,
  "tenant": 4,
  "where": TimesheetWhereUniqueInput
}
Response
{
  "data": {
    "updateTimesheet": {
      "_id": 4,
      "action": Action,
      "actionId": "4",
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "duration": 123,
      "finishDate": "2007-12-03T10:15:30Z",
      "issue": IssueInstance,
      "issueId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "startDate": "2007-12-03T10:15:30Z",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateTool

Response

Returns a Tool

Arguments
NameDescription
data - ToolUpdateInput!
tenant - ID
where - ToolWhereUniqueInput!

Example

Query
mutation UpdateTool(
  $data: ToolUpdateInput!,
  $tenant: ID,
  $where: ToolWhereUniqueInput!
) {
  updateTool(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    designation
    dimension {
      ...ToolDimensionFragment
    }
    images {
      ...FileFragment
    }
    imagesIds
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    partNumber
    protected
    stockPerStorage {
      ...ToolStockPerStorageFragment
    }
    system
    totalStock
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": ToolUpdateInput,
  "tenant": "4",
  "where": ToolWhereUniqueInput
}
Response
{
  "data": {
    "updateTool": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "designation": "xyz789",
      "dimension": ToolDimension,
      "images": [File],
      "imagesIds": [4],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "partNumber": "abc123",
      "protected": true,
      "stockPerStorage": [ToolStockPerStorage],
      "system": false,
      "totalStock": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateToolItem

Response

Returns a ToolItem

Arguments
NameDescription
data - ToolItemUpdateInput!
tenant - ID
where - ToolItemWhereUniqueInput!

Example

Query
mutation UpdateToolItem(
  $data: ToolItemUpdateInput!,
  $tenant: ID,
  $where: ToolItemWhereUniqueInput!
) {
  updateToolItem(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    associatedWith {
      ...ToolItemFragment
    }
    available
    code
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    customFields {
      ...ToolItemCustomFieldFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    hiddenFields
    location {
      ...LocationFragment
    }
    locationId
    protected
    serialNumber
    status
    system
    tool {
      ...ToolFragment
    }
    toolId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usedBy {
      ...AccountFragment
    }
    usedById
    usedIn {
      ...IssueInstanceFragment
    }
    usedInId
  }
}
Variables
{
  "data": ToolItemUpdateInput,
  "tenant": 4,
  "where": ToolItemWhereUniqueInput
}
Response
{
  "data": {
    "updateToolItem": {
      "_id": "4",
      "associatedWith": [ToolItem],
      "available": true,
      "code": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "customFields": [ToolItemCustomField],
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "hiddenFields": ["xyz789"],
      "location": Location,
      "locationId": 4,
      "protected": false,
      "serialNumber": "xyz789",
      "status": "IN_MAINTENANCE",
      "system": true,
      "tool": Tool,
      "toolId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usedBy": Account,
      "usedById": "4",
      "usedIn": IssueInstance,
      "usedInId": 4
    }
  }
}

updateTutorial

Response

Returns an Account

Arguments
NameDescription
accountId - ID!
tutorial - Boolean!

Example

Query
mutation UpdateTutorial(
  $accountId: ID!,
  $tutorial: Boolean!
) {
  updateTutorial(
    accountId: $accountId,
    tutorial: $tutorial
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{"accountId": 4, "tutorial": true}
Response
{
  "data": {
    "updateTutorial": {
      "ARUser": false,
      "_id": 4,
      "actions": 123,
      "agoraUid": "xyz789",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": 4,
      "clientMixedRealityEnabled": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "xyz789",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "xyz789",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [123.45],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "abc123",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": false,
      "roles": [Role],
      "rolesIds": [4],
      "seenFeatures": {},
      "ssoLogin": true,
      "system": false,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "username": "abc123"
    }
  }
}

updateUnit

Response

Returns a Unit

Arguments
NameDescription
data - UnitUpdateInput!
tenant - ID
where - UnitWhereUniqueInput!

Example

Query
mutation UpdateUnit(
  $data: UnitUpdateInput!,
  $tenant: ID,
  $where: UnitWhereUniqueInput!
) {
  updateUnit(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    convert {
      ...UnitConvertFragment
    }
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    folder {
      ...UnitFolderFragment
    }
    folderId
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    order
    protected
    symbol
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": UnitUpdateInput,
  "tenant": "4",
  "where": UnitWhereUniqueInput
}
Response
{
  "data": {
    "updateUnit": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "convert": [UnitConvert],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "folder": UnitFolder,
      "folderId": 4,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "order": 123,
      "protected": false,
      "symbol": "xyz789",
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateUnitFolder

Response

Returns a UnitFolder

Arguments
NameDescription
data - UnitFolderUpdateInput!
tenant - ID
where - UnitFolderWhereUniqueInput!

Example

Query
mutation UpdateUnitFolder(
  $data: UnitFolderUpdateInput!,
  $tenant: ID,
  $where: UnitFolderWhereUniqueInput!
) {
  updateUnitFolder(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    name
    parent {
      ...UnitFolderFragment
    }
    parentId
    parentsTree {
      ...UnitFolderFragment
    }
    parentsTreeIds
    protected
    system
    unitFoldersCount
    unitsCount
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": UnitFolderUpdateInput,
  "tenant": 4,
  "where": UnitFolderWhereUniqueInput
}
Response
{
  "data": {
    "updateUnitFolder": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "name": "xyz789",
      "parent": UnitFolder,
      "parentId": "4",
      "parentsTree": [UnitFolder],
      "parentsTreeIds": [4],
      "protected": false,
      "system": false,
      "unitFoldersCount": 987,
      "unitsCount": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

updateUserTeams

Response

Returns an Account

Arguments
NameDescription
accountId - ID!
teams - [ID!]!

Example

Query
mutation UpdateUserTeams(
  $accountId: ID!,
  $teams: [ID!]!
) {
  updateUserTeams(
    accountId: $accountId,
    teams: $teams
  ) {
    ARUser
    _id
    actions
    agoraUid
    authorizedSites {
      ...SiteFragment
    }
    authorizedSitesFlattened {
      ...SiteFragment
    }
    authorizedSitesIds
    chat
    clientId
    clientMixedRealityEnabled
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    defaultTimeZone
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    email
    feed
    filters {
      ...AccountFilterFragment
    }
    firstLogin
    folder {
      ...AccountFolderFragment
    }
    folderId
    gps
    impersonatedBy
    impersonatedById
    inputs {
      ...InputFragment
    }
    isActive
    isContact
    isPlatformAdmin
    issues
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lastLogin
    mobileTabs
    myClearances {
      ...MyClearancesFragment
    }
    name
    onBoarding {
      ...AccountOnBoardingFragment
    }
    photo
    preferences {
      ...AccountPreferencesFragment
    }
    protected
    recoveryEmail
    requiresPasswordReset
    roles {
      ...RoleFragment
    }
    rolesIds
    seenFeatures
    ssoLogin
    system
    tabs {
      ...TabFragment
    }
    teams {
      ...TeamFragment
    }
    template {
      ...AccountTemplateFragment
    }
    templateId
    tenantId
    tutorialCompleted
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    username
  }
}
Variables
{
  "accountId": "4",
  "teams": ["4"]
}
Response
{
  "data": {
    "updateUserTeams": {
      "ARUser": true,
      "_id": 4,
      "actions": 987,
      "agoraUid": "abc123",
      "authorizedSites": [Site],
      "authorizedSitesFlattened": [Site],
      "authorizedSitesIds": ["4"],
      "chat": 123,
      "clientId": 4,
      "clientMixedRealityEnabled": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "defaultTimeZone": "abc123",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "email": "abc123",
      "feed": 987,
      "filters": [AccountFilter],
      "firstLogin": true,
      "folder": AccountFolder,
      "folderId": 4,
      "gps": [987.65],
      "impersonatedBy": "4",
      "impersonatedById": 4,
      "inputs": [Input],
      "isActive": true,
      "isContact": false,
      "isPlatformAdmin": true,
      "issues": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lastLogin": "2007-12-03T10:15:30Z",
      "mobileTabs": ["abc123"],
      "myClearances": [MyClearances],
      "name": "abc123",
      "onBoarding": AccountOnBoarding,
      "photo": "xyz789",
      "preferences": AccountPreferences,
      "protected": true,
      "recoveryEmail": "abc123",
      "requiresPasswordReset": true,
      "roles": [Role],
      "rolesIds": ["4"],
      "seenFeatures": {},
      "ssoLogin": false,
      "system": true,
      "tabs": [Tab],
      "teams": [Team],
      "template": AccountTemplate,
      "templateId": "4",
      "tenantId": 4,
      "tutorialCompleted": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "username": "abc123"
    }
  }
}

updateWidget

Response

Returns a Widget

Arguments
NameDescription
data - WidgetUpdateInput!
tenant - ID
where - WidgetWhereUniqueInput!

Example

Query
mutation UpdateWidget(
  $data: WidgetUpdateInput!,
  $tenant: ID,
  $where: WidgetWhereUniqueInput!
) {
  updateWidget(
    data: $data,
    tenant: $tenant,
    where: $where
  ) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "data": WidgetUpdateInput,
  "tenant": "4",
  "where": WidgetWhereUniqueInput
}
Response
{
  "data": {
    "updateWidget": {
      "_id": "4",
      "chart": "bar",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "dashboard": "4",
      "data": {},
      "dataset": WidgetDataset,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "draft": 4,
      "layout": WidgetLayout,
      "name": "xyz789",
      "palette": ["abc123"],
      "preset": "xyz789",
      "protected": false,
      "showLegend": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

updateWidgetsLayout

Response

Returns [Widget]

Arguments
NameDescription
update - [UpdateMultipleWidgetInput!]!

Example

Query
mutation UpdateWidgetsLayout($update: [UpdateMultipleWidgetInput!]!) {
  updateWidgetsLayout(update: $update) {
    _id
    chart
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    dashboard
    data
    dataset {
      ...WidgetDatasetFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    draft
    layout {
      ...WidgetLayoutFragment
    }
    name
    palette
    preset
    protected
    showLegend
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"update": [UpdateMultipleWidgetInput]}
Response
{
  "data": {
    "updateWidgetsLayout": [
      {
        "_id": 4,
        "chart": "bar",
        "createdAt": "2007-12-03T10:15:30Z",
        "createdBy": Account,
        "createdById": 4,
        "dashboard": "4",
        "data": {},
        "dataset": WidgetDataset,
        "deleted": true,
        "deletedAt": "2007-12-03T10:15:30Z",
        "deletedBy": Account,
        "deletedById": 4,
        "draft": 4,
        "layout": WidgetLayout,
        "name": "abc123",
        "palette": ["abc123"],
        "preset": "abc123",
        "protected": false,
        "showLegend": false,
        "system": true,
        "updatedAt": "2007-12-03T10:15:30Z",
        "updatedBy": Account,
        "updatedById": 4
      }
    ]
  }
}

updateWorkPackageJob

Response

Returns a Job

Arguments
NameDescription
executionDate - DateTime
issueCatalogs - [WorkPackageData]
jobId - ID!
name - String

Example

Query
mutation UpdateWorkPackageJob(
  $executionDate: DateTime,
  $issueCatalogs: [WorkPackageData],
  $jobId: ID!,
  $name: String
) {
  updateWorkPackageJob(
    executionDate: $executionDate,
    issueCatalogs: $issueCatalogs,
    jobId: $jobId,
    name: $name
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{
  "executionDate": "2007-12-03T10:15:30Z",
  "issueCatalogs": [WorkPackageData],
  "jobId": 4,
  "name": "abc123"
}
Response
{
  "data": {
    "updateWorkPackageJob": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": false,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

uploadModelFiles

This method will be deleted
Response

Returns a Profile

Arguments
NameDescription
files - [UploadFile!]!
inputId - ID!
profileId - ID!

Example

Query
mutation UploadModelFiles(
  $files: [UploadFile!]!,
  $inputId: ID!,
  $profileId: ID!
) {
  uploadModelFiles(
    files: $files,
    inputId: $inputId,
    profileId: $profileId
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elementsCount
    folder {
      ...ProfileFolderFragment
    }
    folderId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    name
    parent {
      ...ProfileFragment
    }
    parentId
    parentsTree {
      ...ProfileFragment
    }
    parentsTreeIds
    profilesCount
    protected
    system
    template {
      ...ProfileTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "files": [UploadFile],
  "inputId": "4",
  "profileId": "4"
}
Response
{
  "data": {
    "uploadModelFiles": {
      "_id": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "elementsCount": 987,
      "folder": ProfileFolder,
      "folderId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "name": "abc123",
      "parent": Profile,
      "parentId": 4,
      "parentsTree": [Profile],
      "parentsTreeIds": [4],
      "profilesCount": 123,
      "protected": true,
      "system": true,
      "template": ProfileTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

upsertDashboardFromDraft

Response

Returns a Dashboard

Arguments
NameDescription
draftId - ID

Example

Query
mutation UpsertDashboardFromDraft($draftId: ID) {
  upsertDashboardFromDraft(draftId: $draftId) {
    _id
    account {
      ...AccountFragment
    }
    accountId
    autoRefresh
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    default
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    folder {
      ...DashboardFolderFragment
    }
    folderId
    name
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    widgets {
      ...WidgetFragment
    }
  }
}
Variables
{"draftId": "4"}
Response
{
  "data": {
    "upsertDashboardFromDraft": {
      "_id": "4",
      "account": Account,
      "accountId": 4,
      "autoRefresh": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "default": false,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "folder": DashboardFolder,
      "folderId": "4",
      "name": "xyz789",
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "widgets": [Widget]
    }
  }
}

upsertIssueCatalogFromDraft

Response

Returns an IssueCatalog

Arguments
NameDescription
_id - ID!

Example

Query
mutation UpsertIssueCatalogFromDraft($_id: ID!) {
  upsertIssueCatalogFromDraft(_id: $_id) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "upsertIssueCatalogFromDraft": {
      "_id": "4",
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": true,
      "paperForm": IssueCatalogPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": true,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": false,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": false,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": true,
      "totalExecutionInstances": 987,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

upsertIssueTemplateFromDraft

Response

Returns an IssueTemplate

Arguments
NameDescription
_id - ID!

Example

Query
mutation UpsertIssueTemplateFromDraft($_id: ID!) {
  upsertIssueTemplateFromDraft(_id: $_id) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"_id": "4"}
Response
{
  "data": {
    "upsertIssueTemplateFromDraft": {
      "_id": 4,
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": false,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

upsertIssueTemplateVariantFromDraft

Response

Returns an IssueTemplate

Arguments
NameDescription
_id - ID!
variantDescription - String
variantName - String!
variantPosition - Int!

Example

Query
mutation UpsertIssueTemplateVariantFromDraft(
  $_id: ID!,
  $variantDescription: String,
  $variantName: String!,
  $variantPosition: Int!
) {
  upsertIssueTemplateVariantFromDraft(
    _id: $_id,
    variantDescription: $variantDescription,
    variantName: $variantName,
    variantPosition: $variantPosition
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{
  "_id": "4",
  "variantDescription": "xyz789",
  "variantName": "abc123",
  "variantPosition": 987
}
Response
{
  "data": {
    "upsertIssueTemplateVariantFromDraft": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": 4,
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": true,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

viewMyPushNotifications

Response

Returns an Int

Example

Query
mutation ViewMyPushNotifications {
  viewMyPushNotifications
}
Response
{"data": {"viewMyPushNotifications": 123}}

Subscriptions

XLSXUploadProgress

Response

Returns an XLSXUploadProgressType

Example

Query
subscription XLSXUploadProgress {
  XLSXUploadProgress {
    progress
    status
  }
}
Response
{
  "data": {
    "XLSXUploadProgress": {
      "progress": 123,
      "status": "xyz789"
    }
  }
}

chatMessageCreated

Response

Returns a ChatMessage

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription ChatMessageCreated($ignoreSender: Boolean) {
  chatMessageCreated(ignoreSender: $ignoreSender) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "chatMessageCreated": {
      "_id": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": [4],
      "important": true,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": true,
      "protected": false,
      "receivedBy": [Account],
      "receivedByIds": ["4"],
      "removed": true,
      "replyTo": ChatMessage,
      "replyToId": 4,
      "seenBy": [Account],
      "seenByIds": [4],
      "system": true,
      "text": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

chatMessageImportant

Response

Returns a ChatMessage

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription ChatMessageImportant($ignoreSender: Boolean) {
  chatMessageImportant(ignoreSender: $ignoreSender) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "chatMessageImportant": {
      "_id": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": [4],
      "important": false,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": true,
      "protected": true,
      "receivedBy": [Account],
      "receivedByIds": [4],
      "removed": true,
      "replyTo": ChatMessage,
      "replyToId": 4,
      "seenBy": [Account],
      "seenByIds": [4],
      "system": true,
      "text": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

chatMessageUpdated

Response

Returns a ChatMessage

Arguments
NameDescription
chatRoomIds - [ID!]!
ignoreSender - BooleanDefault = true

Example

Query
subscription ChatMessageUpdated(
  $chatRoomIds: [ID!]!,
  $ignoreSender: Boolean
) {
  chatMessageUpdated(
    chatRoomIds: $chatRoomIds,
    ignoreSender: $ignoreSender
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"chatRoomIds": [4], "ignoreSender": true}
Response
{
  "data": {
    "chatMessageUpdated": {
      "_id": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": ["4"],
      "important": true,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": true,
      "protected": true,
      "receivedBy": [Account],
      "receivedByIds": ["4"],
      "removed": true,
      "replyTo": ChatMessage,
      "replyToId": 4,
      "seenBy": [Account],
      "seenByIds": [4],
      "system": true,
      "text": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

chatRoomUpdated

Response

Returns a ChatRoom

Arguments
NameDescription
chatRoomIds - [ID!]!
ignoreSender - BooleanDefault = true

Example

Query
subscription ChatRoomUpdated(
  $chatRoomIds: [ID!]!,
  $ignoreSender: Boolean
) {
  chatRoomUpdated(
    chatRoomIds: $chatRoomIds,
    ignoreSender: $ignoreSender
  ) {
    _id
    accessControl {
      ...ChatRoomAccessControlFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    canSendMessage
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    importantMessages {
      ...ChatRoomImportantMessageFragment
    }
    lastMessage {
      ...ChatMessageFragment
    }
    name
    previewedBy {
      ...AccountFragment
    }
    previewedByIds
    protected
    room {
      ...RoomFragment
    }
    roomId
    system
    type
    unreadMessages
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"chatRoomIds": [4], "ignoreSender": true}
Response
{
  "data": {
    "chatRoomUpdated": {
      "_id": 4,
      "accessControl": [ChatRoomAccessControl],
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "canSendMessage": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "importantMessages": ChatRoomImportantMessage,
      "lastMessage": ChatMessage,
      "name": "abc123",
      "previewedBy": [Account],
      "previewedByIds": ["4"],
      "protected": true,
      "room": Room,
      "roomId": "xyz789",
      "system": true,
      "type": "GROUP_CHAT",
      "unreadMessages": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

commentCreated

this is only suited for tree style comments. use commentCreatedV2
Response

Returns a Comment

Arguments
NameDescription
ignoreSender - BooleanDefault = true
parentIds - [ID]
postIds - [ID]

Example

Query
subscription CommentCreated(
  $ignoreSender: Boolean,
  $parentIds: [ID],
  $postIds: [ID]
) {
  commentCreated(
    ignoreSender: $ignoreSender,
    parentIds: $parentIds,
    postIds: $postIds
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "ignoreSender": true,
  "parentIds": [4],
  "postIds": ["4"]
}
Response
{
  "data": {
    "commentCreated": {
      "_id": 4,
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": [4],
      "post": Post,
      "postId": "4",
      "rootReplies": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

commentCreatedV2

Response

Returns a Comment

Arguments
NameDescription
ignoreSender - BooleanDefault = true
parentIds - [ID]
postIds - [ID]

Example

Query
subscription CommentCreatedV2(
  $ignoreSender: Boolean,
  $parentIds: [ID],
  $postIds: [ID]
) {
  commentCreatedV2(
    ignoreSender: $ignoreSender,
    parentIds: $parentIds,
    postIds: $postIds
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{
  "ignoreSender": true,
  "parentIds": ["4"],
  "postIds": ["4"]
}
Response
{
  "data": {
    "commentCreatedV2": {
      "_id": "4",
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": "4",
      "parentsTree": [Comment],
      "parentsTreeIds": [4],
      "post": Post,
      "postId": "4",
      "rootReplies": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

commentDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription CommentDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  commentDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": ["4"]}
Response
{"data": {"commentDeleted": "4"}}

commentUpdated

use commentUpdatedV2 instead
Response

Returns a Comment

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription CommentUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  commentUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "commentUpdated": {
      "_id": "4",
      "content": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": "4",
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": "4",
      "rootReplies": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

commentUpdatedV2

Response

Returns a Comment

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription CommentUpdatedV2(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  commentUpdatedV2(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "commentUpdatedV2": {
      "_id": "4",
      "content": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": [4],
      "post": Post,
      "postId": 4,
      "rootReplies": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

commentsUpdated

Response

Returns a Comment

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription CommentsUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  commentsUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    content
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    mentions {
      ...CommentMentionFragment
    }
    parent {
      ...CommentFragment
    }
    parentId
    parentsTree {
      ...CommentFragment
    }
    parentsTreeIds
    post {
      ...PostFragment
    }
    postId
    rootReplies
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "commentsUpdated": {
      "_id": "4",
      "content": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "mentions": [CommentMention],
      "parent": Comment,
      "parentId": 4,
      "parentsTree": [Comment],
      "parentsTreeIds": ["4"],
      "post": Post,
      "postId": 4,
      "rootReplies": 987,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementUpdated

Response

Returns an Element

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription ElementUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  elementUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "elementUpdated": {
      "_id": 4,
      "arLocked": false,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "elements": [Element],
      "elementsCount": 987,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": 4,
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": "4",
      "name": "abc123",
      "needsApproval": false,
      "parent": Element,
      "parentId": 4,
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": "4",
      "protected": false,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": "4",
      "system": false,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 987,
      "template": ElementTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

elementsCreated

Response

Returns an Element

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription ElementsCreated($ignoreSender: Boolean) {
  elementsCreated(ignoreSender: $ignoreSender) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "elementsCreated": {
      "_id": "4",
      "arLocked": false,
      "awaitingApproval": true,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "elements": [Element],
      "elementsCount": 123,
      "icon": "xyz789",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": "4",
      "name": "xyz789",
      "needsApproval": false,
      "parent": Element,
      "parentId": "4",
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": 4,
      "protected": true,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": 4,
      "system": false,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 123,
      "template": ElementTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

elementsDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription ElementsDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  elementsDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": ["4"]}
Response
{"data": {"elementsDeleted": "4"}}

elementsUpdated

Response

Returns an Element

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription ElementsUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  elementsUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    arLocked
    awaitingApproval
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    elements {
      ...ElementFragment
    }
    elementsCount
    icon
    image {
      ...FileFragment
    }
    imageDetails {
      ...ElementImageDetailFragment
    }
    imageId
    inputs {
      ...InputFragment
    }
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...ElementLogFragment
    }
    marker {
      ...MarkerFragment
    }
    markerId
    name
    needsApproval
    parent {
      ...ElementFragment
    }
    parentId
    parentsTree {
      ...ElementFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    profile {
      ...ProfileFragment
    }
    profileId
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    site {
      ...SiteFragment
    }
    siteId
    system
    tags {
      ...ElementTagFragment
    }
    tasks {
      ...TaskFragment
    }
    tasksCount
    template {
      ...ElementTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "elementsUpdated": {
      "_id": "4",
      "arLocked": true,
      "awaitingApproval": false,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "elements": [Element],
      "elementsCount": 987,
      "icon": "abc123",
      "image": File,
      "imageDetails": ElementImageDetail,
      "imageId": "4",
      "inputs": [Input],
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [ElementLog],
      "marker": Marker,
      "markerId": 4,
      "name": "xyz789",
      "needsApproval": true,
      "parent": Element,
      "parentId": 4,
      "parentsTree": [Element],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "profile": Profile,
      "profileId": "4",
      "protected": false,
      "responsibles": Responsibles,
      "site": Site,
      "siteId": 4,
      "system": false,
      "tags": [ElementTag],
      "tasks": [Task],
      "tasksCount": 123,
      "template": ElementTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueCatalogFolderUpdated

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueCatalogFolderUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  issueCatalogFolderUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "ignoreSender": true}
Response
{
  "data": {
    "issueCatalogFolderUpdated": {
      "_id": "4",
      "context": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 987,
      "issueCatalogsCount": 987,
      "name": "xyz789",
      "parent": IssueCatalogFolder,
      "parentId": 4,
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogFoldersCreated

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueCatalogFoldersCreated($ignoreSender: Boolean) {
  issueCatalogFoldersCreated(ignoreSender: $ignoreSender) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "issueCatalogFoldersCreated": {
      "_id": "4",
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 987,
      "name": "xyz789",
      "parent": IssueCatalogFolder,
      "parentId": 4,
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": ["4"],
      "protected": false,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogFoldersDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueCatalogFoldersDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueCatalogFoldersDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "issueCatalogFoldersDeleted": "4"
  }
}

issueCatalogFoldersUpdated

Response

Returns an IssueCatalogFolder

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueCatalogFoldersUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueCatalogFoldersUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    context
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    issueCatalogFoldersCount
    issueCatalogsCount
    name
    parent {
      ...IssueCatalogFolderFragment
    }
    parentId
    parentsTree {
      ...IssueCatalogFolderFragment
    }
    parentsTreeIds
    protected
    system
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": ["4"]}
Response
{
  "data": {
    "issueCatalogFoldersUpdated": {
      "_id": 4,
      "context": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "issueCatalogFoldersCount": 123,
      "issueCatalogsCount": 123,
      "name": "xyz789",
      "parent": IssueCatalogFolder,
      "parentId": "4",
      "parentsTree": [IssueCatalogFolder],
      "parentsTreeIds": ["4"],
      "protected": true,
      "system": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogUpdated

Response

Returns an IssueCatalog

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueCatalogUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  issueCatalogUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "issueCatalogUpdated": {
      "_id": 4,
      "acknowledgeRequired": false,
      "allowTracking": true,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "materialLegendAndComments": false,
      "name": "abc123",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogReport,
      "requestDescription": true,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "stateMachine": StateMachine,
      "stateMachineId": "4",
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "totalExecutionInstances": 123,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

issueCatalogsCreated

Response

Returns an IssueCatalog

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueCatalogsCreated($ignoreSender: Boolean) {
  issueCatalogsCreated(ignoreSender: $ignoreSender) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "issueCatalogsCreated": {
      "_id": "4",
      "acknowledgeRequired": true,
      "allowTracking": true,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": ["4"],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": true,
      "folder": IssueCatalogFolder,
      "folderId": 4,
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": false,
      "name": "xyz789",
      "needsApproval": false,
      "paperForm": IssueCatalogPaperForm,
      "protected": false,
      "remarksOnTasks": false,
      "report": IssueCatalogReport,
      "requestDescription": true,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": false,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": false,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": 4,
      "toolLegendAndComments": false,
      "totalExecutionInstances": 123,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueCatalogsDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueCatalogsDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueCatalogsDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{"data": {"issueCatalogsDeleted": 4}}

issueCatalogsUpdated

Response

Returns an IssueCatalog

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueCatalogsUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueCatalogsUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    acknowledgeRequired
    allowTracking
    approval {
      ...IssueCatalogApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueCatalogAssignedSkillFragment
    }
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    filterTasksByLabels
    folder {
      ...IssueCatalogFolderFragment
    }
    folderId
    glarPrefix
    inputs {
      ...InputFragment
    }
    isActive
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    materialLegendAndComments
    name
    needsApproval
    paperForm {
      ...IssueCatalogPaperFormFragment
    }
    protected
    remarksOnTasks
    report {
      ...IssueCatalogReportFragment
    }
    requestDescription
    scheduleTasks
    scheduler {
      ...IssueCatalogSchedulerFragment
    }
    scoreInputs
    sequential
    site {
      ...SiteFragment
    }
    siteId
    stateMachine {
      ...StateMachineFragment
    }
    stateMachineId
    system
    taskMappings {
      ...TaskMappingFragment
    }
    tasksFallbackStateMachine {
      ...StateMachineFragment
    }
    tasksFallbackStateMachineId
    template {
      ...IssueTemplateFragment
    }
    templateId
    toolLegendAndComments
    totalExecutionInstances
    updateLog {
      ...IssueCatalogUpdateLogFragment
    }
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "issueCatalogsUpdated": {
      "_id": 4,
      "acknowledgeRequired": true,
      "allowTracking": false,
      "approval": IssueCatalogApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": ["4"],
      "assignedSkills": [IssueCatalogAssignedSkill],
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["xyz789"],
      "filterTasksByLabels": false,
      "folder": IssueCatalogFolder,
      "folderId": "4",
      "glarPrefix": "xyz789",
      "inputs": [Input],
      "isActive": true,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsApproval": true,
      "paperForm": IssueCatalogPaperForm,
      "protected": true,
      "remarksOnTasks": true,
      "report": IssueCatalogReport,
      "requestDescription": false,
      "scheduleTasks": false,
      "scheduler": [IssueCatalogScheduler],
      "scoreInputs": true,
      "sequential": true,
      "site": Site,
      "siteId": 4,
      "stateMachine": StateMachine,
      "stateMachineId": 4,
      "system": true,
      "taskMappings": [TaskMapping],
      "tasksFallbackStateMachine": StateMachine,
      "tasksFallbackStateMachineId": "4",
      "template": IssueTemplate,
      "templateId": "4",
      "toolLegendAndComments": false,
      "totalExecutionInstances": 123,
      "updateLog": [IssueCatalogUpdateLog],
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

issueInstanceUpdated

Response

Returns an IssueInstance

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueInstanceUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  issueInstanceUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"_id": 4, "ignoreSender": true}
Response
{
  "data": {
    "issueInstanceUpdated": {
      "_id": 4,
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 123,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": true,
      "customArConfiguration": false,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 987,
      "element": Element,
      "elementId": "4",
      "emailsToSendReport": ["xyz789"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 123,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": [4],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": ["4"],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "abc123",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": 4,
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": false,
      "needsApproval": true,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["abc123"],
      "protected": false,
      "remarksOnTasks": false,
      "requestDescription": false,
      "rootElement": Element,
      "rootElementId": "4",
      "rootSite": Site,
      "rootSiteId": "4",
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": [4],
      "sequential": true,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 123,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": true,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": 4
    }
  }
}

issueInstancesUpdated

Response

Returns an IssueInstance

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueInstancesUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueInstancesUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    acknowledgeRequired
    acknowledgedAccounts {
      ...AccountFragment
    }
    acknowledgedAccountsIds
    allTaskScore {
      ...IssueTasksScoreFragment
    }
    allowTracking
    approval {
      ...IssueInstanceApprovalFragment
    }
    assignedAccounts {
      ...AccountFragment
    }
    assignedAccountsIds
    assignedLabelValues {
      ...LabelValueFragment
    }
    assignedLabelValuesIds
    assignedSkills {
      ...IssueInstanceAssignedSkillFragment
    }
    catalog {
      ...IssueCatalogFragment
    }
    catalogId
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    closedAt
    completedTasksCount
    conflictHandler
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    createdBySystem
    customArConfiguration
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    dueDate
    dueDateStamp
    duration
    element {
      ...ElementFragment
    }
    elementId
    emailsToSendReport
    endDate
    estimatedDuration
    estimatedDurationUnit
    executedBy {
      ...AccountFragment
    }
    executedByIds
    failResponses
    filterTasksLabelValues {
      ...LabelValueFragment
    }
    filterTasksLabelValuesIds
    finishedByConditionalInput
    frequency {
      ...IssueInstanceFrequencyFragment
    }
    glarID
    glarPrefix
    inputs {
      ...InputFragment
    }
    isLocked
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    lockedBy {
      ...AccountFragment
    }
    lockedById
    markers {
      ...MarkerFragment
    }
    materialLegendAndComments
    name
    needsAcknowledge
    needsApproval
    note
    parentElement {
      ...ElementFragment
    }
    parentElementId
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    possibleActions
    protected
    remarksOnTasks
    requestDescription
    rootElement {
      ...ElementFragment
    }
    rootElementId
    rootSite {
      ...SiteFragment
    }
    rootSiteId
    scoreInputs
    seenBy {
      ...AccountFragment
    }
    seenByIds
    sequential
    site {
      ...SiteFragment
    }
    siteId
    startDate
    stateMachineInstance {
      ...StateMachineInstanceFragment
    }
    system
    taskGroups {
      ...TaskGroupFragment
    }
    timesheetCount
    timesheets {
      ...TimesheetFragment
    }
    toolAssociations {
      ...IssueInstanceToolAssociationFragment
    }
    toolItems {
      ...ToolItemFragment
    }
    toolItemsIds
    toolLegendAndComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    usersNotBlocked
    workPackage {
      ...JobDataWorkPackageFragment
    }
    workPackageId
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "issueInstancesUpdated": {
      "_id": "4",
      "acknowledgeRequired": false,
      "acknowledgedAccounts": [Account],
      "acknowledgedAccountsIds": ["4"],
      "allTaskScore": IssueTasksScore,
      "allowTracking": false,
      "approval": IssueInstanceApproval,
      "assignedAccounts": [Account],
      "assignedAccountsIds": [4],
      "assignedLabelValues": [LabelValue],
      "assignedLabelValuesIds": [4],
      "assignedSkills": [IssueInstanceAssignedSkill],
      "catalog": IssueCatalog,
      "catalogId": "4",
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "closedAt": "2007-12-03T10:15:30Z",
      "completedTasksCount": 987,
      "conflictHandler": "keepBoth",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "createdBySystem": false,
      "customArConfiguration": true,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "dueDate": "2007-12-03T10:15:30Z",
      "dueDateStamp": "2007-12-03T10:15:30Z",
      "duration": 123,
      "element": Element,
      "elementId": 4,
      "emailsToSendReport": ["abc123"],
      "endDate": "2007-12-03T10:15:30Z",
      "estimatedDuration": 987,
      "estimatedDurationUnit": "hours",
      "executedBy": [Account],
      "executedByIds": ["4"],
      "failResponses": 123,
      "filterTasksLabelValues": [LabelValue],
      "filterTasksLabelValuesIds": [4],
      "finishedByConditionalInput": false,
      "frequency": IssueInstanceFrequency,
      "glarID": "xyz789",
      "glarPrefix": "abc123",
      "inputs": [Input],
      "isLocked": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "lockedBy": Account,
      "lockedById": "4",
      "markers": [Marker],
      "materialLegendAndComments": true,
      "name": "xyz789",
      "needsAcknowledge": true,
      "needsApproval": false,
      "note": "abc123",
      "parentElement": Element,
      "parentElementId": "4",
      "parentSite": Site,
      "parentSiteId": 4,
      "possibleActions": ["xyz789"],
      "protected": true,
      "remarksOnTasks": false,
      "requestDescription": true,
      "rootElement": Element,
      "rootElementId": 4,
      "rootSite": Site,
      "rootSiteId": 4,
      "scoreInputs": false,
      "seenBy": [Account],
      "seenByIds": ["4"],
      "sequential": false,
      "site": Site,
      "siteId": "4",
      "startDate": "2007-12-03T10:15:30Z",
      "stateMachineInstance": StateMachineInstance,
      "system": true,
      "taskGroups": [TaskGroup],
      "timesheetCount": 987,
      "timesheets": [Timesheet],
      "toolAssociations": [IssueInstanceToolAssociation],
      "toolItems": [ToolItem],
      "toolItemsIds": ["4"],
      "toolLegendAndComments": false,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "usersNotBlocked": [4],
      "workPackage": JobDataWorkPackage,
      "workPackageId": "4"
    }
  }
}

issueTemplateUpdated

Response

Returns an IssueTemplate

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueTemplateUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  issueTemplateUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"_id": 4, "ignoreSender": true}
Response
{
  "data": {
    "issueTemplateUpdated": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": "4",
      "system": false,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4",
      "variant": IssueTemplateVariant
    }
  }
}

issueTemplatesCreated

Response

Returns an IssueTemplate

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription IssueTemplatesCreated($ignoreSender: Boolean) {
  issueTemplatesCreated(ignoreSender: $ignoreSender) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "issueTemplatesCreated": {
      "_id": "4",
      "archived": true,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateFrame,
      "icon": "xyz789",
      "protected": true,
      "selectedVariant": 4,
      "system": true,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

issueTemplatesDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueTemplatesDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueTemplatesDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": ["4"]}
Response
{"data": {"issueTemplatesDeleted": "4"}}

issueTemplatesUpdated

Response

Returns an IssueTemplate

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription IssueTemplatesUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  issueTemplatesUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    archived
    archivedAt
    archivedBy {
      ...AccountFragment
    }
    archivedById
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    favorites {
      ...IssueTemplateFavoriteFragment
    }
    folder {
      ...IssueTemplateFolderFragment
    }
    folderId
    frame {
      ...IssueTemplateFrameFragment
    }
    icon
    protected
    selectedVariant
    system
    taskTemplateGroups {
      ...TaskTemplateGroupFragment
    }
    timeMapColumns {
      ...IssueTemplateTimeMapColumnFragment
    }
    timeTableFilters {
      ...IssueTemplateTimeTableFilterFragment
    }
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
    variant {
      ...IssueTemplateVariantFragment
    }
  }
}
Variables
{"ignoreSender": true, "where": ["4"]}
Response
{
  "data": {
    "issueTemplatesUpdated": {
      "_id": 4,
      "archived": false,
      "archivedAt": "2007-12-03T10:15:30Z",
      "archivedBy": Account,
      "archivedById": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "favorites": [IssueTemplateFavorite],
      "folder": IssueTemplateFolder,
      "folderId": "4",
      "frame": IssueTemplateFrame,
      "icon": "abc123",
      "protected": true,
      "selectedVariant": 4,
      "system": true,
      "taskTemplateGroups": [TaskTemplateGroup],
      "timeMapColumns": [IssueTemplateTimeMapColumn],
      "timeTableFilters": [IssueTemplateTimeTableFilter],
      "title": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4,
      "variant": IssueTemplateVariant
    }
  }
}

jobUpdated

Response

Returns a Job

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription JobUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  jobUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "jobUpdated": {
      "_id": 4,
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "xyz789",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

jobsUpdated

Response

Returns a Job

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription JobsUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  jobsUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    data {
      ...JobDataFragment
    }
    failReason
    failed
    lastRunAt
    name
    nextRunAt
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "jobsUpdated": {
      "_id": "4",
      "data": JobData,
      "failReason": "abc123",
      "failed": true,
      "lastRunAt": "2007-12-03T10:15:30Z",
      "name": "abc123",
      "nextRunAt": "2007-12-03T10:15:30Z"
    }
  }
}

onChatMessage

This subscription is deprecated. Please use chatMessageCreated and chatMessageUpdated.
Response

Returns a ChatMessage

Arguments
NameDescription
chatRoomId - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription OnChatMessage(
  $chatRoomId: ID!,
  $ignoreSender: Boolean
) {
  onChatMessage(
    chatRoomId: $chatRoomId,
    ignoreSender: $ignoreSender
  ) {
    _id
    chatRoom {
      ...ChatRoomFragment
    }
    chatRoomId
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    important
    infoMessage {
      ...ChatMessageInfoMessageFragment
    }
    mentions {
      ...ChatMessageMentionFragment
    }
    pinned
    protected
    receivedBy {
      ...AccountFragment
    }
    receivedByIds
    removed
    replyTo {
      ...ChatMessageFragment
    }
    replyToId
    seenBy {
      ...AccountFragment
    }
    seenByIds
    system
    text
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"chatRoomId": "4", "ignoreSender": true}
Response
{
  "data": {
    "onChatMessage": {
      "_id": 4,
      "chatRoom": ChatRoom,
      "chatRoomId": "4",
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "files": [File],
      "filesIds": ["4"],
      "important": true,
      "infoMessage": ChatMessageInfoMessage,
      "mentions": [ChatMessageMention],
      "pinned": false,
      "protected": false,
      "receivedBy": [Account],
      "receivedByIds": [4],
      "removed": false,
      "replyTo": ChatMessage,
      "replyToId": "4",
      "seenBy": [Account],
      "seenByIds": ["4"],
      "system": false,
      "text": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

onRequestChange

Response

Returns a Request

Arguments
NameDescription
requestId - ID!

Example

Query
subscription OnRequestChange($requestId: ID!) {
  onRequestChange(requestId: $requestId) {
    _id
    approved {
      ...AccountFragment
    }
    approvedIds
    approvers {
      ...AccountFragment
    }
    approversIds
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    inputs {
      ...InputFragment
    }
    lastFollowedUp
    limitDate
    logs {
      ...RequestLogFragment
    }
    rejected {
      ...AccountFragment
    }
    rejectedIds
    status
    template {
      ...RequestTemplateFragment
    }
    templateId
    title
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"requestId": "4"}
Response
{
  "data": {
    "onRequestChange": {
      "_id": 4,
      "approved": [Account],
      "approvedIds": [4],
      "approvers": [Account],
      "approversIds": [4],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "inputs": [Input],
      "lastFollowedUp": "2007-12-03T10:15:30Z",
      "limitDate": "2007-12-03T10:15:30Z",
      "logs": [RequestLog],
      "rejected": [Account],
      "rejectedIds": [4],
      "status": "Approved",
      "template": RequestTemplate,
      "templateId": "4",
      "title": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

onRequestLog

Response

Returns [RequestLog]

Arguments
NameDescription
requestId - ID!
since - DateTime

Example

Query
subscription OnRequestLog(
  $requestId: ID!,
  $since: DateTime
) {
  onRequestLog(
    requestId: $requestId,
    since: $since
  ) {
    _id
    action
    by {
      ...AccountFragment
    }
    createdAt
    files
    message
    status
    to {
      ...AccountFragment
    }
  }
}
Variables
{
  "requestId": 4,
  "since": "2007-12-03T10:15:30Z"
}
Response
{
  "data": {
    "onRequestLog": [
      {
        "_id": 4,
        "action": "ADDED_APPROVER",
        "by": Account,
        "createdAt": "2007-12-03",
        "files": ["4"],
        "message": "abc123",
        "status": "Approved",
        "to": Account
      }
    ]
  }
}

postCreated

Response

Returns a Post

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription PostCreated($ignoreSender: Boolean) {
  postCreated(ignoreSender: $ignoreSender) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "postCreated": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "abc123",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "likes": [Account],
      "likesIds": ["4"],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "abc123",
      "totalComments": 987,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

postDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription PostDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  postDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{"data": {"postDeleted": 4}}

postUpdated

Response

Returns a Post

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription PostUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  postUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": 4, "ignoreSender": true}
Response
{
  "data": {
    "postUpdated": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": 4,
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "abc123",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": [4],
      "hasSeen": false,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "likes": [Account],
      "likesIds": [4],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "xyz789",
      "totalComments": 987,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

postsUpdated

Response

Returns a Post

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription PostsUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  postsUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    editedAt
    files {
      ...FileFragment
    }
    filesIds
    hasSeen
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    likes {
      ...AccountFragment
    }
    likesIds
    mentions {
      ...PostMentionFragment
    }
    seenBy {
      ...AccountFragment
    }
    subject
    totalComments
    totalRootComments
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "postsUpdated": {
      "_id": 4,
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "editedAt": "2007-12-03T10:15:30Z",
      "files": [File],
      "filesIds": ["4"],
      "hasSeen": true,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "likes": [Account],
      "likesIds": [4],
      "mentions": [PostMention],
      "seenBy": [Account],
      "subject": "xyz789",
      "totalComments": 123,
      "totalRootComments": 123,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

pushNotifications

Response

Returns a PushNotification

Example

Query
subscription PushNotifications {
  pushNotifications {
    _id
    acknowledged
    body
    createdAt
    data {
      ...PushNotificationDatumFragment
    }
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    files {
      ...FileFragment
    }
    filesIds
    protected
    system
    title
    to {
      ...AccountFragment
    }
    toId
    updatedAt
    viewed
  }
}
Response
{
  "data": {
    "pushNotifications": {
      "_id": "4",
      "acknowledged": false,
      "body": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "data": PushNotificationDatum,
      "deleted": false,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "files": [File],
      "filesIds": ["4"],
      "protected": false,
      "system": true,
      "title": "xyz789",
      "to": Account,
      "toId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "viewed": false
    }
  }
}

requestTemplatesPagination

Response

Returns a RequestTemplateConnection!

Arguments
NameDescription
limit - IntDefault = 20
orderBy - [RequestTemplateOrderByInput]
where - RequestTemplateWhereInput!

Example

Query
subscription RequestTemplatesPagination(
  $limit: Int,
  $orderBy: [RequestTemplateOrderByInput],
  $where: RequestTemplateWhereInput!
) {
  requestTemplatesPagination(
    limit: $limit,
    orderBy: $orderBy,
    where: $where
  ) {
    connectionId
    nodes {
      ...RequestTemplateFragment
    }
    pageInfo {
      ...RequestTemplatePageInfoFragment
    }
  }
}
Variables
{
  "limit": 20,
  "orderBy": ["_id_ASC"],
  "where": RequestTemplateWhereInput
}
Response
{
  "data": {
    "requestTemplatesPagination": {
      "connectionId": "xyz789",
      "nodes": [RequestTemplate],
      "pageInfo": RequestTemplatePageInfo
    }
  }
}

siteUpdated

Response

Returns a Site

Arguments
NameDescription
_id - ID!
ignoreSender - BooleanDefault = true

Example

Query
subscription SiteUpdated(
  $_id: ID!,
  $ignoreSender: Boolean
) {
  siteUpdated(
    _id: $_id,
    ignoreSender: $ignoreSender
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"_id": "4", "ignoreSender": true}
Response
{
  "data": {
    "siteUpdated": {
      "_id": "4",
      "accessToSites": [Site],
      "actionsCount": 987,
      "awaitingApproval": false,
      "coordinates": [123.45],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": 4,
      "description": "xyz789",
      "devicesCount": 987,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": [4],
      "log": [SiteLog],
      "myCalendarCount": 123,
      "myIssuesCount": 123,
      "name": "abc123",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": 4,
      "parentsTree": [Site],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "protected": false,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 123,
      "system": false,
      "template": SiteTemplate,
      "templateId": 4,
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

sitesCreated

Response

Returns a Site

Arguments
NameDescription
ignoreSender - BooleanDefault = true

Example

Query
subscription SitesCreated($ignoreSender: Boolean) {
  sitesCreated(ignoreSender: $ignoreSender) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true}
Response
{
  "data": {
    "sitesCreated": {
      "_id": 4,
      "accessToSites": [Site],
      "actionsCount": 123,
      "awaitingApproval": true,
      "coordinates": [123.45],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "devicesCount": 123,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 987,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [SiteLog],
      "myCalendarCount": 987,
      "myIssuesCount": 123,
      "name": "abc123",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": "4",
      "parentsTree": [Site],
      "parentsTreeIds": [4],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": 4,
      "pendingInputs": [Input],
      "protected": false,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": false,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": 4
    }
  }
}

sitesDeleted

Response

Returns an ID

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription SitesDeleted(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  sitesDeleted(
    ignoreSender: $ignoreSender,
    where: $where
  )
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{"data": {"sitesDeleted": 4}}

sitesUpdated

Response

Returns a Site

Arguments
NameDescription
ignoreSender - BooleanDefault = true
where - [ID!]!

Example

Query
subscription SitesUpdated(
  $ignoreSender: Boolean,
  $where: [ID!]!
) {
  sitesUpdated(
    ignoreSender: $ignoreSender,
    where: $where
  ) {
    _id
    accessToSites {
      ...SiteFragment
    }
    actionsCount
    awaitingApproval
    coordinates
    createdAt
    createdBy {
      ...AccountFragment
    }
    createdById
    deleted
    deletedAt
    deletedBy {
      ...AccountFragment
    }
    deletedById
    description
    devicesCount
    elements {
      ...ElementFragment
    }
    elementsCount
    inputs {
      ...InputFragment
    }
    isRoot
    issues {
      ...IssueInstanceFragment
    }
    issuesCount
    labelValues {
      ...LabelValueFragment
    }
    labelValuesIds
    log {
      ...SiteLogFragment
    }
    myCalendarCount
    myIssuesCount
    name
    nearbySites {
      ...SiteFragment
    }
    needsApproval
    parent {
      ...SiteFragment
    }
    parentId
    parentsTree {
      ...SiteFragment
    }
    parentsTreeIds
    pendingAt
    pendingBy {
      ...AccountFragment
    }
    pendingById
    pendingInputs {
      ...InputFragment
    }
    protected
    responsibles {
      ...ResponsiblesFragment
    }
    sites {
      ...SiteFragment
    }
    sitesCount
    system
    template {
      ...SiteTemplateFragment
    }
    templateId
    updatedAt
    updatedBy {
      ...AccountFragment
    }
    updatedById
  }
}
Variables
{"ignoreSender": true, "where": [4]}
Response
{
  "data": {
    "sitesUpdated": {
      "_id": "4",
      "accessToSites": [Site],
      "actionsCount": 987,
      "awaitingApproval": true,
      "coordinates": [987.65],
      "createdAt": "2007-12-03T10:15:30Z",
      "createdBy": Account,
      "createdById": "4",
      "deleted": true,
      "deletedAt": "2007-12-03T10:15:30Z",
      "deletedBy": Account,
      "deletedById": "4",
      "description": "xyz789",
      "devicesCount": 123,
      "elements": [Element],
      "elementsCount": 123,
      "inputs": [Input],
      "isRoot": true,
      "issues": [IssueInstance],
      "issuesCount": 123,
      "labelValues": [LabelValue],
      "labelValuesIds": ["4"],
      "log": [SiteLog],
      "myCalendarCount": 987,
      "myIssuesCount": 987,
      "name": "xyz789",
      "nearbySites": [Site],
      "needsApproval": true,
      "parent": Site,
      "parentId": "4",
      "parentsTree": [Site],
      "parentsTreeIds": ["4"],
      "pendingAt": "2007-12-03",
      "pendingBy": Account,
      "pendingById": "4",
      "pendingInputs": [Input],
      "protected": false,
      "responsibles": Responsibles,
      "sites": [Site],
      "sitesCount": 987,
      "system": true,
      "template": SiteTemplate,
      "templateId": "4",
      "updatedAt": "2007-12-03T10:15:30Z",
      "updatedBy": Account,
      "updatedById": "4"
    }
  }
}

subscribeAccountActivity

Description

Subscribes to incoming activity timestamps

Response

Returns an AccountActivityTimestamp

Arguments
NameDescription
accountIds - [ID!]!
ignoreSender - BooleanDefault = true

Example

Query
subscription SubscribeAccountActivity(
  $accountIds: [ID!]!,
  $ignoreSender: Boolean
) {
  subscribeAccountActivity(
    accountIds: $accountIds,
    ignoreSender: $ignoreSender
  ) {
    _id
    lastActiveDate
  }
}
Variables
{"accountIds": [4], "ignoreSender": true}
Response
{
  "data": {
    "subscribeAccountActivity": {
      "_id": "4",
      "lastActiveDate": 987.65
    }
  }
}

Types

AccessToken

Description

Represents a AccessToken

Fields
Field NameDescription
_id - String!
account - Account!
accountId - ID!
assistExp - Float
assistToken - String
createdAt - DateTime
exp - Float
impersonatedBy - Account
impersonatedById - ID
redirectUrl - String
updatedAt - DateTime
Example
{
  "_id": "abc123",
  "account": Account,
  "accountId": 4,
  "assistExp": 123.45,
  "assistToken": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "exp": 123.45,
  "impersonatedBy": Account,
  "impersonatedById": "4",
  "redirectUrl": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z"
}

Account

Description

Represents a Account

Fields
Field NameDescription
ARUser - Boolean
_id - ID
actions - Int
agoraUid - StringAgora UID
authorizedSites - [Site]
authorizedSitesFlattened - [Site]
authorizedSitesIds - [ID]
chat - Int
clientId - IDClient number use tenantId instead
clientMixedRealityEnabled - BooleanClient mixedReality is enabled
createdAt - DateTime
createdBy - Account
createdById - ID
defaultTimeZone - String
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
email - String
feed - Int
filters - [AccountFilter]
firstLogin - Boolean
folder - AccountFolderAccount Folder
folderId - IDAccount Folder
gps - [Float]
impersonatedBy - ID
impersonatedById - ID
inputs - [Input]
isActive - BooleanAccount is active or not active
isContact - Boolean
isPlatformAdmin - Boolean
issues - Int
labelValues - [LabelValue]
labelValuesIds - [ID]
lastLogin - DateTime
mobileTabs - [String]
myClearances - [MyClearances]
name - String
onBoarding - AccountOnBoarding
photo - StringBase64
preferences - AccountPreferences
protected - Boolean
recoveryEmail - String
requiresPasswordReset - Boolean
roles - [Role]
rolesIds - [ID]
seenFeatures - JSON
ssoLogin - Boolean
system - Boolean
tabs - [Tab]
teams - [Team]
template - AccountTemplateAccount Template
templateId - IDAccount Template
tenantId - IDTenant number
tutorialCompleted - BooleanSession tutorial is completed or not
updatedAt - DateTime
updatedBy - Account
updatedById - ID
username - String
Example
{
  "ARUser": true,
  "_id": 4,
  "actions": 123,
  "agoraUid": "abc123",
  "authorizedSites": [Site],
  "authorizedSitesFlattened": [Site],
  "authorizedSitesIds": [4],
  "chat": 987,
  "clientId": "4",
  "clientMixedRealityEnabled": true,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "defaultTimeZone": "abc123",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "email": "abc123",
  "feed": 987,
  "filters": [AccountFilter],
  "firstLogin": true,
  "folder": AccountFolder,
  "folderId": 4,
  "gps": [987.65],
  "impersonatedBy": 4,
  "impersonatedById": "4",
  "inputs": [Input],
  "isActive": false,
  "isContact": false,
  "isPlatformAdmin": false,
  "issues": 987,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "lastLogin": "2007-12-03T10:15:30Z",
  "mobileTabs": ["xyz789"],
  "myClearances": [MyClearances],
  "name": "abc123",
  "onBoarding": AccountOnBoarding,
  "photo": "abc123",
  "preferences": AccountPreferences,
  "protected": true,
  "recoveryEmail": "xyz789",
  "requiresPasswordReset": true,
  "roles": [Role],
  "rolesIds": ["4"],
  "seenFeatures": {},
  "ssoLogin": true,
  "system": false,
  "tabs": [Tab],
  "teams": [Team],
  "template": AccountTemplate,
  "templateId": "4",
  "tenantId": 4,
  "tutorialCompleted": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4,
  "username": "xyz789"
}

AccountActivityTimestamp

Fields
Field NameDescription
_id - ID!
lastActiveDate - Floatreturns in unix time
Example
{"_id": "4", "lastActiveDate": 987.65}

AccountCreateInput

Description

Represents a AccountCreateInput

Fields
Input FieldDescription
ARUser - Boolean
actions - Int
agoraUid - StringAgora UID
authorizedSites - [ID]
chat - Int
email - String
filters - [AccountFilterCreateInput]
firstLogin - Boolean
folder - IDAccount Folder
inputs - [InputCreateInput]
isActive - BooleanAccount is active or not active
issues - Int
labelValues - [ID]
lastLogin - DateTime
name - String
onBoarding - OnBoardingInput
password - String!
photo - Upload
preferences - AccountPreferencesCreateInput
recoveryEmail - String
requiresPasswordReset - Boolean
roles - [ID]
seenFeatures - JSON
template - IDAccount Template
tutorialCompleted - BooleanSession tutorial is completed or not
username - String
Example
{
  "ARUser": true,
  "actions": 123,
  "agoraUid": "xyz789",
  "authorizedSites": [4],
  "chat": 123,
  "email": "xyz789",
  "filters": [AccountFilterCreateInput],
  "firstLogin": false,
  "folder": 4,
  "inputs": [InputCreateInput],
  "isActive": false,
  "issues": 123,
  "labelValues": ["4"],
  "lastLogin": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "onBoarding": OnBoardingInput,
  "password": "xyz789",
  "photo": Upload,
  "preferences": AccountPreferencesCreateInput,
  "recoveryEmail": "abc123",
  "requiresPasswordReset": true,
  "roles": ["4"],
  "seenFeatures": {},
  "template": "4",
  "tutorialCompleted": false,
  "username": "xyz789"
}

AccountFilter

Description

Represents a AccountFilter

Fields
Field NameDescription
_id - ID
active - AccountFilterActive
columns - [String]
context - String
filters - [AccountFilterFilter]
history - AccountFilterHistory
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String
order - String
planned - AccountFilterPlanned
Example
{
  "_id": 4,
  "active": AccountFilterActive,
  "columns": ["xyz789"],
  "context": "abc123",
  "filters": [AccountFilterFilter],
  "history": AccountFilterHistory,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "xyz789",
  "order": "abc123",
  "planned": AccountFilterPlanned
}

AccountFilterActive

Description

Represents a AccountFilterActive

Fields
Field NameDescription
_id - ID
columns - [String]
columnsSize - JSON
Example
{
  "_id": 4,
  "columns": ["xyz789"],
  "columnsSize": {}
}

AccountFilterActiveCreateInput

Description

Represents a AccountFilterActiveCreateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["abc123"], "columnsSize": {}}

AccountFilterActiveUpdateInput

Description

Represents a AccountFilterActiveUpdateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["xyz789"], "columnsSize": {}}

AccountFilterActiveWhereInput

Description

Represents a Where input for: AccountFilterActive

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
columnsSize - JSON
columns_all - [String]Field includes all given values.
columns_eq - [String]Given value is equal to field
columns_exists - Boolean
columns_in - [String]Field includes one of given value.
columns_nin - [String]Field does not include any of the given values.
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "columnsSize": {},
  "columns_all": ["abc123"],
  "columns_eq": ["abc123"],
  "columns_exists": true,
  "columns_in": ["abc123"],
  "columns_nin": ["abc123"]
}

AccountFilterCreateInput

Description

Represents a AccountFilterCreateInput

Fields
Input FieldDescription
active - AccountFilterActiveCreateInput
columns - [String]
context - String
filters - [AccountFilterFilterCreateInput]
history - AccountFilterHistoryCreateInput
labelValues - [ID]
name - String
order - String
planned - AccountFilterPlannedCreateInput
Example
{
  "active": AccountFilterActiveCreateInput,
  "columns": ["xyz789"],
  "context": "abc123",
  "filters": [AccountFilterFilterCreateInput],
  "history": AccountFilterHistoryCreateInput,
  "labelValues": ["4"],
  "name": "xyz789",
  "order": "xyz789",
  "planned": AccountFilterPlannedCreateInput
}

AccountFilterFilter

Description

Represents a AccountFilterFilter

Fields
Field NameDescription
actions - [Action]
actionsIds - [ID]
approvedAccounts - [Account]
approvedAccountsIds - [ID]
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalogs - [IssueCatalog]
catalogsIds - [ID]
created_at - AccountFilterFilterCreated_at
dueDate - AccountFilterFilterDueDate
elements - [Element]
elementsIds - [ID]
executedBy - [Account]
executedByIds - [ID]
expectedTime - [String]
finishDate - AccountFilterFilterFinishDate
frequency - [String]
issues - [IssueInstance]
issuesIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
lastUpdater - [Account]
lastUpdaterIds - [ID]
name - String
operator - String
parentElements - [Element]
parentElementsIds - [ID]
parentSites - [Site]
parentSitesIds - [ID]
rootElements - [Element]
rootElementsIds - [ID]
rootSites - [Site]
rootSitesIds - [ID]
search - String
sites - [Site]
sitesIds - [ID]
state - [String]
status - [String]
updated_at - AccountFilterFilterUpdated_at
Example
{
  "actions": [Action],
  "actionsIds": ["4"],
  "approvedAccounts": [Account],
  "approvedAccountsIds": ["4"],
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "catalogs": [IssueCatalog],
  "catalogsIds": ["4"],
  "created_at": AccountFilterFilterCreated_at,
  "dueDate": AccountFilterFilterDueDate,
  "elements": [Element],
  "elementsIds": [4],
  "executedBy": [Account],
  "executedByIds": ["4"],
  "expectedTime": ["xyz789"],
  "finishDate": AccountFilterFilterFinishDate,
  "frequency": ["abc123"],
  "issues": [IssueInstance],
  "issuesIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "lastUpdater": [Account],
  "lastUpdaterIds": [4],
  "name": "xyz789",
  "operator": "abc123",
  "parentElements": [Element],
  "parentElementsIds": [4],
  "parentSites": [Site],
  "parentSitesIds": [4],
  "rootElements": [Element],
  "rootElementsIds": [4],
  "rootSites": [Site],
  "rootSitesIds": ["4"],
  "search": "xyz789",
  "sites": [Site],
  "sitesIds": [4],
  "state": ["xyz789"],
  "status": ["xyz789"],
  "updated_at": AccountFilterFilterUpdated_at
}

AccountFilterFilterCreateInput

Description

Represents a AccountFilterFilterCreateInput

Fields
Input FieldDescription
actions - [ID]
approvedAccounts - [ID]
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
created_at - AccountFilterFilterCreated_atCreateInput
dueDate - AccountFilterFilterDueDateCreateInput
elements - [ID]
executedBy - [ID]
expectedTime - [String]
finishDate - AccountFilterFilterFinishDateCreateInput
frequency - [String]
issues - [ID]
labelValues - [ID]
lastUpdater - [ID]
name - String
operator - String
parentElements - [ID]
parentSites - [ID]
rootElements - [ID]
rootSites - [ID]
search - String
sites - [ID]
state - [String]
status - [String]
updated_at - AccountFilterFilterUpdated_atCreateInput
Example
{
  "actions": [4],
  "approvedAccounts": [4],
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "catalogs": [4],
  "created_at": AccountFilterFilterCreated_atCreateInput,
  "dueDate": AccountFilterFilterDueDateCreateInput,
  "elements": [4],
  "executedBy": ["4"],
  "expectedTime": ["xyz789"],
  "finishDate": AccountFilterFilterFinishDateCreateInput,
  "frequency": ["xyz789"],
  "issues": ["4"],
  "labelValues": [4],
  "lastUpdater": [4],
  "name": "abc123",
  "operator": "xyz789",
  "parentElements": ["4"],
  "parentSites": ["4"],
  "rootElements": [4],
  "rootSites": ["4"],
  "search": "abc123",
  "sites": [4],
  "state": ["abc123"],
  "status": ["abc123"],
  "updated_at": AccountFilterFilterUpdated_atCreateInput
}

AccountFilterFilterCreated_at

Description

Represents a AccountFilterFilterCreated_at

Fields
Field NameDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "xyz789",
  "from": "abc123",
  "last": "xyz789",
  "to": "abc123",
  "type": "xyz789"
}

AccountFilterFilterCreated_atCreateInput

Description

Represents a AccountFilterFilterCreated_atCreateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "xyz789",
  "last": "abc123",
  "to": "xyz789",
  "type": "abc123"
}

AccountFilterFilterCreated_atUpdateInput

Description

Represents a AccountFilterFilterCreated_atUpdateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "abc123",
  "last": "xyz789",
  "to": "xyz789",
  "type": "abc123"
}

AccountFilterFilterCreated_atWhereInput

Description

Represents a Where input for: AccountFilterFilterCreated_at

Fields
Input FieldDescription
current_contains - StringField contains given value, case-insensitive
current_ends_with - StringField ends with given value, case-insensitive
current_eq - StringField is equal to given value
current_exists - BooleanField is set and exists
current_in - [String]Given value includes field
current_ne - StringField is not equal to given value
current_nin - [String]Given value does not includes field
current_not_contains - StringField does not contains given value, case-insensitive
current_not_ends_with - StringField does not end with given value, case-insensitive
current_not_starts_with - StringField does not start with given value, case-insensitive
current_starts_with - StringField starts with given value, case-insensitive
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
last_contains - StringField contains given value, case-insensitive
last_ends_with - StringField ends with given value, case-insensitive
last_eq - StringField is equal to given value
last_exists - BooleanField is set and exists
last_in - [String]Given value includes field
last_ne - StringField is not equal to given value
last_nin - [String]Given value does not includes field
last_not_contains - StringField does not contains given value, case-insensitive
last_not_ends_with - StringField does not end with given value, case-insensitive
last_not_starts_with - StringField does not start with given value, case-insensitive
last_starts_with - StringField starts with given value, case-insensitive
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "current_contains": "abc123",
  "current_ends_with": "abc123",
  "current_eq": "xyz789",
  "current_exists": true,
  "current_in": ["abc123"],
  "current_ne": "xyz789",
  "current_nin": ["abc123"],
  "current_not_contains": "abc123",
  "current_not_ends_with": "xyz789",
  "current_not_starts_with": "xyz789",
  "current_starts_with": "abc123",
  "from_contains": "abc123",
  "from_ends_with": "xyz789",
  "from_eq": "xyz789",
  "from_exists": true,
  "from_in": ["xyz789"],
  "from_ne": "xyz789",
  "from_nin": ["abc123"],
  "from_not_contains": "xyz789",
  "from_not_ends_with": "xyz789",
  "from_not_starts_with": "abc123",
  "from_starts_with": "xyz789",
  "last_contains": "xyz789",
  "last_ends_with": "abc123",
  "last_eq": "xyz789",
  "last_exists": false,
  "last_in": ["abc123"],
  "last_ne": "abc123",
  "last_nin": ["xyz789"],
  "last_not_contains": "abc123",
  "last_not_ends_with": "abc123",
  "last_not_starts_with": "xyz789",
  "last_starts_with": "abc123",
  "to_contains": "xyz789",
  "to_ends_with": "abc123",
  "to_eq": "abc123",
  "to_exists": true,
  "to_in": ["xyz789"],
  "to_ne": "xyz789",
  "to_nin": ["xyz789"],
  "to_not_contains": "abc123",
  "to_not_ends_with": "xyz789",
  "to_not_starts_with": "xyz789",
  "to_starts_with": "xyz789",
  "type_contains": "xyz789",
  "type_ends_with": "xyz789",
  "type_eq": "abc123",
  "type_exists": false,
  "type_in": ["xyz789"],
  "type_ne": "abc123",
  "type_nin": ["abc123"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "xyz789",
  "type_not_starts_with": "abc123",
  "type_starts_with": "xyz789"
}

AccountFilterFilterDueDate

Description

Represents a AccountFilterFilterDueDate

Fields
Field NameDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "abc123",
  "last": "xyz789",
  "to": "abc123",
  "type": "xyz789"
}

AccountFilterFilterDueDateCreateInput

Description

Represents a AccountFilterFilterDueDateCreateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "xyz789",
  "last": "xyz789",
  "to": "abc123",
  "type": "abc123"
}

AccountFilterFilterDueDateUpdateInput

Description

Represents a AccountFilterFilterDueDateUpdateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "xyz789",
  "last": "abc123",
  "to": "xyz789",
  "type": "xyz789"
}

AccountFilterFilterDueDateWhereInput

Description

Represents a Where input for: AccountFilterFilterDueDate

Fields
Input FieldDescription
current_contains - StringField contains given value, case-insensitive
current_ends_with - StringField ends with given value, case-insensitive
current_eq - StringField is equal to given value
current_exists - BooleanField is set and exists
current_in - [String]Given value includes field
current_ne - StringField is not equal to given value
current_nin - [String]Given value does not includes field
current_not_contains - StringField does not contains given value, case-insensitive
current_not_ends_with - StringField does not end with given value, case-insensitive
current_not_starts_with - StringField does not start with given value, case-insensitive
current_starts_with - StringField starts with given value, case-insensitive
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
last_contains - StringField contains given value, case-insensitive
last_ends_with - StringField ends with given value, case-insensitive
last_eq - StringField is equal to given value
last_exists - BooleanField is set and exists
last_in - [String]Given value includes field
last_ne - StringField is not equal to given value
last_nin - [String]Given value does not includes field
last_not_contains - StringField does not contains given value, case-insensitive
last_not_ends_with - StringField does not end with given value, case-insensitive
last_not_starts_with - StringField does not start with given value, case-insensitive
last_starts_with - StringField starts with given value, case-insensitive
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "current_contains": "abc123",
  "current_ends_with": "abc123",
  "current_eq": "abc123",
  "current_exists": true,
  "current_in": ["abc123"],
  "current_ne": "abc123",
  "current_nin": ["abc123"],
  "current_not_contains": "xyz789",
  "current_not_ends_with": "xyz789",
  "current_not_starts_with": "abc123",
  "current_starts_with": "xyz789",
  "from_contains": "abc123",
  "from_ends_with": "xyz789",
  "from_eq": "xyz789",
  "from_exists": false,
  "from_in": ["abc123"],
  "from_ne": "abc123",
  "from_nin": ["abc123"],
  "from_not_contains": "abc123",
  "from_not_ends_with": "abc123",
  "from_not_starts_with": "abc123",
  "from_starts_with": "abc123",
  "last_contains": "xyz789",
  "last_ends_with": "xyz789",
  "last_eq": "abc123",
  "last_exists": true,
  "last_in": ["xyz789"],
  "last_ne": "xyz789",
  "last_nin": ["abc123"],
  "last_not_contains": "xyz789",
  "last_not_ends_with": "abc123",
  "last_not_starts_with": "xyz789",
  "last_starts_with": "abc123",
  "to_contains": "abc123",
  "to_ends_with": "abc123",
  "to_eq": "xyz789",
  "to_exists": true,
  "to_in": ["xyz789"],
  "to_ne": "xyz789",
  "to_nin": ["xyz789"],
  "to_not_contains": "abc123",
  "to_not_ends_with": "abc123",
  "to_not_starts_with": "abc123",
  "to_starts_with": "abc123",
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": true,
  "type_in": ["xyz789"],
  "type_ne": "abc123",
  "type_nin": ["abc123"],
  "type_not_contains": "abc123",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "xyz789"
}

AccountFilterFilterFinishDate

Description

Represents a AccountFilterFilterFinishDate

Fields
Field NameDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "abc123",
  "last": "xyz789",
  "to": "abc123",
  "type": "xyz789"
}

AccountFilterFilterFinishDateCreateInput

Description

Represents a AccountFilterFilterFinishDateCreateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "xyz789",
  "from": "abc123",
  "last": "xyz789",
  "to": "xyz789",
  "type": "abc123"
}

AccountFilterFilterFinishDateUpdateInput

Description

Represents a AccountFilterFilterFinishDateUpdateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "xyz789",
  "from": "abc123",
  "last": "xyz789",
  "to": "abc123",
  "type": "xyz789"
}

AccountFilterFilterFinishDateWhereInput

Description

Represents a Where input for: AccountFilterFilterFinishDate

Fields
Input FieldDescription
current_contains - StringField contains given value, case-insensitive
current_ends_with - StringField ends with given value, case-insensitive
current_eq - StringField is equal to given value
current_exists - BooleanField is set and exists
current_in - [String]Given value includes field
current_ne - StringField is not equal to given value
current_nin - [String]Given value does not includes field
current_not_contains - StringField does not contains given value, case-insensitive
current_not_ends_with - StringField does not end with given value, case-insensitive
current_not_starts_with - StringField does not start with given value, case-insensitive
current_starts_with - StringField starts with given value, case-insensitive
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
last_contains - StringField contains given value, case-insensitive
last_ends_with - StringField ends with given value, case-insensitive
last_eq - StringField is equal to given value
last_exists - BooleanField is set and exists
last_in - [String]Given value includes field
last_ne - StringField is not equal to given value
last_nin - [String]Given value does not includes field
last_not_contains - StringField does not contains given value, case-insensitive
last_not_ends_with - StringField does not end with given value, case-insensitive
last_not_starts_with - StringField does not start with given value, case-insensitive
last_starts_with - StringField starts with given value, case-insensitive
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "current_contains": "xyz789",
  "current_ends_with": "abc123",
  "current_eq": "xyz789",
  "current_exists": false,
  "current_in": ["xyz789"],
  "current_ne": "xyz789",
  "current_nin": ["abc123"],
  "current_not_contains": "abc123",
  "current_not_ends_with": "xyz789",
  "current_not_starts_with": "abc123",
  "current_starts_with": "abc123",
  "from_contains": "abc123",
  "from_ends_with": "xyz789",
  "from_eq": "xyz789",
  "from_exists": true,
  "from_in": ["xyz789"],
  "from_ne": "abc123",
  "from_nin": ["xyz789"],
  "from_not_contains": "abc123",
  "from_not_ends_with": "abc123",
  "from_not_starts_with": "abc123",
  "from_starts_with": "abc123",
  "last_contains": "xyz789",
  "last_ends_with": "abc123",
  "last_eq": "abc123",
  "last_exists": false,
  "last_in": ["abc123"],
  "last_ne": "xyz789",
  "last_nin": ["abc123"],
  "last_not_contains": "xyz789",
  "last_not_ends_with": "abc123",
  "last_not_starts_with": "abc123",
  "last_starts_with": "abc123",
  "to_contains": "abc123",
  "to_ends_with": "xyz789",
  "to_eq": "abc123",
  "to_exists": true,
  "to_in": ["abc123"],
  "to_ne": "abc123",
  "to_nin": ["xyz789"],
  "to_not_contains": "abc123",
  "to_not_ends_with": "abc123",
  "to_not_starts_with": "xyz789",
  "to_starts_with": "abc123",
  "type_contains": "abc123",
  "type_ends_with": "xyz789",
  "type_eq": "abc123",
  "type_exists": true,
  "type_in": ["abc123"],
  "type_ne": "abc123",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "xyz789",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "abc123"
}

AccountFilterFilterUpdateInput

Description

Represents a AccountFilterFilterUpdateInput

Fields
Input FieldDescription
actions - [ID]
approvedAccounts - [ID]
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
created_at - AccountFilterFilterCreated_atUpdateInput
dueDate - AccountFilterFilterDueDateUpdateInput
elements - [ID]
executedBy - [ID]
expectedTime - [String]
finishDate - AccountFilterFilterFinishDateUpdateInput
frequency - [String]
issues - [ID]
labelValues - [ID]
lastUpdater - [ID]
name - String
operator - String
parentElements - [ID]
parentSites - [ID]
rootElements - [ID]
rootSites - [ID]
search - String
sites - [ID]
state - [String]
status - [String]
updated_at - AccountFilterFilterUpdated_atUpdateInput
Example
{
  "actions": [4],
  "approvedAccounts": ["4"],
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "catalogs": ["4"],
  "created_at": AccountFilterFilterCreated_atUpdateInput,
  "dueDate": AccountFilterFilterDueDateUpdateInput,
  "elements": [4],
  "executedBy": ["4"],
  "expectedTime": ["xyz789"],
  "finishDate": AccountFilterFilterFinishDateUpdateInput,
  "frequency": ["xyz789"],
  "issues": [4],
  "labelValues": [4],
  "lastUpdater": ["4"],
  "name": "xyz789",
  "operator": "xyz789",
  "parentElements": [4],
  "parentSites": ["4"],
  "rootElements": [4],
  "rootSites": [4],
  "search": "xyz789",
  "sites": ["4"],
  "state": ["xyz789"],
  "status": ["abc123"],
  "updated_at": AccountFilterFilterUpdated_atUpdateInput
}

AccountFilterFilterUpdated_at

Description

Represents a AccountFilterFilterUpdated_at

Fields
Field NameDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "xyz789",
  "from": "abc123",
  "last": "abc123",
  "to": "abc123",
  "type": "abc123"
}

AccountFilterFilterUpdated_atCreateInput

Description

Represents a AccountFilterFilterUpdated_atCreateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "xyz789",
  "last": "abc123",
  "to": "xyz789",
  "type": "xyz789"
}

AccountFilterFilterUpdated_atUpdateInput

Description

Represents a AccountFilterFilterUpdated_atUpdateInput

Fields
Input FieldDescription
current - String
from - String
last - String
to - String
type - String
Example
{
  "current": "abc123",
  "from": "xyz789",
  "last": "xyz789",
  "to": "abc123",
  "type": "xyz789"
}

AccountFilterFilterUpdated_atWhereInput

Description

Represents a Where input for: AccountFilterFilterUpdated_at

Fields
Input FieldDescription
current_contains - StringField contains given value, case-insensitive
current_ends_with - StringField ends with given value, case-insensitive
current_eq - StringField is equal to given value
current_exists - BooleanField is set and exists
current_in - [String]Given value includes field
current_ne - StringField is not equal to given value
current_nin - [String]Given value does not includes field
current_not_contains - StringField does not contains given value, case-insensitive
current_not_ends_with - StringField does not end with given value, case-insensitive
current_not_starts_with - StringField does not start with given value, case-insensitive
current_starts_with - StringField starts with given value, case-insensitive
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
last_contains - StringField contains given value, case-insensitive
last_ends_with - StringField ends with given value, case-insensitive
last_eq - StringField is equal to given value
last_exists - BooleanField is set and exists
last_in - [String]Given value includes field
last_ne - StringField is not equal to given value
last_nin - [String]Given value does not includes field
last_not_contains - StringField does not contains given value, case-insensitive
last_not_ends_with - StringField does not end with given value, case-insensitive
last_not_starts_with - StringField does not start with given value, case-insensitive
last_starts_with - StringField starts with given value, case-insensitive
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "current_contains": "xyz789",
  "current_ends_with": "abc123",
  "current_eq": "xyz789",
  "current_exists": true,
  "current_in": ["abc123"],
  "current_ne": "abc123",
  "current_nin": ["xyz789"],
  "current_not_contains": "xyz789",
  "current_not_ends_with": "abc123",
  "current_not_starts_with": "xyz789",
  "current_starts_with": "xyz789",
  "from_contains": "abc123",
  "from_ends_with": "abc123",
  "from_eq": "xyz789",
  "from_exists": false,
  "from_in": ["abc123"],
  "from_ne": "xyz789",
  "from_nin": ["xyz789"],
  "from_not_contains": "xyz789",
  "from_not_ends_with": "abc123",
  "from_not_starts_with": "xyz789",
  "from_starts_with": "abc123",
  "last_contains": "abc123",
  "last_ends_with": "xyz789",
  "last_eq": "xyz789",
  "last_exists": false,
  "last_in": ["abc123"],
  "last_ne": "xyz789",
  "last_nin": ["abc123"],
  "last_not_contains": "abc123",
  "last_not_ends_with": "xyz789",
  "last_not_starts_with": "xyz789",
  "last_starts_with": "xyz789",
  "to_contains": "abc123",
  "to_ends_with": "abc123",
  "to_eq": "abc123",
  "to_exists": true,
  "to_in": ["xyz789"],
  "to_ne": "xyz789",
  "to_nin": ["abc123"],
  "to_not_contains": "xyz789",
  "to_not_ends_with": "abc123",
  "to_not_starts_with": "abc123",
  "to_starts_with": "xyz789",
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": true,
  "type_in": ["xyz789"],
  "type_ne": "abc123",
  "type_nin": ["xyz789"],
  "type_not_contains": "abc123",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "abc123"
}

AccountFilterFilterWhereInput

Description

Represents a Where input for: AccountFilterFilter

Fields
Input FieldDescription
actions_all - [ID]Field includes all given values.
actions_eq - [ID]Given value is equal to field
actions_exists - Boolean
actions_in - [ID]Field includes one of given value.
actions_nin - [ID]Field does not include any of the given values.
approvedAccounts_all - [ID]Field includes all given values.
approvedAccounts_eq - [ID]Given value is equal to field
approvedAccounts_exists - Boolean
approvedAccounts_in - [ID]Field includes one of given value.
approvedAccounts_nin - [ID]Field does not include any of the given values.
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalogs_all - [ID]Field includes all given values.
catalogs_eq - [ID]Given value is equal to field
catalogs_exists - Boolean
catalogs_in - [ID]Field includes one of given value.
catalogs_nin - [ID]Field does not include any of the given values.
created_at - AccountFilterFilterCreated_atWhereInput
dueDate - AccountFilterFilterDueDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
executedBy_all - [ID]Field includes all given values.
executedBy_eq - [ID]Given value is equal to field
executedBy_exists - Boolean
executedBy_in - [ID]Field includes one of given value.
executedBy_nin - [ID]Field does not include any of the given values.
expectedTime_all - [String]Field includes all given values.
expectedTime_eq - [String]Given value is equal to field
expectedTime_exists - Boolean
expectedTime_in - [String]Field includes one of given value.
expectedTime_nin - [String]Field does not include any of the given values.
finishDate - AccountFilterFilterFinishDateWhereInput
frequency_all - [String]Field includes all given values.
frequency_eq - [String]Given value is equal to field
frequency_exists - Boolean
frequency_in - [String]Field includes one of given value.
frequency_nin - [String]Field does not include any of the given values.
issues_all - [ID]Field includes all given values.
issues_eq - [ID]Given value is equal to field
issues_exists - Boolean
issues_in - [ID]Field includes one of given value.
issues_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
lastUpdater_all - [ID]Field includes all given values.
lastUpdater_eq - [ID]Given value is equal to field
lastUpdater_exists - Boolean
lastUpdater_in - [ID]Field includes one of given value.
lastUpdater_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
operator_contains - StringField contains given value, case-insensitive
operator_ends_with - StringField ends with given value, case-insensitive
operator_eq - StringField is equal to given value
operator_exists - BooleanField is set and exists
operator_in - [String]Given value includes field
operator_ne - StringField is not equal to given value
operator_nin - [String]Given value does not includes field
operator_not_contains - StringField does not contains given value, case-insensitive
operator_not_ends_with - StringField does not end with given value, case-insensitive
operator_not_starts_with - StringField does not start with given value, case-insensitive
operator_starts_with - StringField starts with given value, case-insensitive
parentElements_all - [ID]Field includes all given values.
parentElements_eq - [ID]Given value is equal to field
parentElements_exists - Boolean
parentElements_in - [ID]Field includes one of given value.
parentElements_nin - [ID]Field does not include any of the given values.
parentSites_all - [ID]Field includes all given values.
parentSites_eq - [ID]Given value is equal to field
parentSites_exists - Boolean
parentSites_in - [ID]Field includes one of given value.
parentSites_nin - [ID]Field does not include any of the given values.
rootElements_all - [ID]Field includes all given values.
rootElements_eq - [ID]Given value is equal to field
rootElements_exists - Boolean
rootElements_in - [ID]Field includes one of given value.
rootElements_nin - [ID]Field does not include any of the given values.
rootSites_all - [ID]Field includes all given values.
rootSites_eq - [ID]Given value is equal to field
rootSites_exists - Boolean
rootSites_in - [ID]Field includes one of given value.
rootSites_nin - [ID]Field does not include any of the given values.
search_contains - StringField contains given value, case-insensitive
search_ends_with - StringField ends with given value, case-insensitive
search_eq - StringField is equal to given value
search_exists - BooleanField is set and exists
search_in - [String]Given value includes field
search_ne - StringField is not equal to given value
search_nin - [String]Given value does not includes field
search_not_contains - StringField does not contains given value, case-insensitive
search_not_ends_with - StringField does not end with given value, case-insensitive
search_not_starts_with - StringField does not start with given value, case-insensitive
search_starts_with - StringField starts with given value, case-insensitive
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
state_all - [String]Field includes all given values.
state_eq - [String]Given value is equal to field
state_exists - Boolean
state_in - [String]Field includes one of given value.
state_nin - [String]Field does not include any of the given values.
status_all - [String]Field includes all given values.
status_eq - [String]Given value is equal to field
status_exists - Boolean
status_in - [String]Field includes one of given value.
status_nin - [String]Field does not include any of the given values.
updated_at - AccountFilterFilterUpdated_atWhereInput
Example
{
  "actions_all": ["4"],
  "actions_eq": [4],
  "actions_exists": false,
  "actions_in": [4],
  "actions_nin": ["4"],
  "approvedAccounts_all": ["4"],
  "approvedAccounts_eq": [4],
  "approvedAccounts_exists": true,
  "approvedAccounts_in": ["4"],
  "approvedAccounts_nin": ["4"],
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": [4],
  "catalogs_all": [4],
  "catalogs_eq": [4],
  "catalogs_exists": true,
  "catalogs_in": [4],
  "catalogs_nin": [4],
  "created_at": AccountFilterFilterCreated_atWhereInput,
  "dueDate": AccountFilterFilterDueDateWhereInput,
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": true,
  "elements_in": [4],
  "elements_nin": [4],
  "executedBy_all": ["4"],
  "executedBy_eq": [4],
  "executedBy_exists": true,
  "executedBy_in": [4],
  "executedBy_nin": ["4"],
  "expectedTime_all": ["xyz789"],
  "expectedTime_eq": ["xyz789"],
  "expectedTime_exists": true,
  "expectedTime_in": ["abc123"],
  "expectedTime_nin": ["abc123"],
  "finishDate": AccountFilterFilterFinishDateWhereInput,
  "frequency_all": ["abc123"],
  "frequency_eq": ["abc123"],
  "frequency_exists": false,
  "frequency_in": ["xyz789"],
  "frequency_nin": ["xyz789"],
  "issues_all": [4],
  "issues_eq": [4],
  "issues_exists": true,
  "issues_in": [4],
  "issues_nin": ["4"],
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "lastUpdater_all": [4],
  "lastUpdater_eq": ["4"],
  "lastUpdater_exists": true,
  "lastUpdater_in": [4],
  "lastUpdater_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "operator_contains": "xyz789",
  "operator_ends_with": "xyz789",
  "operator_eq": "abc123",
  "operator_exists": false,
  "operator_in": ["xyz789"],
  "operator_ne": "abc123",
  "operator_nin": ["abc123"],
  "operator_not_contains": "xyz789",
  "operator_not_ends_with": "xyz789",
  "operator_not_starts_with": "xyz789",
  "operator_starts_with": "xyz789",
  "parentElements_all": ["4"],
  "parentElements_eq": ["4"],
  "parentElements_exists": false,
  "parentElements_in": ["4"],
  "parentElements_nin": ["4"],
  "parentSites_all": [4],
  "parentSites_eq": ["4"],
  "parentSites_exists": true,
  "parentSites_in": [4],
  "parentSites_nin": [4],
  "rootElements_all": ["4"],
  "rootElements_eq": ["4"],
  "rootElements_exists": false,
  "rootElements_in": ["4"],
  "rootElements_nin": [4],
  "rootSites_all": ["4"],
  "rootSites_eq": ["4"],
  "rootSites_exists": false,
  "rootSites_in": ["4"],
  "rootSites_nin": [4],
  "search_contains": "abc123",
  "search_ends_with": "xyz789",
  "search_eq": "xyz789",
  "search_exists": true,
  "search_in": ["xyz789"],
  "search_ne": "abc123",
  "search_nin": ["abc123"],
  "search_not_contains": "xyz789",
  "search_not_ends_with": "xyz789",
  "search_not_starts_with": "abc123",
  "search_starts_with": "abc123",
  "sites_all": ["4"],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": ["4"],
  "sites_nin": [4],
  "state_all": ["abc123"],
  "state_eq": ["xyz789"],
  "state_exists": true,
  "state_in": ["abc123"],
  "state_nin": ["xyz789"],
  "status_all": ["xyz789"],
  "status_eq": ["xyz789"],
  "status_exists": false,
  "status_in": ["abc123"],
  "status_nin": ["abc123"],
  "updated_at": AccountFilterFilterUpdated_atWhereInput
}

AccountFilterHistory

Description

Represents a AccountFilterHistory

Fields
Field NameDescription
_id - ID
columns - [String]
columnsSize - JSON
Example
{
  "_id": "4",
  "columns": ["xyz789"],
  "columnsSize": {}
}

AccountFilterHistoryCreateInput

Description

Represents a AccountFilterHistoryCreateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["abc123"], "columnsSize": {}}

AccountFilterHistoryUpdateInput

Description

Represents a AccountFilterHistoryUpdateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["xyz789"], "columnsSize": {}}

AccountFilterHistoryWhereInput

Description

Represents a Where input for: AccountFilterHistory

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
columnsSize - JSON
columns_all - [String]Field includes all given values.
columns_eq - [String]Given value is equal to field
columns_exists - Boolean
columns_in - [String]Field includes one of given value.
columns_nin - [String]Field does not include any of the given values.
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "columnsSize": {},
  "columns_all": ["abc123"],
  "columns_eq": ["abc123"],
  "columns_exists": false,
  "columns_in": ["abc123"],
  "columns_nin": ["xyz789"]
}

AccountFilterPlanned

Description

Represents a AccountFilterPlanned

Fields
Field NameDescription
_id - ID
columns - [String]
columnsSize - JSON
Example
{
  "_id": 4,
  "columns": ["xyz789"],
  "columnsSize": {}
}

AccountFilterPlannedCreateInput

Description

Represents a AccountFilterPlannedCreateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["xyz789"], "columnsSize": {}}

AccountFilterPlannedUpdateInput

Description

Represents a AccountFilterPlannedUpdateInput

Fields
Input FieldDescription
columns - [String]
columnsSize - JSON
Example
{"columns": ["xyz789"], "columnsSize": {}}

AccountFilterPlannedWhereInput

Description

Represents a Where input for: AccountFilterPlanned

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
columnsSize - JSON
columns_all - [String]Field includes all given values.
columns_eq - [String]Given value is equal to field
columns_exists - Boolean
columns_in - [String]Field includes one of given value.
columns_nin - [String]Field does not include any of the given values.
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "columnsSize": {},
  "columns_all": ["xyz789"],
  "columns_eq": ["xyz789"],
  "columns_exists": true,
  "columns_in": ["xyz789"],
  "columns_nin": ["xyz789"]
}

AccountFilterUpdateInput

Description

Represents a AccountFilterUpdateInput

Fields
Input FieldDescription
active - AccountFilterActiveUpdateInput
columns - [String]
context - String
filters - [AccountFilterFilterUpdateInput]
history - AccountFilterHistoryUpdateInput
labelValues - [ID]
name - String
order - String
planned - AccountFilterPlannedUpdateInput
Example
{
  "active": AccountFilterActiveUpdateInput,
  "columns": ["abc123"],
  "context": "abc123",
  "filters": [AccountFilterFilterUpdateInput],
  "history": AccountFilterHistoryUpdateInput,
  "labelValues": ["4"],
  "name": "abc123",
  "order": "xyz789",
  "planned": AccountFilterPlannedUpdateInput
}

AccountFilterWhereInput

Description

Represents a Where input for: AccountFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
active - AccountFilterActiveWhereInput
columns_all - [String]Field includes all given values.
columns_eq - [String]Given value is equal to field
columns_exists - Boolean
columns_in - [String]Field includes one of given value.
columns_nin - [String]Field does not include any of the given values.
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
filters_every - AccountFilterFilterWhereInput
filters_exists - Boolean
filters_none - AccountFilterFilterWhereInput
filters_some - AccountFilterFilterWhereInput
history - AccountFilterHistoryWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_contains - StringField contains given value, case-insensitive
order_ends_with - StringField ends with given value, case-insensitive
order_eq - StringField is equal to given value
order_exists - BooleanField is set and exists
order_in - [String]Given value includes field
order_ne - StringField is not equal to given value
order_nin - [String]Given value does not includes field
order_not_contains - StringField does not contains given value, case-insensitive
order_not_ends_with - StringField does not end with given value, case-insensitive
order_not_starts_with - StringField does not start with given value, case-insensitive
order_starts_with - StringField starts with given value, case-insensitive
planned - AccountFilterPlannedWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "active": AccountFilterActiveWhereInput,
  "columns_all": ["xyz789"],
  "columns_eq": ["xyz789"],
  "columns_exists": true,
  "columns_in": ["abc123"],
  "columns_nin": ["abc123"],
  "context_contains": "xyz789",
  "context_ends_with": "xyz789",
  "context_eq": "xyz789",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "filters_every": AccountFilterFilterWhereInput,
  "filters_exists": false,
  "filters_none": AccountFilterFilterWhereInput,
  "filters_some": AccountFilterFilterWhereInput,
  "history": AccountFilterHistoryWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "order_contains": "abc123",
  "order_ends_with": "xyz789",
  "order_eq": "abc123",
  "order_exists": false,
  "order_in": ["xyz789"],
  "order_ne": "abc123",
  "order_nin": ["xyz789"],
  "order_not_contains": "abc123",
  "order_not_ends_with": "abc123",
  "order_not_starts_with": "abc123",
  "order_starts_with": "abc123",
  "planned": AccountFilterPlannedWhereInput
}

AccountFolder

Description

Represents a AccountFolder

Fields
Field NameDescription
_id - ID
accountFoldersCount - Intdeprecated
accountsCount - Intdeprecated
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - AccountFolderAccountFolder Parent
parentId - IDAccountFolder Parent
parentsTree - [AccountFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "accountFoldersCount": 123,
  "accountsCount": 123,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "xyz789",
  "parent": AccountFolder,
  "parentId": "4",
  "parentsTree": [AccountFolder],
  "parentsTreeIds": [4],
  "protected": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

AccountFolderCreateInput

Description

Represents a AccountFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDAccountFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": 4
}

AccountFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AccountFolderUpdateInput

Description

Represents a AccountFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDAccountFolder Parent
Example
{
  "context": "xyz789",
  "name": "abc123",
  "parent": 4
}

AccountFolderWhereInput

Description

Represents a Where input for: AccountFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "context_contains": "xyz789",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": false,
  "context_in": ["abc123"],
  "context_ne": "xyz789",
  "context_nin": ["xyz789"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": ["4"],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": [4],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

AccountFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

AccountOnBoarding

Description

Represents a AccountOnBoarding

Fields
Field NameDescription
availableSteps - [String]
currentSubStep - Int
doingOnboarding - Boolean
finished - Boolean
issueInstance - IssueInstance
issueInstanceId - ID
maxSubStep - Int
openIssue - IssueCatalog
openIssueDraft - IssueCatalogDraft
openIssueDraftId - ID
openIssueId - ID
progressTotal - Int
step - AccountOnBoardingStep
template - IssueTemplate
templateDraft - IssueTemplateDraft
templateDraftId - ID
templateId - ID
Example
{
  "availableSteps": ["abc123"],
  "currentSubStep": 987,
  "doingOnboarding": true,
  "finished": false,
  "issueInstance": IssueInstance,
  "issueInstanceId": "4",
  "maxSubStep": 123,
  "openIssue": IssueCatalog,
  "openIssueDraft": IssueCatalogDraft,
  "openIssueDraftId": 4,
  "openIssueId": 4,
  "progressTotal": 123,
  "step": "build",
  "template": IssueTemplate,
  "templateDraft": IssueTemplateDraft,
  "templateDraftId": 4,
  "templateId": "4"
}

AccountOnBoardingStep

Values
Enum ValueDescription

build

createIssue

createTasks

execute

finish

unInitialized

Example
"build"

AccountOnBoardingUpdateInput

Description

Represents a AccountOnBoardingUpdateInput

Fields
Input FieldDescription
availableSteps - [String]
currentSubStep - Int
doingOnboarding - Boolean
finished - Boolean
issueInstance - ID
maxSubStep - Int
openIssue - ID
openIssueDraft - ID
progressTotal - Int
step - AccountOnBoardingStep
template - ID
templateDraft - ID
Example
{
  "availableSteps": ["xyz789"],
  "currentSubStep": 123,
  "doingOnboarding": false,
  "finished": true,
  "issueInstance": "4",
  "maxSubStep": 123,
  "openIssue": "4",
  "openIssueDraft": "4",
  "progressTotal": 123,
  "step": "build",
  "template": "4",
  "templateDraft": 4
}

AccountOnBoardingWhereInput

Description

Represents a Where input for: AccountOnBoarding

Fields
Input FieldDescription
availableSteps_all - [String]Field includes all given values.
availableSteps_eq - [String]Given value is equal to field
availableSteps_exists - Boolean
availableSteps_in - [String]Field includes one of given value.
availableSteps_nin - [String]Field does not include any of the given values.
currentSubStep_eq - IntField is equal to given value
currentSubStep_exists - BooleanField is set and exists
currentSubStep_gt - IntField is greater than given value
currentSubStep_gte - IntField is greater or equal than given value
currentSubStep_in - [Int]Given value includes field
currentSubStep_lt - IntField is lower than given value
currentSubStep_lte - IntField is lower or equal than given value
currentSubStep_ne - IntField is not equal to given value
currentSubStep_nin - [Int]Given value does not includes field
doingOnboarding_eq - BooleanField is equal to given value
doingOnboarding_ne - BooleanField is not equal to given value
finished_eq - BooleanField is equal to given value
finished_ne - BooleanField is not equal to given value
issueInstance_all - [ID]Given value includes all in array
issueInstance_eq - IDField is equal to given value
issueInstance_exists - BooleanField is set and exists
issueInstance_in - [ID]Given value includes field
issueInstance_ne - IDField is not equal to given value
issueInstance_nin - [ID]Given value does not include field
maxSubStep_eq - IntField is equal to given value
maxSubStep_exists - BooleanField is set and exists
maxSubStep_gt - IntField is greater than given value
maxSubStep_gte - IntField is greater or equal than given value
maxSubStep_in - [Int]Given value includes field
maxSubStep_lt - IntField is lower than given value
maxSubStep_lte - IntField is lower or equal than given value
maxSubStep_ne - IntField is not equal to given value
maxSubStep_nin - [Int]Given value does not includes field
openIssueDraft_all - [ID]Given value includes all in array
openIssueDraft_eq - IDField is equal to given value
openIssueDraft_exists - BooleanField is set and exists
openIssueDraft_in - [ID]Given value includes field
openIssueDraft_ne - IDField is not equal to given value
openIssueDraft_nin - [ID]Given value does not include field
openIssue_all - [ID]Given value includes all in array
openIssue_eq - IDField is equal to given value
openIssue_exists - BooleanField is set and exists
openIssue_in - [ID]Given value includes field
openIssue_ne - IDField is not equal to given value
openIssue_nin - [ID]Given value does not include field
progressTotal_eq - IntField is equal to given value
progressTotal_exists - BooleanField is set and exists
progressTotal_gt - IntField is greater than given value
progressTotal_gte - IntField is greater or equal than given value
progressTotal_in - [Int]Given value includes field
progressTotal_lt - IntField is lower than given value
progressTotal_lte - IntField is lower or equal than given value
progressTotal_ne - IntField is not equal to given value
progressTotal_nin - [Int]Given value does not includes field
step_eq - AccountOnBoardingStepField is equal to given value
step_exists - AccountOnBoardingStepField is set and exists
step_in - [AccountOnBoardingStep]Given value includes field
step_ne - AccountOnBoardingStepField is not equal to given value
step_nin - [AccountOnBoardingStep]Given value does not includes field
templateDraft_all - [ID]Given value includes all in array
templateDraft_eq - IDField is equal to given value
templateDraft_exists - BooleanField is set and exists
templateDraft_in - [ID]Given value includes field
templateDraft_ne - IDField is not equal to given value
templateDraft_nin - [ID]Given value does not include field
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
Example
{
  "availableSteps_all": ["xyz789"],
  "availableSteps_eq": ["abc123"],
  "availableSteps_exists": false,
  "availableSteps_in": ["xyz789"],
  "availableSteps_nin": ["xyz789"],
  "currentSubStep_eq": 987,
  "currentSubStep_exists": false,
  "currentSubStep_gt": 987,
  "currentSubStep_gte": 123,
  "currentSubStep_in": [987],
  "currentSubStep_lt": 987,
  "currentSubStep_lte": 123,
  "currentSubStep_ne": 123,
  "currentSubStep_nin": [123],
  "doingOnboarding_eq": false,
  "doingOnboarding_ne": true,
  "finished_eq": false,
  "finished_ne": false,
  "issueInstance_all": ["4"],
  "issueInstance_eq": "4",
  "issueInstance_exists": true,
  "issueInstance_in": ["4"],
  "issueInstance_ne": 4,
  "issueInstance_nin": ["4"],
  "maxSubStep_eq": 987,
  "maxSubStep_exists": false,
  "maxSubStep_gt": 987,
  "maxSubStep_gte": 987,
  "maxSubStep_in": [987],
  "maxSubStep_lt": 123,
  "maxSubStep_lte": 987,
  "maxSubStep_ne": 987,
  "maxSubStep_nin": [987],
  "openIssueDraft_all": [4],
  "openIssueDraft_eq": 4,
  "openIssueDraft_exists": true,
  "openIssueDraft_in": ["4"],
  "openIssueDraft_ne": 4,
  "openIssueDraft_nin": [4],
  "openIssue_all": [4],
  "openIssue_eq": "4",
  "openIssue_exists": true,
  "openIssue_in": [4],
  "openIssue_ne": 4,
  "openIssue_nin": ["4"],
  "progressTotal_eq": 987,
  "progressTotal_exists": false,
  "progressTotal_gt": 987,
  "progressTotal_gte": 123,
  "progressTotal_in": [987],
  "progressTotal_lt": 123,
  "progressTotal_lte": 123,
  "progressTotal_ne": 123,
  "progressTotal_nin": [123],
  "step_eq": "build",
  "step_exists": "build",
  "step_in": ["build"],
  "step_ne": "build",
  "step_nin": ["build"],
  "templateDraft_all": ["4"],
  "templateDraft_eq": 4,
  "templateDraft_exists": true,
  "templateDraft_in": [4],
  "templateDraft_ne": 4,
  "templateDraft_nin": ["4"],
  "template_all": ["4"],
  "template_eq": "4",
  "template_exists": true,
  "template_in": ["4"],
  "template_ne": 4,
  "template_nin": ["4"]
}

AccountOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

actions_ASC

actions_DESC

agoraUid_ASC

agoraUid_DESC

authorizedSites_name_ASC

authorizedSites_name_DESC

chat_ASC

chat_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

email_ASC

email_DESC

issues_ASC

issues_DESC

labelValues_value_ASC

labelValues_value_DESC

lastLogin_ASC

lastLogin_DESC

name_ASC

name_DESC

onBoarding_currentSubStep_ASC

onBoarding_currentSubStep_DESC

onBoarding_maxSubStep_ASC

onBoarding_maxSubStep_DESC

onBoarding_progressTotal_ASC

onBoarding_progressTotal_DESC

onBoarding_step_ASC

onBoarding_step_DESC

preferences_locale_ASC

preferences_locale_DESC

preferences_theme_ASC

preferences_theme_DESC

preferences_timeZone_ASC

preferences_timeZone_DESC

recoveryEmail_ASC

recoveryEmail_DESC

roles_name_ASC

roles_name_DESC

updatedAt_ASC

updatedAt_DESC

username_ASC

username_DESC

Example
"_id_ASC"

AccountPreferences

Description

Represents a AccountPreferences

Fields
Field NameDescription
columnsToHide - AccountPreferencesColumnsToHide
defaultSite - Site
defaultSiteId - ID
locale - AccountPreferencesLocaleLocale for translation ex(pt_BR)
theme - AccountPreferencesThemeTheme for display
timeZone - String
Example
{
  "columnsToHide": AccountPreferencesColumnsToHide,
  "defaultSite": Site,
  "defaultSiteId": 4,
  "locale": "af_ZA",
  "theme": "dark",
  "timeZone": "abc123"
}

AccountPreferencesColumnsToHide

Description

Represents a AccountPreferencesColumnsToHide

Fields
Field NameDescription
materials - [String]Materials columns to hide
Example
{"materials": ["abc123"]}

AccountPreferencesColumnsToHideCreateInput

Description

Represents a AccountPreferencesColumnsToHideCreateInput

Fields
Input FieldDescription
materials - [String]Materials columns to hide
Example
{"materials": ["xyz789"]}

AccountPreferencesColumnsToHideUpdateInput

Description

Represents a AccountPreferencesColumnsToHideUpdateInput

Fields
Input FieldDescription
materials - [String]Materials columns to hide
Example
{"materials": ["abc123"]}

AccountPreferencesColumnsToHideWhereInput

Description

Represents a Where input for: AccountPreferencesColumnsToHide

Fields
Input FieldDescription
materials_all - [String]Field includes all given values.
materials_eq - [String]Given value is equal to field
materials_exists - Boolean
materials_in - [String]Field includes one of given value.
materials_nin - [String]Field does not include any of the given values.
Example
{
  "materials_all": ["abc123"],
  "materials_eq": ["xyz789"],
  "materials_exists": true,
  "materials_in": ["xyz789"],
  "materials_nin": ["xyz789"]
}

AccountPreferencesCreateInput

Description

Represents a AccountPreferencesCreateInput

Fields
Input FieldDescription
columnsToHide - AccountPreferencesColumnsToHideCreateInput
defaultSite - ID
locale - AccountPreferencesLocaleLocale for translation ex(pt_BR)
theme - AccountPreferencesThemeTheme for display
timeZone - String
Example
{
  "columnsToHide": AccountPreferencesColumnsToHideCreateInput,
  "defaultSite": "4",
  "locale": "af_ZA",
  "theme": "dark",
  "timeZone": "xyz789"
}

AccountPreferencesLocale

Values
Enum ValueDescription

af_ZA

ar

bg_BG

ca_AD

cs_CZ

cy_GB

da_DK

de_AT

de_CH

de_DE

el_GR

en_GB

en_US

es_CL

es_ES

es_MX

et_EE

eu

fa_IR

fi_FI

fr_CA

fr_FR

he_IL

hr_HR

hu_HU

id_ID

is_IS

it_IT

ja_JP

km_KH

ko_KR

la

lt_LT

lv_LV

mn_MN

nb_NO

nl_NL

nn_NO

pl_PL

pt_BR

pt_PT

ro_RO

ru_RU

sk_SK

sl_SI

sr_RS

sv_SE

th_TH

tr_TR

uk_UA

vi_VN

zh_CN

zh_TW

Example
"af_ZA"

AccountPreferencesTheme

Values
Enum ValueDescription

dark

light

Example
"dark"

AccountPreferencesUpdateInput

Description

Represents a AccountPreferencesUpdateInput

Fields
Input FieldDescription
columnsToHide - AccountPreferencesColumnsToHideUpdateInput
defaultSite - ID
locale - AccountPreferencesLocaleLocale for translation ex(pt_BR)
theme - AccountPreferencesThemeTheme for display
timeZone - String
Example
{
  "columnsToHide": AccountPreferencesColumnsToHideUpdateInput,
  "defaultSite": 4,
  "locale": "af_ZA",
  "theme": "dark",
  "timeZone": "xyz789"
}

AccountPreferencesWhereInput

Description

Represents a Where input for: AccountPreferences

Fields
Input FieldDescription
columnsToHide - AccountPreferencesColumnsToHideWhereInput
defaultSite_all - [ID]Given value includes all in array
defaultSite_eq - IDField is equal to given value
defaultSite_exists - BooleanField is set and exists
defaultSite_in - [ID]Given value includes field
defaultSite_ne - IDField is not equal to given value
defaultSite_nin - [ID]Given value does not include field
locale_eq - AccountPreferencesLocaleField is equal to given value
locale_exists - AccountPreferencesLocaleField is set and exists
locale_in - [AccountPreferencesLocale]Given value includes field
locale_ne - AccountPreferencesLocaleField is not equal to given value
locale_nin - [AccountPreferencesLocale]Given value does not includes field
theme_eq - AccountPreferencesThemeField is equal to given value
theme_exists - AccountPreferencesThemeField is set and exists
theme_in - [AccountPreferencesTheme]Given value includes field
theme_ne - AccountPreferencesThemeField is not equal to given value
theme_nin - [AccountPreferencesTheme]Given value does not includes field
timeZone_contains - StringField contains given value, case-insensitive
timeZone_ends_with - StringField ends with given value, case-insensitive
timeZone_eq - StringField is equal to given value
timeZone_exists - BooleanField is set and exists
timeZone_in - [String]Given value includes field
timeZone_ne - StringField is not equal to given value
timeZone_nin - [String]Given value does not includes field
timeZone_not_contains - StringField does not contains given value, case-insensitive
timeZone_not_ends_with - StringField does not end with given value, case-insensitive
timeZone_not_starts_with - StringField does not start with given value, case-insensitive
timeZone_starts_with - StringField starts with given value, case-insensitive
Example
{
  "columnsToHide": AccountPreferencesColumnsToHideWhereInput,
  "defaultSite_all": [4],
  "defaultSite_eq": "4",
  "defaultSite_exists": true,
  "defaultSite_in": ["4"],
  "defaultSite_ne": "4",
  "defaultSite_nin": [4],
  "locale_eq": "af_ZA",
  "locale_exists": "af_ZA",
  "locale_in": ["af_ZA"],
  "locale_ne": "af_ZA",
  "locale_nin": ["af_ZA"],
  "theme_eq": "dark",
  "theme_exists": "dark",
  "theme_in": ["dark"],
  "theme_ne": "dark",
  "theme_nin": ["dark"],
  "timeZone_contains": "xyz789",
  "timeZone_ends_with": "xyz789",
  "timeZone_eq": "xyz789",
  "timeZone_exists": true,
  "timeZone_in": ["xyz789"],
  "timeZone_ne": "xyz789",
  "timeZone_nin": ["xyz789"],
  "timeZone_not_contains": "abc123",
  "timeZone_not_ends_with": "xyz789",
  "timeZone_not_starts_with": "abc123",
  "timeZone_starts_with": "xyz789"
}

AccountTemplate

Description

Represents a AccountTemplate

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
folder - AccountTemplateFolder!AccountTemplate Folder
folderId - ID!AccountTemplate Folder
frame - AccountTemplateFrame
icon - String
protected - Boolean
system - Boolean
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "archived": false,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "folder": AccountTemplateFolder,
  "folderId": "4",
  "frame": AccountTemplateFrame,
  "icon": "abc123",
  "protected": true,
  "system": false,
  "title": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

AccountTemplateFolder

Description

Represents a AccountTemplateFolder

Fields
Field NameDescription
_id - ID
accountTemplateFoldersCount - Intdeprecated
accountTemplatesCount - Intdeprecated
Arguments
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - AccountTemplateFolderAccountTemplateFolder Parent
parentId - IDAccountTemplateFolder Parent
parentsTree - [AccountTemplateFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "accountTemplateFoldersCount": 987,
  "accountTemplatesCount": 123,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "xyz789",
  "parent": AccountTemplateFolder,
  "parentId": "4",
  "parentsTree": [AccountTemplateFolder],
  "parentsTreeIds": [4],
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

AccountTemplateFolderCreateInput

Description

Represents a AccountTemplateFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDAccountTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": "4"
}

AccountTemplateFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AccountTemplateFolderUpdateInput

Description

Represents a AccountTemplateFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDAccountTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": "4"
}

AccountTemplateFolderWhereInput

Description

Represents a Where input for: AccountTemplateFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "context_contains": "abc123",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "abc123",
  "context_nin": ["xyz789"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": false,
  "parent_in": [4],
  "parent_ne": 4,
  "parent_nin": [4],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

AccountTemplateFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

AccountTemplateFrame

Description

Represents a AccountTemplateFrame

Fields
Field NameDescription
arUser - Boolean
inputs - [Input]
Example
{"arUser": false, "inputs": [Input]}

AccountTemplateFrameWhereInput

Description

Represents a Where input for: AccountTemplateFrame

Fields
Input FieldDescription
arUser_eq - BooleanField is equal to given value
arUser_ne - BooleanField is not equal to given value
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
Example
{
  "arUser_eq": false,
  "arUser_ne": false,
  "inputs_every": InputWhereInput,
  "inputs_exists": false,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput
}

AccountTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AccountTemplateWhereInput

Description

Represents a Where input for: AccountTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - AccountTemplateFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - AccountTemplateFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": false,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": ["4"],
  "archivedBy_eq": 4,
  "archivedBy_exists": true,
  "archivedBy_in": ["4"],
  "archivedBy_ne": "4",
  "archivedBy_nin": ["4"],
  "archived_eq": true,
  "archived_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "folder": AccountTemplateFolderWhereInput,
  "folder_all": ["4"],
  "folder_eq": "4",
  "folder_exists": false,
  "folder_in": [4],
  "folder_ne": "4",
  "folder_nin": [4],
  "frame": AccountTemplateFrameWhereInput,
  "icon_contains": "abc123",
  "icon_ends_with": "abc123",
  "icon_eq": "xyz789",
  "icon_exists": false,
  "icon_in": ["xyz789"],
  "icon_ne": "abc123",
  "icon_nin": ["abc123"],
  "icon_not_contains": "abc123",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "xyz789",
  "icon_starts_with": "abc123",
  "protected_eq": false,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": true,
  "title_contains": "abc123",
  "title_ends_with": "xyz789",
  "title_eq": "xyz789",
  "title_exists": false,
  "title_in": ["abc123"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

AccountTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

AccountUpdateInput

Description

Represents a AccountUpdateInput

Fields
Input FieldDescription
ARUser - Boolean
actions - Int
agoraUid - StringAgora UID
authorizedSites - [ID]
chat - Int
email - String
filters - [AccountFilterUpdateInput]
firstLogin - Boolean
folder - IDAccount Folder
inputs - [InputUpdateInput]
isActive - BooleanAccount is active or not active
issues - Int
labelValues - [ID]
lastLogin - DateTime
mobileTabs - [String]
name - String
newPassword - String
onBoarding - AccountOnBoardingUpdateInput
password - String
photo - Upload
preferences - AccountPreferencesUpdateInput
recoveryEmail - String
requiresPasswordReset - Boolean
roles - [ID]
seenFeatures - JSON
template - IDAccount Template
tutorialCompleted - BooleanSession tutorial is completed or not
username - String
Example
{
  "ARUser": true,
  "actions": 123,
  "agoraUid": "xyz789",
  "authorizedSites": [4],
  "chat": 987,
  "email": "abc123",
  "filters": [AccountFilterUpdateInput],
  "firstLogin": false,
  "folder": "4",
  "inputs": [InputUpdateInput],
  "isActive": false,
  "issues": 987,
  "labelValues": ["4"],
  "lastLogin": "2007-12-03T10:15:30Z",
  "mobileTabs": ["abc123"],
  "name": "abc123",
  "newPassword": "abc123",
  "onBoarding": AccountOnBoardingUpdateInput,
  "password": "abc123",
  "photo": Upload,
  "preferences": AccountPreferencesUpdateInput,
  "recoveryEmail": "xyz789",
  "requiresPasswordReset": true,
  "roles": ["4"],
  "seenFeatures": {},
  "template": "4",
  "tutorialCompleted": true,
  "username": "xyz789"
}

AccountWhereInput

Description

Represents a Where input for: Account

Fields
Input FieldDescription
ARUser_eq - BooleanField is equal to given value
ARUser_ne - BooleanField is not equal to given value
OR - [OrAccountsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actions_eq - IntField is equal to given value
actions_exists - BooleanField is set and exists
actions_gt - IntField is greater than given value
actions_gte - IntField is greater or equal than given value
actions_in - [Int]Given value includes field
actions_lt - IntField is lower than given value
actions_lte - IntField is lower or equal than given value
actions_ne - IntField is not equal to given value
actions_nin - [Int]Given value does not includes field
agoraUid_contains - StringField contains given value, case-insensitive
agoraUid_ends_with - StringField ends with given value, case-insensitive
agoraUid_eq - StringField is equal to given value
agoraUid_exists - BooleanField is set and exists
agoraUid_in - [String]Given value includes field
agoraUid_ne - StringField is not equal to given value
agoraUid_nin - [String]Given value does not includes field
agoraUid_not_contains - StringField does not contains given value, case-insensitive
agoraUid_not_ends_with - StringField does not end with given value, case-insensitive
agoraUid_not_starts_with - StringField does not start with given value, case-insensitive
agoraUid_starts_with - StringField starts with given value, case-insensitive
authorizedSites - SiteWhereInput
authorizedSites_all - [ID]Field includes all given values.
authorizedSites_eq - [ID]Given value is equal to field
authorizedSites_exists - Boolean
authorizedSites_in - [ID]Field includes one of given value.
authorizedSites_nin - [ID]Field does not include any of the given values.
chat_eq - IntField is equal to given value
chat_exists - BooleanField is set and exists
chat_gt - IntField is greater than given value
chat_gte - IntField is greater or equal than given value
chat_in - [Int]Given value includes field
chat_lt - IntField is lower than given value
chat_lte - IntField is lower or equal than given value
chat_ne - IntField is not equal to given value
chat_nin - [Int]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
email_contains - StringField contains given value, case-insensitive
email_ends_with - StringField ends with given value, case-insensitive
email_eq - StringField is equal to given value
email_exists - BooleanField is set and exists
email_in - [String]Given value includes field
email_ne - StringField is not equal to given value
email_nin - [String]Given value does not includes field
email_not_contains - StringField does not contains given value, case-insensitive
email_not_ends_with - StringField does not end with given value, case-insensitive
email_not_starts_with - StringField does not start with given value, case-insensitive
email_starts_with - StringField starts with given value, case-insensitive
filters_every - AccountFilterWhereInput
filters_exists - Boolean
filters_none - AccountFilterWhereInput
filters_some - AccountFilterWhereInput
firstLogin_eq - BooleanField is equal to given value
firstLogin_ne - BooleanField is not equal to given value
folder - AccountFolderWhereInput
gps_all - [Int]Field includes all given values.
gps_eq - [Int]Given value is equal to field
gps_exists - Boolean
gps_in - [Int]Field includes one of given value.
gps_nin - [Int]Field does not include any of the given values.
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
isActive_eq - BooleanField is equal to given value
isActive_ne - BooleanField is not equal to given value
issues_eq - IntField is equal to given value
issues_exists - BooleanField is set and exists
issues_gt - IntField is greater than given value
issues_gte - IntField is greater or equal than given value
issues_in - [Int]Given value includes field
issues_lt - IntField is lower than given value
issues_lte - IntField is lower or equal than given value
issues_ne - IntField is not equal to given value
issues_nin - [Int]Given value does not includes field
labelValues - LabelValueWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
lastLogin_eq - DateTimeField is equal to given value
lastLogin_exists - BooleanField is set and exists
lastLogin_gt - DateTimeField is greater than given value
lastLogin_gte - DateTimeField is greater or equal than given value
lastLogin_in - [DateTime]Given value includes field
lastLogin_lt - DateTimeField is lower than given value
lastLogin_lte - DateTimeField is lower or equal than given value
lastLogin_ne - DateTimeField is not equal to given value
lastLogin_nin - [DateTime]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
onBoarding - AccountOnBoardingWhereInput
preferences - AccountPreferencesWhereInput
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
recoveryEmail_contains - StringField contains given value, case-insensitive
recoveryEmail_ends_with - StringField ends with given value, case-insensitive
recoveryEmail_eq - StringField is equal to given value
recoveryEmail_exists - BooleanField is set and exists
recoveryEmail_in - [String]Given value includes field
recoveryEmail_ne - StringField is not equal to given value
recoveryEmail_nin - [String]Given value does not includes field
recoveryEmail_not_contains - StringField does not contains given value, case-insensitive
recoveryEmail_not_ends_with - StringField does not end with given value, case-insensitive
recoveryEmail_not_starts_with - StringField does not start with given value, case-insensitive
recoveryEmail_starts_with - StringField starts with given value, case-insensitive
requiresPasswordReset_eq - BooleanField is equal to given value
requiresPasswordReset_ne - BooleanField is not equal to given value
roles - RoleWhereInput
roles_all - [ID]Field includes all given values.
roles_eq - [ID]Given value is equal to field
roles_exists - Boolean
roles_in - [ID]Field includes one of given value.
roles_nin - [ID]Field does not include any of the given values.
seenFeatures - JSON
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
tutorialCompleted_eq - BooleanField is equal to given value
tutorialCompleted_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
username_contains - StringField contains given value, case-insensitive
username_ends_with - StringField ends with given value, case-insensitive
username_eq - StringField is equal to given value
username_exists - BooleanField is set and exists
username_in - [String]Given value includes field
username_ne - StringField is not equal to given value
username_nin - [String]Given value does not includes field
username_not_contains - StringField does not contains given value, case-insensitive
username_not_ends_with - StringField does not end with given value, case-insensitive
username_not_starts_with - StringField does not start with given value, case-insensitive
username_starts_with - StringField starts with given value, case-insensitive
Example
{
  "ARUser_eq": true,
  "ARUser_ne": false,
  "OR": [OrAccountsWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "actions_eq": 987,
  "actions_exists": true,
  "actions_gt": 123,
  "actions_gte": 123,
  "actions_in": [123],
  "actions_lt": 123,
  "actions_lte": 987,
  "actions_ne": 123,
  "actions_nin": [987],
  "agoraUid_contains": "abc123",
  "agoraUid_ends_with": "xyz789",
  "agoraUid_eq": "abc123",
  "agoraUid_exists": false,
  "agoraUid_in": ["abc123"],
  "agoraUid_ne": "xyz789",
  "agoraUid_nin": ["xyz789"],
  "agoraUid_not_contains": "abc123",
  "agoraUid_not_ends_with": "xyz789",
  "agoraUid_not_starts_with": "xyz789",
  "agoraUid_starts_with": "abc123",
  "authorizedSites": SiteWhereInput,
  "authorizedSites_all": [4],
  "authorizedSites_eq": ["4"],
  "authorizedSites_exists": false,
  "authorizedSites_in": [4],
  "authorizedSites_nin": [4],
  "chat_eq": 987,
  "chat_exists": true,
  "chat_gt": 123,
  "chat_gte": 987,
  "chat_in": [123],
  "chat_lt": 987,
  "chat_lte": 123,
  "chat_ne": 123,
  "chat_nin": [987],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "email_contains": "xyz789",
  "email_ends_with": "xyz789",
  "email_eq": "abc123",
  "email_exists": true,
  "email_in": ["xyz789"],
  "email_ne": "xyz789",
  "email_nin": ["abc123"],
  "email_not_contains": "abc123",
  "email_not_ends_with": "xyz789",
  "email_not_starts_with": "abc123",
  "email_starts_with": "xyz789",
  "filters_every": AccountFilterWhereInput,
  "filters_exists": true,
  "filters_none": AccountFilterWhereInput,
  "filters_some": AccountFilterWhereInput,
  "firstLogin_eq": true,
  "firstLogin_ne": false,
  "folder": AccountFolderWhereInput,
  "gps_all": [987],
  "gps_eq": [123],
  "gps_exists": true,
  "gps_in": [123],
  "gps_nin": [123],
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "isActive_eq": true,
  "isActive_ne": true,
  "issues_eq": 987,
  "issues_exists": true,
  "issues_gt": 123,
  "issues_gte": 123,
  "issues_in": [987],
  "issues_lt": 987,
  "issues_lte": 987,
  "issues_ne": 987,
  "issues_nin": [987],
  "labelValues": LabelValueWhereInput,
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "lastLogin_eq": "2007-12-03T10:15:30Z",
  "lastLogin_exists": true,
  "lastLogin_gt": "2007-12-03T10:15:30Z",
  "lastLogin_gte": "2007-12-03T10:15:30Z",
  "lastLogin_in": ["2007-12-03T10:15:30Z"],
  "lastLogin_lt": "2007-12-03T10:15:30Z",
  "lastLogin_lte": "2007-12-03T10:15:30Z",
  "lastLogin_ne": "2007-12-03T10:15:30Z",
  "lastLogin_nin": ["2007-12-03T10:15:30Z"],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "onBoarding": AccountOnBoardingWhereInput,
  "preferences": AccountPreferencesWhereInput,
  "protected_eq": true,
  "protected_ne": true,
  "recoveryEmail_contains": "xyz789",
  "recoveryEmail_ends_with": "xyz789",
  "recoveryEmail_eq": "abc123",
  "recoveryEmail_exists": true,
  "recoveryEmail_in": ["xyz789"],
  "recoveryEmail_ne": "abc123",
  "recoveryEmail_nin": ["xyz789"],
  "recoveryEmail_not_contains": "xyz789",
  "recoveryEmail_not_ends_with": "abc123",
  "recoveryEmail_not_starts_with": "xyz789",
  "recoveryEmail_starts_with": "xyz789",
  "requiresPasswordReset_eq": true,
  "requiresPasswordReset_ne": true,
  "roles": RoleWhereInput,
  "roles_all": ["4"],
  "roles_eq": [4],
  "roles_exists": false,
  "roles_in": [4],
  "roles_nin": [4],
  "seenFeatures": {},
  "system_eq": false,
  "system_ne": true,
  "template_all": ["4"],
  "template_eq": 4,
  "template_exists": true,
  "template_in": ["4"],
  "template_ne": "4",
  "template_nin": ["4"],
  "tutorialCompleted_eq": false,
  "tutorialCompleted_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4],
  "username_contains": "abc123",
  "username_ends_with": "abc123",
  "username_eq": "xyz789",
  "username_exists": true,
  "username_in": ["abc123"],
  "username_ne": "xyz789",
  "username_nin": ["xyz789"],
  "username_not_contains": "xyz789",
  "username_not_ends_with": "xyz789",
  "username_not_starts_with": "abc123",
  "username_starts_with": "xyz789"
}

AccountWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Action

Description

Represents a Action

Fields
Field NameDescription
ID - Int!
_id - ID
alert - Alert
alertId - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalog - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
dueDate - DateTime
element - Element
elementId - ID
files - [File]
filesIds - [ID]
finishDate - DateTime
input - ID
isLocked - Boolean
issueName - String
issues - [ActionIssue]
labelValues - [LabelValue]
labelValuesIds - [ID]
lockedBy - Account
lockedById - ID
log - [ActionLog]
name - String!
protected - Boolean
seenBy - [Account]
seenByIds - [ID]
site - Site
siteId - ID
status - ActionStatus
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "ID": 987,
  "_id": 4,
  "alert": Alert,
  "alertId": "4",
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "catalog": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "dueDate": "2007-12-03T10:15:30Z",
  "element": Element,
  "elementId": "4",
  "files": [File],
  "filesIds": ["4"],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": "4",
  "isLocked": false,
  "issueName": "abc123",
  "issues": [ActionIssue],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "lockedBy": Account,
  "lockedById": 4,
  "log": [ActionLog],
  "name": "abc123",
  "protected": true,
  "seenBy": [Account],
  "seenByIds": [4],
  "site": Site,
  "siteId": "4",
  "status": "CANT_DO",
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ActionCreateInput

Description

Represents a ActionCreateInput

Fields
Input FieldDescription
alert - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalog - ID
description - String
dueDate - DateTime
element - ID
files - [ID]
finishDate - DateTime
input - ID
issue - ID
issueName - String
issues - [ActionIssueCreateInput]
labelValues - [ID]
lockedBy - ID
name - String!
seenBy - [ID]
site - ID
status - ActionStatus
task - ID
Example
{
  "alert": 4,
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "catalog": "4",
  "description": "abc123",
  "dueDate": "2007-12-03T10:15:30Z",
  "element": 4,
  "files": ["4"],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": "4",
  "issue": 4,
  "issueName": "xyz789",
  "issues": [ActionIssueCreateInput],
  "labelValues": ["4"],
  "lockedBy": "4",
  "name": "abc123",
  "seenBy": ["4"],
  "site": 4,
  "status": "CANT_DO",
  "task": 4
}

ActionDistinctValues

Fields
Field NameDescription
ID - [ID]
assignedAccounts - [Account]
elements - [Element]
issues - [IssueInstance]
labelValues - [LabelValue]
lastUpdater - [Account]
names - [String]
parentElements - [Element]
parentSites - [Site]
rootElements - [Element]
rootSites - [Site]
sites - [Site]
status - [String]
Example
{
  "ID": ["4"],
  "assignedAccounts": [Account],
  "elements": [Element],
  "issues": [IssueInstance],
  "labelValues": [LabelValue],
  "lastUpdater": [Account],
  "names": ["xyz789"],
  "parentElements": [Element],
  "parentSites": [Site],
  "rootElements": [Element],
  "rootSites": [Site],
  "sites": [Site],
  "status": ["xyz789"]
}

ActionDraft

Description

Represents a ActionDraft

Fields
Field NameDescription
ID - Int!
_id - ID
alert - Alert
alertId - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalog - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
dueDate - ActionDraftDueDate
element - Element
elementId - ID
files - [File]
filesIds - [ID]
finishDate - DateTime
input - ID
issueName - String
issues - [ActionDraftIssue]
labelValues - [LabelValue]
labelValuesIds - [ID]
lockedBy - Account
lockedById - ID
log - [ActionDraftLog]
name - String!
protected - Boolean
seenBy - [Account]
seenByIds - [ID]
site - Site
siteId - ID
status - ActionDraftStatus
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "ID": 123,
  "_id": "4",
  "alert": Alert,
  "alertId": "4",
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "catalog": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "dueDate": ActionDraftDueDate,
  "element": Element,
  "elementId": "4",
  "files": [File],
  "filesIds": ["4"],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": "4",
  "issueName": "xyz789",
  "issues": [ActionDraftIssue],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "lockedBy": Account,
  "lockedById": 4,
  "log": [ActionDraftLog],
  "name": "xyz789",
  "protected": false,
  "seenBy": [Account],
  "seenByIds": ["4"],
  "site": Site,
  "siteId": 4,
  "status": "CANT_DO",
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ActionDraftCreateInput

Description

Represents a ActionDraftCreateInput

Fields
Input FieldDescription
alert - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalog - ID
description - String
dueDate - ActionDraftDueDateCreateInput
element - ID
files - [ID]
finishDate - DateTime
input - ID
issueName - String
issues - [ActionDraftIssueCreateInput]
labelValues - [ID]
lockedBy - ID
name - String!
seenBy - [ID]
site - ID
status - ActionDraftStatus
Example
{
  "alert": 4,
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "catalog": "4",
  "description": "abc123",
  "dueDate": ActionDraftDueDateCreateInput,
  "element": 4,
  "files": [4],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": 4,
  "issueName": "abc123",
  "issues": [ActionDraftIssueCreateInput],
  "labelValues": ["4"],
  "lockedBy": 4,
  "name": "abc123",
  "seenBy": ["4"],
  "site": "4",
  "status": "CANT_DO"
}

ActionDraftDueDate

Description

Represents a ActionDraftDueDate

Fields
Field NameDescription
amount - Int
timeUnit - ActionDraftDueDateTimeUnit
Example
{"amount": 987, "timeUnit": "days"}

ActionDraftDueDateCreateInput

Description

Represents a ActionDraftDueDateCreateInput

Fields
Input FieldDescription
amount - Int
timeUnit - ActionDraftDueDateTimeUnit
Example
{"amount": 123, "timeUnit": "days"}

ActionDraftDueDateTimeUnit

Values
Enum ValueDescription

days

hours

months

shifts

specific

weeks

years

Example
"days"

ActionDraftDueDateUpdateInput

Description

Represents a ActionDraftDueDateUpdateInput

Fields
Input FieldDescription
amount - Int
timeUnit - ActionDraftDueDateTimeUnit
Example
{"amount": 987, "timeUnit": "days"}

ActionDraftDueDateWhereInput

Description

Represents a Where input for: ActionDraftDueDate

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
timeUnit_eq - ActionDraftDueDateTimeUnitField is equal to given value
timeUnit_exists - ActionDraftDueDateTimeUnitField is set and exists
timeUnit_in - [ActionDraftDueDateTimeUnit]Given value includes field
timeUnit_ne - ActionDraftDueDateTimeUnitField is not equal to given value
timeUnit_nin - [ActionDraftDueDateTimeUnit]Given value does not includes field
Example
{
  "amount_eq": 123,
  "amount_exists": false,
  "amount_gt": 987,
  "amount_gte": 123,
  "amount_in": [123],
  "amount_lt": 987,
  "amount_lte": 987,
  "amount_ne": 987,
  "amount_nin": [987],
  "timeUnit_eq": "days",
  "timeUnit_exists": "days",
  "timeUnit_in": ["days"],
  "timeUnit_ne": "days",
  "timeUnit_nin": ["days"]
}

ActionDraftIssue

Description

Represents a ActionDraftIssue

Fields
Field NameDescription
input - ID
issue - IssueInstance
issueId - ID
task - ID
Example
{
  "input": 4,
  "issue": IssueInstance,
  "issueId": "4",
  "task": 4
}

ActionDraftIssueCreateInput

Description

Represents a ActionDraftIssueCreateInput

Fields
Input FieldDescription
input - ID
issue - ID
task - ID
Example
{"input": 4, "issue": 4, "task": "4"}

ActionDraftIssueUpdateInput

Description

Represents a ActionDraftIssueUpdateInput

Fields
Input FieldDescription
input - ID
issue - ID
task - ID
Example
{
  "input": "4",
  "issue": "4",
  "task": 4
}

ActionDraftIssueWhereInput

Description

Represents a Where input for: ActionDraftIssue

Fields
Input FieldDescription
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
task_all - [ID]Given value includes all in array
task_eq - IDField is equal to given value
task_exists - BooleanField is set and exists
task_in - [ID]Given value includes field
task_ne - IDField is not equal to given value
task_nin - [ID]Given value does not include field
Example
{
  "input_all": ["4"],
  "input_eq": 4,
  "input_exists": false,
  "input_in": [4],
  "input_ne": 4,
  "input_nin": [4],
  "issue_all": ["4"],
  "issue_eq": "4",
  "issue_exists": true,
  "issue_in": [4],
  "issue_ne": 4,
  "issue_nin": ["4"],
  "task_all": [4],
  "task_eq": "4",
  "task_exists": false,
  "task_in": ["4"],
  "task_ne": 4,
  "task_nin": ["4"]
}

ActionDraftLog

Description

Represents a ActionDraftLog

Fields
Field NameDescription
_id - ID
by - Account!
byId - ID!
date - DateTimeLog Date
files - [File]
filesIds - [ID]
message - String
modified - ActionDraftLogModified
type - ActionDraftLogType!
Example
{
  "_id": "4",
  "by": Account,
  "byId": "4",
  "date": "2007-12-03T10:15:30Z",
  "files": [File],
  "filesIds": [4],
  "message": "xyz789",
  "modified": ActionDraftLogModified,
  "type": "CREATED"
}

ActionDraftLogModified

Description

Represents a ActionDraftLogModified

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
description - String
dueDate - DateTime
element - Element
elementId - ID
files - [File]
filesIds - [ID]
finishDate - DateTime
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String
seenBy - [Account]
seenByIds - [ID]
site - Site
siteId - ID
status - ActionDraftLogModifiedStatus
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "description": "abc123",
  "dueDate": "2007-12-03T10:15:30Z",
  "element": Element,
  "elementId": 4,
  "files": [File],
  "filesIds": [4],
  "finishDate": "2007-12-03T10:15:30Z",
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "name": "xyz789",
  "seenBy": [Account],
  "seenByIds": [4],
  "site": Site,
  "siteId": 4,
  "status": "CANT_DO"
}

ActionDraftLogModifiedStatus

Values
Enum ValueDescription

CANT_DO

DOING

PENDING

SOLVED

Example
"CANT_DO"

ActionDraftLogModifiedWhereInput

Description

Represents a Where input for: ActionDraftLogModified

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dueDate_eq - DateTimeField is equal to given value
dueDate_exists - BooleanField is set and exists
dueDate_gt - DateTimeField is greater than given value
dueDate_gte - DateTimeField is greater or equal than given value
dueDate_in - [DateTime]Given value includes field
dueDate_lt - DateTimeField is lower than given value
dueDate_lte - DateTimeField is lower or equal than given value
dueDate_ne - DateTimeField is not equal to given value
dueDate_nin - [DateTime]Given value does not includes field
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
finishDate_eq - DateTimeField is equal to given value
finishDate_exists - BooleanField is set and exists
finishDate_gt - DateTimeField is greater than given value
finishDate_gte - DateTimeField is greater or equal than given value
finishDate_in - [DateTime]Given value includes field
finishDate_lt - DateTimeField is lower than given value
finishDate_lte - DateTimeField is lower or equal than given value
finishDate_ne - DateTimeField is not equal to given value
finishDate_nin - [DateTime]Given value does not includes field
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
status_eq - ActionDraftLogModifiedStatusField is equal to given value
status_exists - ActionDraftLogModifiedStatusField is set and exists
status_in - [ActionDraftLogModifiedStatus]Given value includes field
status_ne - ActionDraftLogModifiedStatusField is not equal to given value
status_nin - [ActionDraftLogModifiedStatus]Given value does not includes field
Example
{
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": [4],
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "dueDate_eq": "2007-12-03T10:15:30Z",
  "dueDate_exists": false,
  "dueDate_gt": "2007-12-03T10:15:30Z",
  "dueDate_gte": "2007-12-03T10:15:30Z",
  "dueDate_in": ["2007-12-03T10:15:30Z"],
  "dueDate_lt": "2007-12-03T10:15:30Z",
  "dueDate_lte": "2007-12-03T10:15:30Z",
  "dueDate_ne": "2007-12-03T10:15:30Z",
  "dueDate_nin": ["2007-12-03T10:15:30Z"],
  "element_all": [4],
  "element_eq": 4,
  "element_exists": false,
  "element_in": ["4"],
  "element_ne": "4",
  "element_nin": [4],
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": true,
  "files_in": [4],
  "files_nin": [4],
  "finishDate_eq": "2007-12-03T10:15:30Z",
  "finishDate_exists": true,
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_in": ["2007-12-03T10:15:30Z"],
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "finishDate_ne": "2007-12-03T10:15:30Z",
  "finishDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "seenBy_all": [4],
  "seenBy_eq": [4],
  "seenBy_exists": true,
  "seenBy_in": [4],
  "seenBy_nin": [4],
  "site_all": ["4"],
  "site_eq": 4,
  "site_exists": false,
  "site_in": [4],
  "site_ne": 4,
  "site_nin": [4],
  "status_eq": "CANT_DO",
  "status_exists": "CANT_DO",
  "status_in": ["CANT_DO"],
  "status_ne": "CANT_DO",
  "status_nin": ["CANT_DO"]
}

ActionDraftLogType

Values
Enum ValueDescription

CREATED

DESCRIPTION_UPDATE

ELEMENT_UPDATE

FILES_UPDATE

LABEL_VALUE_UPDATE

MESSAGE

NAME_UPDATE

REASSIGN_ACCOUNT

REASSIGN_LABEL_VALUE

RESCHEDULE

RESCHEDULE_FINISH_DATE

SITE_UPDATE

STATUS_UPDATE

Example
"CREATED"

ActionDraftLogWhereInput

Description

Represents a Where input for: ActionDraftLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
date_eq - DateTimeField is equal to given value
date_exists - BooleanField is set and exists
date_gt - DateTimeField is greater than given value
date_gte - DateTimeField is greater or equal than given value
date_in - [DateTime]Given value includes field
date_lt - DateTimeField is lower than given value
date_lte - DateTimeField is lower or equal than given value
date_ne - DateTimeField is not equal to given value
date_nin - [DateTime]Given value does not includes field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
message_contains - StringField contains given value, case-insensitive
message_ends_with - StringField ends with given value, case-insensitive
message_eq - StringField is equal to given value
message_exists - BooleanField is set and exists
message_in - [String]Given value includes field
message_ne - StringField is not equal to given value
message_nin - [String]Given value does not includes field
message_not_contains - StringField does not contains given value, case-insensitive
message_not_ends_with - StringField does not end with given value, case-insensitive
message_not_starts_with - StringField does not start with given value, case-insensitive
message_starts_with - StringField starts with given value, case-insensitive
modified - ActionDraftLogModifiedWhereInput
type_eq - ActionDraftLogTypeField is equal to given value
type_exists - ActionDraftLogTypeField is set and exists
type_in - [ActionDraftLogType]Given value includes field
type_ne - ActionDraftLogTypeField is not equal to given value
type_nin - [ActionDraftLogType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "by_all": ["4"],
  "by_eq": "4",
  "by_exists": false,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": ["4"],
  "date_eq": "2007-12-03T10:15:30Z",
  "date_exists": false,
  "date_gt": "2007-12-03T10:15:30Z",
  "date_gte": "2007-12-03T10:15:30Z",
  "date_in": ["2007-12-03T10:15:30Z"],
  "date_lt": "2007-12-03T10:15:30Z",
  "date_lte": "2007-12-03T10:15:30Z",
  "date_ne": "2007-12-03T10:15:30Z",
  "date_nin": ["2007-12-03T10:15:30Z"],
  "files_all": [4],
  "files_eq": [4],
  "files_exists": true,
  "files_in": ["4"],
  "files_nin": [4],
  "message_contains": "xyz789",
  "message_ends_with": "xyz789",
  "message_eq": "xyz789",
  "message_exists": true,
  "message_in": ["xyz789"],
  "message_ne": "xyz789",
  "message_nin": ["abc123"],
  "message_not_contains": "xyz789",
  "message_not_ends_with": "xyz789",
  "message_not_starts_with": "xyz789",
  "message_starts_with": "xyz789",
  "modified": ActionDraftLogModifiedWhereInput,
  "type_eq": "CREATED",
  "type_exists": "CREATED",
  "type_in": ["CREATED"],
  "type_ne": "CREATED",
  "type_nin": ["CREATED"]
}

ActionDraftOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

ID_ASC

ID_DESC

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

dueDate_amount_ASC

dueDate_amount_DESC

dueDate_timeUnit_ASC

dueDate_timeUnit_DESC

finishDate_ASC

finishDate_DESC

issueName_ASC

issueName_DESC

name_ASC

name_DESC

status_ASC

status_DESC

updatedAt_ASC

updatedAt_DESC

Example
"ID_ASC"

ActionDraftStatus

Values
Enum ValueDescription

CANT_DO

DOING

PENDING

SOLVED

Example
"CANT_DO"

ActionDraftUpdateInput

Description

Represents a ActionDraftUpdateInput

Fields
Input FieldDescription
alert - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalog - ID
description - String
dueDate - ActionDraftDueDateUpdateInput
element - ID
files - [ID]
finishDate - DateTime
input - ID
issueName - String
issues - [ActionDraftIssueUpdateInput]
labelValues - [ID]
lockedBy - ID
name - String
seenBy - [ID]
site - ID
status - ActionDraftStatus
Example
{
  "alert": "4",
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "catalog": "4",
  "description": "abc123",
  "dueDate": ActionDraftDueDateUpdateInput,
  "element": "4",
  "files": ["4"],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": 4,
  "issueName": "abc123",
  "issues": [ActionDraftIssueUpdateInput],
  "labelValues": [4],
  "lockedBy": "4",
  "name": "abc123",
  "seenBy": ["4"],
  "site": "4",
  "status": "CANT_DO"
}

ActionDraftWhereInput

Description

Represents a Where input for: ActionDraft

Fields
Input FieldDescription
ID_eq - IntField is equal to given value
ID_exists - BooleanField is set and exists
ID_gt - IntField is greater than given value
ID_gte - IntField is greater or equal than given value
ID_in - [Int]Given value includes field
ID_lt - IntField is lower than given value
ID_lte - IntField is lower or equal than given value
ID_ne - IntField is not equal to given value
ID_nin - [Int]Given value does not includes field
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
alert_all - [ID]Given value includes all in array
alert_eq - IDField is equal to given value
alert_exists - BooleanField is set and exists
alert_in - [ID]Given value includes field
alert_ne - IDField is not equal to given value
alert_nin - [ID]Given value does not include field
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalog_all - [ID]Given value includes all in array
catalog_eq - IDField is equal to given value
catalog_exists - BooleanField is set and exists
catalog_in - [ID]Given value includes field
catalog_ne - IDField is not equal to given value
catalog_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dueDate - ActionDraftDueDateWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
finishDate_eq - DateTimeField is equal to given value
finishDate_exists - BooleanField is set and exists
finishDate_gt - DateTimeField is greater than given value
finishDate_gte - DateTimeField is greater or equal than given value
finishDate_in - [DateTime]Given value includes field
finishDate_lt - DateTimeField is lower than given value
finishDate_lte - DateTimeField is lower or equal than given value
finishDate_ne - DateTimeField is not equal to given value
finishDate_nin - [DateTime]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueName_contains - StringField contains given value, case-insensitive
issueName_ends_with - StringField ends with given value, case-insensitive
issueName_eq - StringField is equal to given value
issueName_exists - BooleanField is set and exists
issueName_in - [String]Given value includes field
issueName_ne - StringField is not equal to given value
issueName_nin - [String]Given value does not includes field
issueName_not_contains - StringField does not contains given value, case-insensitive
issueName_not_ends_with - StringField does not end with given value, case-insensitive
issueName_not_starts_with - StringField does not start with given value, case-insensitive
issueName_starts_with - StringField starts with given value, case-insensitive
issues_every - ActionDraftIssueWhereInput
issues_exists - Boolean
issues_none - ActionDraftIssueWhereInput
issues_some - ActionDraftIssueWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
lockedBy_all - [ID]Given value includes all in array
lockedBy_eq - IDField is equal to given value
lockedBy_exists - BooleanField is set and exists
lockedBy_in - [ID]Given value includes field
lockedBy_ne - IDField is not equal to given value
lockedBy_nin - [ID]Given value does not include field
log_every - ActionDraftLogWhereInput
log_exists - Boolean
log_none - ActionDraftLogWhereInput
log_some - ActionDraftLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
status_eq - ActionDraftStatusField is equal to given value
status_exists - ActionDraftStatusField is set and exists
status_in - [ActionDraftStatus]Given value includes field
status_ne - ActionDraftStatusField is not equal to given value
status_nin - [ActionDraftStatus]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "ID_eq": 987,
  "ID_exists": true,
  "ID_gt": 123,
  "ID_gte": 987,
  "ID_in": [123],
  "ID_lt": 123,
  "ID_lte": 123,
  "ID_ne": 123,
  "ID_nin": [123],
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "alert_all": [4],
  "alert_eq": 4,
  "alert_exists": true,
  "alert_in": [4],
  "alert_ne": 4,
  "alert_nin": [4],
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "catalog_all": ["4"],
  "catalog_eq": 4,
  "catalog_exists": true,
  "catalog_in": ["4"],
  "catalog_ne": "4",
  "catalog_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "dueDate": ActionDraftDueDateWhereInput,
  "element_all": [4],
  "element_eq": "4",
  "element_exists": true,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": [4],
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": true,
  "files_in": ["4"],
  "files_nin": ["4"],
  "finishDate_eq": "2007-12-03T10:15:30Z",
  "finishDate_exists": true,
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_in": ["2007-12-03T10:15:30Z"],
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "finishDate_ne": "2007-12-03T10:15:30Z",
  "finishDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "input_all": ["4"],
  "input_eq": 4,
  "input_exists": true,
  "input_in": [4],
  "input_ne": "4",
  "input_nin": [4],
  "issueName_contains": "abc123",
  "issueName_ends_with": "abc123",
  "issueName_eq": "abc123",
  "issueName_exists": true,
  "issueName_in": ["abc123"],
  "issueName_ne": "xyz789",
  "issueName_nin": ["xyz789"],
  "issueName_not_contains": "xyz789",
  "issueName_not_ends_with": "abc123",
  "issueName_not_starts_with": "abc123",
  "issueName_starts_with": "abc123",
  "issues_every": ActionDraftIssueWhereInput,
  "issues_exists": false,
  "issues_none": ActionDraftIssueWhereInput,
  "issues_some": ActionDraftIssueWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "lockedBy_all": ["4"],
  "lockedBy_eq": "4",
  "lockedBy_exists": true,
  "lockedBy_in": [4],
  "lockedBy_ne": 4,
  "lockedBy_nin": ["4"],
  "log_every": ActionDraftLogWhereInput,
  "log_exists": false,
  "log_none": ActionDraftLogWhereInput,
  "log_some": ActionDraftLogWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "seenBy_all": ["4"],
  "seenBy_eq": [4],
  "seenBy_exists": false,
  "seenBy_in": [4],
  "seenBy_nin": ["4"],
  "site_all": ["4"],
  "site_eq": "4",
  "site_exists": true,
  "site_in": [4],
  "site_ne": 4,
  "site_nin": [4],
  "status_eq": "CANT_DO",
  "status_exists": "CANT_DO",
  "status_in": ["CANT_DO"],
  "status_ne": "CANT_DO",
  "status_nin": ["CANT_DO"],
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ActionDraftWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ActionIssue

Description

Represents a ActionIssue

Fields
Field NameDescription
input - ID
issue - IssueInstance
issueId - ID
task - ID
Example
{
  "input": "4",
  "issue": IssueInstance,
  "issueId": 4,
  "task": 4
}

ActionIssueCreateInput

Description

Represents a ActionIssueCreateInput

Fields
Input FieldDescription
input - ID
issue - ID
task - ID
Example
{"input": 4, "issue": 4, "task": "4"}

ActionIssueUpdateInput

Description

Represents a ActionIssueUpdateInput

Fields
Input FieldDescription
input - ID
issue - ID
task - ID
Example
{
  "input": "4",
  "issue": "4",
  "task": "4"
}

ActionIssueWhereInput

Description

Represents a Where input for: ActionIssue

Fields
Input FieldDescription
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issue - IssueInstanceWhereInput
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
task_all - [ID]Given value includes all in array
task_eq - IDField is equal to given value
task_exists - BooleanField is set and exists
task_in - [ID]Given value includes field
task_ne - IDField is not equal to given value
task_nin - [ID]Given value does not include field
Example
{
  "input_all": [4],
  "input_eq": 4,
  "input_exists": false,
  "input_in": ["4"],
  "input_ne": 4,
  "input_nin": [4],
  "issue": IssueInstanceWhereInput,
  "issue_all": ["4"],
  "issue_eq": 4,
  "issue_exists": true,
  "issue_in": [4],
  "issue_ne": 4,
  "issue_nin": [4],
  "task_all": [4],
  "task_eq": "4",
  "task_exists": false,
  "task_in": ["4"],
  "task_ne": "4",
  "task_nin": ["4"]
}

ActionIssuesMultipleUpdateInput

Fields
Input FieldDescription
_id - ID!
issues - [ActionIssueUpdateInput!]!
Example
{
  "_id": "4",
  "issues": [ActionIssueUpdateInput]
}

ActionLog

Description

Represents a ActionLog

Fields
Field NameDescription
_id - ID
by - Account!
byId - ID!
date - DateTimeLog Date
files - [File]
filesIds - [ID]
message - String
modified - ActionLogModified
type - ActionLogType!
Example
{
  "_id": 4,
  "by": Account,
  "byId": "4",
  "date": "2007-12-03T10:15:30Z",
  "files": [File],
  "filesIds": ["4"],
  "message": "abc123",
  "modified": ActionLogModified,
  "type": "CREATED"
}

ActionLogModified

Description

Represents a ActionLogModified

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
description - String
dueDate - DateTime
element - Element
elementId - ID
files - [File]
filesIds - [ID]
finishDate - DateTime
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String
seenBy - [Account]
seenByIds - [ID]
site - Site
siteId - ID
status - ActionLogModifiedStatus
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "description": "abc123",
  "dueDate": "2007-12-03T10:15:30Z",
  "element": Element,
  "elementId": 4,
  "files": [File],
  "filesIds": [4],
  "finishDate": "2007-12-03T10:15:30Z",
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "name": "xyz789",
  "seenBy": [Account],
  "seenByIds": ["4"],
  "site": Site,
  "siteId": 4,
  "status": "CANT_DO"
}

ActionLogModifiedStatus

Values
Enum ValueDescription

CANT_DO

DOING

PENDING

SOLVED

Example
"CANT_DO"

ActionLogModifiedWhereInput

Description

Represents a Where input for: ActionLogModified

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dueDate_eq - DateTimeField is equal to given value
dueDate_exists - BooleanField is set and exists
dueDate_gt - DateTimeField is greater than given value
dueDate_gte - DateTimeField is greater or equal than given value
dueDate_in - [DateTime]Given value includes field
dueDate_lt - DateTimeField is lower than given value
dueDate_lte - DateTimeField is lower or equal than given value
dueDate_ne - DateTimeField is not equal to given value
dueDate_nin - [DateTime]Given value does not includes field
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
finishDate_eq - DateTimeField is equal to given value
finishDate_exists - BooleanField is set and exists
finishDate_gt - DateTimeField is greater than given value
finishDate_gte - DateTimeField is greater or equal than given value
finishDate_in - [DateTime]Given value includes field
finishDate_lt - DateTimeField is lower than given value
finishDate_lte - DateTimeField is lower or equal than given value
finishDate_ne - DateTimeField is not equal to given value
finishDate_nin - [DateTime]Given value does not includes field
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
status_eq - ActionLogModifiedStatusField is equal to given value
status_exists - ActionLogModifiedStatusField is set and exists
status_in - [ActionLogModifiedStatus]Given value includes field
status_ne - ActionLogModifiedStatusField is not equal to given value
status_nin - [ActionLogModifiedStatus]Given value does not includes field
Example
{
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "dueDate_eq": "2007-12-03T10:15:30Z",
  "dueDate_exists": false,
  "dueDate_gt": "2007-12-03T10:15:30Z",
  "dueDate_gte": "2007-12-03T10:15:30Z",
  "dueDate_in": ["2007-12-03T10:15:30Z"],
  "dueDate_lt": "2007-12-03T10:15:30Z",
  "dueDate_lte": "2007-12-03T10:15:30Z",
  "dueDate_ne": "2007-12-03T10:15:30Z",
  "dueDate_nin": ["2007-12-03T10:15:30Z"],
  "element_all": [4],
  "element_eq": 4,
  "element_exists": true,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": ["4"],
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": false,
  "files_in": ["4"],
  "files_nin": ["4"],
  "finishDate_eq": "2007-12-03T10:15:30Z",
  "finishDate_exists": true,
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_in": ["2007-12-03T10:15:30Z"],
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "finishDate_ne": "2007-12-03T10:15:30Z",
  "finishDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "seenBy_all": [4],
  "seenBy_eq": ["4"],
  "seenBy_exists": false,
  "seenBy_in": [4],
  "seenBy_nin": [4],
  "site_all": ["4"],
  "site_eq": "4",
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": "4",
  "site_nin": ["4"],
  "status_eq": "CANT_DO",
  "status_exists": "CANT_DO",
  "status_in": ["CANT_DO"],
  "status_ne": "CANT_DO",
  "status_nin": ["CANT_DO"]
}

ActionLogType

Values
Enum ValueDescription

CREATED

DESCRIPTION_UPDATE

ELEMENT_UPDATE

FILES_UPDATE

LABEL_VALUE_UPDATE

MESSAGE

NAME_UPDATE

REASSIGN_ACCOUNT

REASSIGN_LABEL_VALUE

RESCHEDULE

RESCHEDULE_FINISH_DATE

SITE_UPDATE

STATUS_UPDATE

Example
"CREATED"

ActionLogWhereInput

Description

Represents a Where input for: ActionLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
date_eq - DateTimeField is equal to given value
date_exists - BooleanField is set and exists
date_gt - DateTimeField is greater than given value
date_gte - DateTimeField is greater or equal than given value
date_in - [DateTime]Given value includes field
date_lt - DateTimeField is lower than given value
date_lte - DateTimeField is lower or equal than given value
date_ne - DateTimeField is not equal to given value
date_nin - [DateTime]Given value does not includes field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
message_contains - StringField contains given value, case-insensitive
message_ends_with - StringField ends with given value, case-insensitive
message_eq - StringField is equal to given value
message_exists - BooleanField is set and exists
message_in - [String]Given value includes field
message_ne - StringField is not equal to given value
message_nin - [String]Given value does not includes field
message_not_contains - StringField does not contains given value, case-insensitive
message_not_ends_with - StringField does not end with given value, case-insensitive
message_not_starts_with - StringField does not start with given value, case-insensitive
message_starts_with - StringField starts with given value, case-insensitive
modified - ActionLogModifiedWhereInput
type_eq - ActionLogTypeField is equal to given value
type_exists - ActionLogTypeField is set and exists
type_in - [ActionLogType]Given value includes field
type_ne - ActionLogTypeField is not equal to given value
type_nin - [ActionLogType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "by_all": [4],
  "by_eq": "4",
  "by_exists": true,
  "by_in": [4],
  "by_ne": "4",
  "by_nin": ["4"],
  "date_eq": "2007-12-03T10:15:30Z",
  "date_exists": true,
  "date_gt": "2007-12-03T10:15:30Z",
  "date_gte": "2007-12-03T10:15:30Z",
  "date_in": ["2007-12-03T10:15:30Z"],
  "date_lt": "2007-12-03T10:15:30Z",
  "date_lte": "2007-12-03T10:15:30Z",
  "date_ne": "2007-12-03T10:15:30Z",
  "date_nin": ["2007-12-03T10:15:30Z"],
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": true,
  "files_in": [4],
  "files_nin": ["4"],
  "message_contains": "abc123",
  "message_ends_with": "abc123",
  "message_eq": "abc123",
  "message_exists": true,
  "message_in": ["xyz789"],
  "message_ne": "abc123",
  "message_nin": ["xyz789"],
  "message_not_contains": "xyz789",
  "message_not_ends_with": "xyz789",
  "message_not_starts_with": "xyz789",
  "message_starts_with": "xyz789",
  "modified": ActionLogModifiedWhereInput,
  "type_eq": "CREATED",
  "type_exists": "CREATED",
  "type_in": ["CREATED"],
  "type_ne": "CREATED",
  "type_nin": ["CREATED"]
}

ActionOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

ID_ASC

ID_DESC

_id_ASC

_id_DESC

assignedAccounts_name_ASC

assignedAccounts_name_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

dueDate_ASC

dueDate_DESC

element_name_ASC

element_name_DESC

finishDate_ASC

finishDate_DESC

issueName_ASC

issueName_DESC

issues_issue_name_ASC

issues_issue_name_DESC

labelValues_value_ASC

labelValues_value_DESC

lastUpdater_ASC

lastUpdater_DESC

name_ASC

name_DESC

parentElement_name_ASC

parentElement_name_DESC

parentSite_name_ASC

parentSite_name_DESC

rootElement_name_ASC

rootElement_name_DESC

rootSite_name_ASC

rootSite_name_DESC

site_name_ASC

site_name_DESC

status_ASC

status_DESC

updatedAt_ASC

updatedAt_DESC

Example
"ID_ASC"

ActionStatus

Values
Enum ValueDescription

CANT_DO

DOING

PENDING

SOLVED

Example
"CANT_DO"

ActionUpdateInput

Description

Represents a ActionUpdateInput

Fields
Input FieldDescription
_id - ID
alert - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalog - ID
description - String
dueDate - DateTime
element - ID
files - [ID]
finishDate - DateTime
input - ID
issueName - String
issues - [ActionIssueUpdateInput]
labelValues - [ID]
lockedBy - ID
name - String
seenBy - [ID]
site - ID
status - ActionStatus
Example
{
  "_id": 4,
  "alert": 4,
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "catalog": 4,
  "description": "abc123",
  "dueDate": "2007-12-03T10:15:30Z",
  "element": 4,
  "files": [4],
  "finishDate": "2007-12-03T10:15:30Z",
  "input": "4",
  "issueName": "xyz789",
  "issues": [ActionIssueUpdateInput],
  "labelValues": [4],
  "lockedBy": 4,
  "name": "abc123",
  "seenBy": [4],
  "site": "4",
  "status": "CANT_DO"
}

ActionWhereInput

Description

Represents a Where input for: Action

Fields
Input FieldDescription
AND - [AndActionsWhereInput]
ID_eq - IntField is equal to given value
ID_exists - BooleanField is set and exists
ID_gt - IntField is greater than given value
ID_gte - IntField is greater or equal than given value
ID_in - [Int]Given value includes field
ID_lt - IntField is lower than given value
ID_lte - IntField is lower or equal than given value
ID_ne - IntField is not equal to given value
ID_nin - [Int]Given value does not includes field
OR - [OrActionsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
alert_all - [ID]Given value includes all in array
alert_eq - IDField is equal to given value
alert_exists - BooleanField is set and exists
alert_in - [ID]Given value includes field
alert_ne - IDField is not equal to given value
alert_nin - [ID]Given value does not include field
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalog_all - [ID]Given value includes all in array
catalog_eq - IDField is equal to given value
catalog_exists - BooleanField is set and exists
catalog_in - [ID]
catalog_ne - IDField is not equal to given value
catalog_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dueDate_eq - DateTimeField is equal to given value
dueDate_exists - BooleanField is set and exists
dueDate_gt - DateTimeField is greater than given value
dueDate_gte - DateTimeField is greater or equal than given value
dueDate_in - [DateTime]Given value includes field
dueDate_lt - DateTimeField is lower than given value
dueDate_lte - DateTimeField is lower or equal than given value
dueDate_ne - DateTimeField is not equal to given value
dueDate_nin - [DateTime]Given value does not includes field
element - ElementWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
finishDate_eq - DateTimeField is equal to given value
finishDate_exists - BooleanField is set and exists
finishDate_gt - DateTimeField is greater than given value
finishDate_gte - DateTimeField is greater or equal than given value
finishDate_in - [DateTime]Given value includes field
finishDate_lt - DateTimeField is lower than given value
finishDate_lte - DateTimeField is lower or equal than given value
finishDate_ne - DateTimeField is not equal to given value
finishDate_nin - [DateTime]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueName_contains - StringField contains given value, case-insensitive
issueName_ends_with - StringField ends with given value, case-insensitive
issueName_eq - StringField is equal to given value
issueName_exists - BooleanField is set and exists
issueName_in - [String]Given value includes field
issueName_ne - StringField is not equal to given value
issueName_nin - [String]Given value does not includes field
issueName_not_contains - StringField does not contains given value, case-insensitive
issueName_not_ends_with - StringField does not end with given value, case-insensitive
issueName_not_starts_with - StringField does not start with given value, case-insensitive
issueName_starts_with - StringField starts with given value, case-insensitive
issue_eq - ID
issues_every - ActionIssueWhereInput
issues_exists - Boolean
issues_none - ActionIssueWhereInput
issues_some - ActionIssueWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
lockedBy_all - [ID]Given value includes all in array
lockedBy_eq - IDField is equal to given value
lockedBy_exists - BooleanField is set and exists
lockedBy_in - [ID]Given value includes field
lockedBy_ne - IDField is not equal to given value
lockedBy_nin - [ID]Given value does not include field
log_every - ActionLogWhereInput
log_exists - Boolean
log_none - ActionLogWhereInput
log_some - ActionLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
site - SiteWhereInput
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
status_eq - ActionStatusField is equal to given value
status_exists - ActionStatusField is set and exists
status_in - [ActionStatus]Given value includes field
status_ne - ActionStatusField is not equal to given value
status_nin - [ActionStatus]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
task_eq - ID
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndActionsWhereInput],
  "ID_eq": 123,
  "ID_exists": true,
  "ID_gt": 987,
  "ID_gte": 123,
  "ID_in": [987],
  "ID_lt": 123,
  "ID_lte": 123,
  "ID_ne": 123,
  "ID_nin": [123],
  "OR": [OrActionsWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "alert_all": ["4"],
  "alert_eq": 4,
  "alert_exists": false,
  "alert_in": [4],
  "alert_ne": "4",
  "alert_nin": [4],
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": [4],
  "catalog_all": ["4"],
  "catalog_eq": 4,
  "catalog_exists": true,
  "catalog_in": ["4"],
  "catalog_ne": 4,
  "catalog_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "dueDate_eq": "2007-12-03T10:15:30Z",
  "dueDate_exists": true,
  "dueDate_gt": "2007-12-03T10:15:30Z",
  "dueDate_gte": "2007-12-03T10:15:30Z",
  "dueDate_in": ["2007-12-03T10:15:30Z"],
  "dueDate_lt": "2007-12-03T10:15:30Z",
  "dueDate_lte": "2007-12-03T10:15:30Z",
  "dueDate_ne": "2007-12-03T10:15:30Z",
  "dueDate_nin": ["2007-12-03T10:15:30Z"],
  "element": ElementWhereInput,
  "element_all": [4],
  "element_eq": 4,
  "element_exists": false,
  "element_in": [4],
  "element_ne": 4,
  "element_nin": ["4"],
  "files_all": ["4"],
  "files_eq": ["4"],
  "files_exists": false,
  "files_in": ["4"],
  "files_nin": ["4"],
  "finishDate_eq": "2007-12-03T10:15:30Z",
  "finishDate_exists": true,
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_in": ["2007-12-03T10:15:30Z"],
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "finishDate_ne": "2007-12-03T10:15:30Z",
  "finishDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "input_all": [4],
  "input_eq": 4,
  "input_exists": true,
  "input_in": [4],
  "input_ne": 4,
  "input_nin": [4],
  "issueName_contains": "xyz789",
  "issueName_ends_with": "xyz789",
  "issueName_eq": "abc123",
  "issueName_exists": true,
  "issueName_in": ["xyz789"],
  "issueName_ne": "abc123",
  "issueName_nin": ["xyz789"],
  "issueName_not_contains": "abc123",
  "issueName_not_ends_with": "abc123",
  "issueName_not_starts_with": "abc123",
  "issueName_starts_with": "xyz789",
  "issue_eq": 4,
  "issues_every": ActionIssueWhereInput,
  "issues_exists": true,
  "issues_none": ActionIssueWhereInput,
  "issues_some": ActionIssueWhereInput,
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "lockedBy_all": ["4"],
  "lockedBy_eq": 4,
  "lockedBy_exists": true,
  "lockedBy_in": ["4"],
  "lockedBy_ne": "4",
  "lockedBy_nin": ["4"],
  "log_every": ActionLogWhereInput,
  "log_exists": false,
  "log_none": ActionLogWhereInput,
  "log_some": ActionLogWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "protected_eq": false,
  "protected_ne": false,
  "seenBy_all": ["4"],
  "seenBy_eq": [4],
  "seenBy_exists": true,
  "seenBy_in": [4],
  "seenBy_nin": ["4"],
  "site": SiteWhereInput,
  "site_all": [4],
  "site_eq": "4",
  "site_exists": true,
  "site_in": [4],
  "site_ne": "4",
  "site_nin": [4],
  "status_eq": "CANT_DO",
  "status_exists": "CANT_DO",
  "status_in": ["CANT_DO"],
  "status_ne": "CANT_DO",
  "status_nin": ["CANT_DO"],
  "system_eq": false,
  "system_ne": true,
  "task_eq": "4",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

ActionWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ActionsCountMultiple

Fields
Field NameDescription
count - [Int]
Example
{"count": [123]}

AddFileToMediaLibraryInfo

Fields
Field NameDescription
updated - Int
Example
{"updated": 123}

AgoraIOToken

Fields
Field NameDescription
rtc_token - StringThe RTC token
rtm_token - StringThe RTM token
uid - StringThe UID
Example
{
  "rtc_token": "xyz789",
  "rtm_token": "abc123",
  "uid": "abc123"
}

Alarm

Description

Represents a Alarm

Fields
Field NameDescription
_id - ID
accounts - [Account]
accountsIds - [ID]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
id - Stringalarm id
name - Stringalarm name
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "accounts": [Account],
  "accountsIds": ["4"],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "id": "abc123",
  "name": "xyz789",
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

AlarmTaskStatus

Values
Enum ValueDescription

disabled

enabled

Example
"disabled"

AlarmTaskTriggerCondition

Values
Enum ValueDescription

equalTo

equalToOrGreaterThan

equalToOrLessThan

greaterThan

insideRange

lessThan

notEqualTo

outsideRange

Example
"equalTo"

AlarmTaskTriggerFunctionName

Values
Enum ValueDescription

count

first

last

max

mean

median

min

spread

stddev

sum

Example
"count"

AlarmTaskTriggerRangeValuesType

Fields
Input FieldDescription
lower - Float!
upper - Float!
Example
{"lower": 123.45, "upper": 123.45}

AlarmTaskTriggerType

Values
Enum ValueDescription

deadman

relative

threshold

Example
"deadman"

AlarmTaskTriggerWhen

Values
Enum ValueDescription

change

changePercentage

Example
"change"

AlarmTypes

Values
Enum ValueDescription

InfluxDBV2

Kapacitor

None

Example
"InfluxDBV2"

Alert

Description

Represents a Alert

Fields
Field NameDescription
_id - ID
closedAt - DateTime
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
element - Element
elementId - ID
input - Input
issue - IssueInstance
issueId - ID
log - [AlertLog]
name - String!Alert subject/name
protected - Boolean
site - Site!
siteId - ID!
system - Boolean
task - ID
taskGroup - ID
trigger - AlertTrigger
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "closedAt": "2007-12-03T10:15:30Z",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "element": Element,
  "elementId": "4",
  "input": Input,
  "issue": IssueInstance,
  "issueId": "4",
  "log": [AlertLog],
  "name": "xyz789",
  "protected": false,
  "site": Site,
  "siteId": 4,
  "system": false,
  "task": "4",
  "taskGroup": 4,
  "trigger": AlertTrigger,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

AlertLog

Description

Represents a AlertLog

Fields
Field NameDescription
_id - ID
by - Account
byId - ID
date - DateTimeLog Date
message - String
type - AlertLogType!
Example
{
  "_id": 4,
  "by": Account,
  "byId": 4,
  "date": "2007-12-03T10:15:30Z",
  "message": "xyz789",
  "type": "ACTION_CREATE"
}

AlertLogType

Values
Enum ValueDescription

ACTION_CREATE

CLOSE

CREATED

INPUT_UPDATED

MESSAGE

Example
"ACTION_CREATE"

AlertLogWhereInput

Description

Represents a Where input for: AlertLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
date_eq - DateTimeField is equal to given value
date_exists - BooleanField is set and exists
date_gt - DateTimeField is greater than given value
date_gte - DateTimeField is greater or equal than given value
date_in - [DateTime]Given value includes field
date_lt - DateTimeField is lower than given value
date_lte - DateTimeField is lower or equal than given value
date_ne - DateTimeField is not equal to given value
date_nin - [DateTime]Given value does not includes field
message_contains - StringField contains given value, case-insensitive
message_ends_with - StringField ends with given value, case-insensitive
message_eq - StringField is equal to given value
message_exists - BooleanField is set and exists
message_in - [String]Given value includes field
message_ne - StringField is not equal to given value
message_nin - [String]Given value does not includes field
message_not_contains - StringField does not contains given value, case-insensitive
message_not_ends_with - StringField does not end with given value, case-insensitive
message_not_starts_with - StringField does not start with given value, case-insensitive
message_starts_with - StringField starts with given value, case-insensitive
type_eq - AlertLogTypeField is equal to given value
type_exists - AlertLogTypeField is set and exists
type_in - [AlertLogType]Given value includes field
type_ne - AlertLogTypeField is not equal to given value
type_nin - [AlertLogType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": false,
  "by_in": [4],
  "by_ne": 4,
  "by_nin": ["4"],
  "date_eq": "2007-12-03T10:15:30Z",
  "date_exists": false,
  "date_gt": "2007-12-03T10:15:30Z",
  "date_gte": "2007-12-03T10:15:30Z",
  "date_in": ["2007-12-03T10:15:30Z"],
  "date_lt": "2007-12-03T10:15:30Z",
  "date_lte": "2007-12-03T10:15:30Z",
  "date_ne": "2007-12-03T10:15:30Z",
  "date_nin": ["2007-12-03T10:15:30Z"],
  "message_contains": "abc123",
  "message_ends_with": "xyz789",
  "message_eq": "xyz789",
  "message_exists": true,
  "message_in": ["abc123"],
  "message_ne": "abc123",
  "message_nin": ["xyz789"],
  "message_not_contains": "xyz789",
  "message_not_ends_with": "abc123",
  "message_not_starts_with": "xyz789",
  "message_starts_with": "abc123",
  "type_eq": "ACTION_CREATE",
  "type_exists": "ACTION_CREATE",
  "type_in": ["ACTION_CREATE"],
  "type_ne": "ACTION_CREATE",
  "type_nin": ["ACTION_CREATE"]
}

AlertOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

closedAt_ASC

closedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

element_name_ASC

element_name_DESC

input_container_ASC

input_container_DESC

input_description_ASC

input_description_DESC

input_name_ASC

input_name_DESC

input_order_ASC

input_order_DESC

input_tag_ASC

input_tag_DESC

input_tooltip_ASC

input_tooltip_DESC

input_type_ASC

input_type_DESC

name_ASC

name_DESC

site_name_ASC

site_name_DESC

trigger_amount_ASC

trigger_amount_DESC

trigger_condition_ASC

trigger_condition_DESC

trigger_showIn_ASC

trigger_showIn_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AlertTrigger

Description

Represents a AlertTrigger

Fields
Field NameDescription
amount - Int!Amount in minutes
condition - AlertTriggerCondition
showIn - AlertTriggerShowIn
Example
{"amount": 123, "condition": "AFTER", "showIn": "DAYS"}

AlertTriggerCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

AlertTriggerShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

AlertTriggerWhereInput

Description

Represents a Where input for: AlertTrigger

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - AlertTriggerConditionField is equal to given value
condition_exists - AlertTriggerConditionField is set and exists
condition_in - [AlertTriggerCondition]Given value includes field
condition_ne - AlertTriggerConditionField is not equal to given value
condition_nin - [AlertTriggerCondition]Given value does not includes field
showIn_eq - AlertTriggerShowInField is equal to given value
showIn_exists - AlertTriggerShowInField is set and exists
showIn_in - [AlertTriggerShowIn]Given value includes field
showIn_ne - AlertTriggerShowInField is not equal to given value
showIn_nin - [AlertTriggerShowIn]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": false,
  "amount_gt": 987,
  "amount_gte": 987,
  "amount_in": [123],
  "amount_lt": 123,
  "amount_lte": 987,
  "amount_ne": 987,
  "amount_nin": [987],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

AlertWhereInput

Description

Represents a Where input for: Alert

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
closedAt_eq - DateTimeField is equal to given value
closedAt_exists - BooleanField is set and exists
closedAt_gt - DateTimeField is greater than given value
closedAt_gte - DateTimeField is greater or equal than given value
closedAt_in - [DateTime]Given value includes field
closedAt_lt - DateTimeField is lower than given value
closedAt_lte - DateTimeField is lower or equal than given value
closedAt_ne - DateTimeField is not equal to given value
closedAt_nin - [DateTime]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
log_every - AlertLogWhereInput
log_exists - Boolean
log_none - AlertLogWhereInput
log_some - AlertLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskGroup_all - [ID]Given value includes all in array
taskGroup_eq - IDField is equal to given value
taskGroup_exists - BooleanField is set and exists
taskGroup_in - [ID]Given value includes field
taskGroup_ne - IDField is not equal to given value
taskGroup_nin - [ID]Given value does not include field
task_all - [ID]Given value includes all in array
task_eq - IDField is equal to given value
task_exists - BooleanField is set and exists
task_in - [ID]Given value includes field
task_ne - IDField is not equal to given value
task_nin - [ID]Given value does not include field
trigger - AlertTriggerWhereInput
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "closedAt_eq": "2007-12-03T10:15:30Z",
  "closedAt_exists": true,
  "closedAt_gt": "2007-12-03T10:15:30Z",
  "closedAt_gte": "2007-12-03T10:15:30Z",
  "closedAt_in": ["2007-12-03T10:15:30Z"],
  "closedAt_lt": "2007-12-03T10:15:30Z",
  "closedAt_lte": "2007-12-03T10:15:30Z",
  "closedAt_ne": "2007-12-03T10:15:30Z",
  "closedAt_nin": ["2007-12-03T10:15:30Z"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "element_all": ["4"],
  "element_eq": "4",
  "element_exists": true,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": ["4"],
  "issue_all": ["4"],
  "issue_eq": "4",
  "issue_exists": true,
  "issue_in": ["4"],
  "issue_ne": "4",
  "issue_nin": [4],
  "log_every": AlertLogWhereInput,
  "log_exists": false,
  "log_none": AlertLogWhereInput,
  "log_some": AlertLogWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": true,
  "site_all": [4],
  "site_eq": 4,
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": 4,
  "site_nin": ["4"],
  "system_eq": true,
  "system_ne": true,
  "taskGroup_all": [4],
  "taskGroup_eq": "4",
  "taskGroup_exists": false,
  "taskGroup_in": [4],
  "taskGroup_ne": 4,
  "taskGroup_nin": ["4"],
  "task_all": [4],
  "task_eq": "4",
  "task_exists": true,
  "task_in": [4],
  "task_ne": "4",
  "task_nin": [4],
  "trigger": AlertTriggerWhereInput,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

AlertWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Anchor

Description

Represents a Anchor

Fields
Field NameDescription
_id - ID
area - Area
areaId - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringAnchor short description
photo - File
photoId - ID
protected - Boolean
spatialAnchorId - String!Azure spatial anchor Id
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "area": Area,
  "areaId": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "photo": File,
  "photoId": "4",
  "protected": true,
  "spatialAnchorId": "xyz789",
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

AnchorCreateInput

Description

Represents a AnchorCreateInput

Fields
Input FieldDescription
area - ID
description - StringAnchor short description
photo - ID
spatialAnchorId - String!Azure spatial anchor Id
Example
{
  "area": "4",
  "description": "xyz789",
  "photo": "4",
  "spatialAnchorId": "abc123"
}

AnchorImage

Description

Represents a AnchorImage

Fields
Field NameDescription
_id - ID
coordinates - [Float!]!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
height - FloatImage Anchor heigth
markers - [Marker]
markersCount - Int
name - String!Image Anchor name
photo - File!
photoId - ID!
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "coordinates": [123.45],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "height": 987.65,
  "markers": [Marker],
  "markersCount": 123,
  "name": "abc123",
  "photo": File,
  "photoId": "4",
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

AnchorImageCreateInput

Description

Represents a AnchorImageCreateInput

Fields
Input FieldDescription
coordinates - [Float!]!
height - FloatImage Anchor heigth
name - String!Image Anchor name
photo - ID!
Example
{
  "coordinates": [987.65],
  "height": 123.45,
  "name": "abc123",
  "photo": 4
}

AnchorImageOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

height_ASC

height_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AnchorImageUpdateInput

Description

Represents a AnchorImageUpdateInput

Fields
Input FieldDescription
coordinates - [Float]
height - FloatImage Anchor heigth
name - StringImage Anchor name
photo - ID
Example
{
  "coordinates": [123.45],
  "height": 987.65,
  "name": "abc123",
  "photo": "4"
}

AnchorImageWhereInput

Description

Represents a Where input for: AnchorImage

Fields
Input FieldDescription
OR - [OrAnchorImagesWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
coordinates_all - [Int]Field includes all given values.
coordinates_eq - [Int]Given value is equal to field
coordinates_exists - Boolean
coordinates_in - [Int]Field includes one of given value.
coordinates_nin - [Int]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
elements_every - ElementWhereInput
elements_none - ElementWhereInput
elements_some - ElementWhereInput
height_eq - FloatField is equal to given value
height_exists - BooleanField is set and exists
height_gt - FloatField is greater than given value
height_gte - FloatField is greater or equal than given value
height_in - [Float]Given value includes field
height_lt - FloatField is lower than given value
height_lte - FloatField is lower or equal than given value
height_ne - FloatField is not equal to given value
height_nin - [Float]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
photo_all - [ID]Given value includes all in array
photo_eq - IDField is equal to given value
photo_exists - BooleanField is set and exists
photo_in - [ID]Given value includes field
photo_ne - IDField is not equal to given value
photo_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrAnchorImagesWhereInput],
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "coordinates_all": [987],
  "coordinates_eq": [123],
  "coordinates_exists": false,
  "coordinates_in": [123],
  "coordinates_nin": [987],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "elements_every": ElementWhereInput,
  "elements_none": ElementWhereInput,
  "elements_some": ElementWhereInput,
  "height_eq": 987.65,
  "height_exists": true,
  "height_gt": 987.65,
  "height_gte": 987.65,
  "height_in": [987.65],
  "height_lt": 123.45,
  "height_lte": 987.65,
  "height_ne": 123.45,
  "height_nin": [987.65],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "photo_all": [4],
  "photo_eq": "4",
  "photo_exists": false,
  "photo_in": [4],
  "photo_ne": "4",
  "photo_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

AnchorImageWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

AnchorOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

spatialAnchorId_ASC

spatialAnchorId_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AnchorUpdateInput

Description

Represents a AnchorUpdateInput

Fields
Input FieldDescription
area - ID
description - StringAnchor short description
photo - ID
spatialAnchorId - StringAzure spatial anchor Id
Example
{
  "area": "4",
  "description": "abc123",
  "photo": 4,
  "spatialAnchorId": "abc123"
}

AnchorWhereInput

Description

Represents a Where input for: Anchor

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
area_all - [ID]Given value includes all in array
area_eq - IDField is equal to given value
area_exists - BooleanField is set and exists
area_in - [ID]Given value includes field
area_ne - IDField is not equal to given value
area_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
photo_all - [ID]Given value includes all in array
photo_eq - IDField is equal to given value
photo_exists - BooleanField is set and exists
photo_in - [ID]Given value includes field
photo_ne - IDField is not equal to given value
photo_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
spatialAnchorId_contains - StringField contains given value, case-insensitive
spatialAnchorId_ends_with - StringField ends with given value, case-insensitive
spatialAnchorId_eq - StringField is equal to given value
spatialAnchorId_exists - BooleanField is set and exists
spatialAnchorId_in - [String]Given value includes field
spatialAnchorId_ne - StringField is not equal to given value
spatialAnchorId_nin - [String]Given value does not includes field
spatialAnchorId_not_contains - StringField does not contains given value, case-insensitive
spatialAnchorId_not_ends_with - StringField does not end with given value, case-insensitive
spatialAnchorId_not_starts_with - StringField does not start with given value, case-insensitive
spatialAnchorId_starts_with - StringField starts with given value, case-insensitive
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "area_all": ["4"],
  "area_eq": "4",
  "area_exists": false,
  "area_in": [4],
  "area_ne": "4",
  "area_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "photo_all": [4],
  "photo_eq": 4,
  "photo_exists": true,
  "photo_in": [4],
  "photo_ne": 4,
  "photo_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "spatialAnchorId_contains": "xyz789",
  "spatialAnchorId_ends_with": "xyz789",
  "spatialAnchorId_eq": "xyz789",
  "spatialAnchorId_exists": false,
  "spatialAnchorId_in": ["abc123"],
  "spatialAnchorId_ne": "xyz789",
  "spatialAnchorId_nin": ["xyz789"],
  "spatialAnchorId_not_contains": "abc123",
  "spatialAnchorId_not_ends_with": "xyz789",
  "spatialAnchorId_not_starts_with": "xyz789",
  "spatialAnchorId_starts_with": "abc123",
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

AnchorWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

AndActionsWhereInput

Fields
Input FieldDescription
OR - [OrActionsWhereInput]
Example
{"OR": [OrActionsWhereInput]}

AndAgendaJobsWhereInput

Fields
Input FieldDescription
OR - [OrAgendaJobsWhereInput]
data - MyCalendarWhereData
Example
{
  "OR": [OrAgendaJobsWhereInput],
  "data": MyCalendarWhereData
}

AndElementWhereInput

Fields
Input FieldDescription
name_contains - String
name_not_contains - String
parent_exists - Boolean
Example
{
  "name_contains": "abc123",
  "name_not_contains": "xyz789",
  "parent_exists": false
}

AndIssuesWhereInput

Fields
Input FieldDescription
OR - [OrIssuesWhereInput]
Example
{"OR": [OrIssuesWhereInput]}

AndLocationAddressWhereInput

Fields
Input FieldDescription
OR - [OrLocationAddressWhereInput]
Example
{"OR": [OrLocationAddressWhereInput]}

AndProfileWhereInput

Fields
Input FieldDescription
_id_eq - ID
name_contains - String
name_not_contains - String
Example
{
  "_id_eq": 4,
  "name_contains": "xyz789",
  "name_not_contains": "abc123"
}

AndRequestTemplateWhereInput

Fields
Input FieldDescription
OR - [OrRequestTemplateWhereInput]
title_contains - String
Example
{
  "OR": [OrRequestTemplateWhereInput],
  "title_contains": "abc123"
}

AndSiteWhereInput

Fields
Input FieldDescription
_id_eq - ID
name_contains - String
name_not_contains - String
Example
{
  "_id_eq": "4",
  "name_contains": "abc123",
  "name_not_contains": "xyz789"
}

AndTimesheetsWhereInput

Fields
Input FieldDescription
OR - [OrTimesheetsWhereInput]
finishDate_gt - DateTime
finishDate_gte - DateTime
finishDate_lt - DateTime
finishDate_lte - DateTime
startDate_gt - DateTime
startDate_gte - DateTime
startDate_lt - DateTime
startDate_lte - DateTime
Example
{
  "OR": [OrTimesheetsWhereInput],
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "startDate_gt": "2007-12-03T10:15:30Z",
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_lt": "2007-12-03T10:15:30Z",
  "startDate_lte": "2007-12-03T10:15:30Z"
}

Any

Description

Represents any type.

Example
Any

ApprovalWhere

Fields
Input FieldDescription
approved_eq - Boolean
Example
{"approved_eq": true}

ApprovalsWhereInput

Fields
Input FieldDescription
context - InputApprovalSource!
fieldNames - [String]
sourceId - ID!
Example
{
  "context": "Element",
  "fieldNames": ["abc123"],
  "sourceId": "4"
}

ArConfiguration

Description

Represents a ArConfiguration

Fields
Field NameDescription
_id - ID
blockedMarkersColor - StringTask blocked markers color
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
finishedMarkersColor - StringTask finished markers color
markersOnFinishingTask - ArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersToShow - ArConfigurationMarkersToShowTask markers to show
markersType - ArConfigurationMarkersTypeTask markers type
notSequentialMarkersColor - StringTask not sequential markers color
protected - Boolean
sequentialMarkersColor - StringTask sequential markers color
system - Boolean
timerFinishTask - ArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - ArConfigurationTypeOfInputTask type of inputs
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "blockedMarkersColor": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "finishedMarkersColor": "xyz789",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersToShow": "ALL",
  "markersType": "ARROW",
  "notSequentialMarkersColor": "xyz789",
  "protected": true,
  "sequentialMarkersColor": "abc123",
  "system": true,
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ArConfigurationCreateInput

Description

Represents a ArConfigurationCreateInput

Fields
Input FieldDescription
blockedMarkersColor - StringTask blocked markers color
finishedMarkersColor - StringTask finished markers color
markersOnFinishingTask - ArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersToShow - ArConfigurationMarkersToShowTask markers to show
markersType - ArConfigurationMarkersTypeTask markers type
notSequentialMarkersColor - StringTask not sequential markers color
sequentialMarkersColor - StringTask sequential markers color
timerFinishTask - ArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - ArConfigurationTypeOfInputTask type of inputs
Example
{
  "blockedMarkersColor": "abc123",
  "finishedMarkersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersToShow": "ALL",
  "markersType": "ARROW",
  "notSequentialMarkersColor": "xyz789",
  "sequentialMarkersColor": "xyz789",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

ArConfigurationMarkersOnFinishingTask

Values
Enum ValueDescription

CLOSE

LEAVE

Example
"CLOSE"

ArConfigurationMarkersToShow

Values
Enum ValueDescription

ALL

CURRENT

NEXT

Example
"ALL"

ArConfigurationMarkersType

Values
Enum ValueDescription

ARROW

CIRCLE

SQUARE

Example
"ARROW"

ArConfigurationTimerFinishTask

Values
Enum ValueDescription

FIVESECONDS

NOTIMER

THREESECONDS

Example
"FIVESECONDS"

ArConfigurationTypeOfInput

Values
Enum ValueDescription

BASIC

COMPLEX

Example
"BASIC"

ArConfigurationUpdateInput

Description

Represents a ArConfigurationUpdateInput

Fields
Input FieldDescription
blockedMarkersColor - StringTask blocked markers color
finishedMarkersColor - StringTask finished markers color
markersOnFinishingTask - ArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersToShow - ArConfigurationMarkersToShowTask markers to show
markersType - ArConfigurationMarkersTypeTask markers type
notSequentialMarkersColor - StringTask not sequential markers color
sequentialMarkersColor - StringTask sequential markers color
timerFinishTask - ArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - ArConfigurationTypeOfInputTask type of inputs
Example
{
  "blockedMarkersColor": "xyz789",
  "finishedMarkersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 987,
  "markersToShow": "ALL",
  "markersType": "ARROW",
  "notSequentialMarkersColor": "xyz789",
  "sequentialMarkersColor": "abc123",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

ArConfigurationWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Area

Description

Represents a Area

Fields
Field NameDescription
_id - ID
anchors - [Anchor]
anchorsIds - [ID]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
folder - AreaFolderArea Folder
folderId - IDArea Folder
name - String!
photo - File
photoId - ID
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "anchors": [Anchor],
  "anchorsIds": ["4"],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "folder": AreaFolder,
  "folderId": "4",
  "name": "xyz789",
  "photo": File,
  "photoId": 4,
  "protected": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

AreaCreateInput

Description

Represents a AreaCreateInput

Fields
Input FieldDescription
anchors - [ID]
description - String
folder - IDArea Folder
name - String!
photo - ID
Example
{
  "anchors": ["4"],
  "description": "xyz789",
  "folder": "4",
  "name": "xyz789",
  "photo": "4"
}

AreaFolder

Description

Represents a AreaFolder

Fields
Field NameDescription
_id - ID
areaFoldersCount - Int
areasCount - Int
Arguments
tenant - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - AreaFolderAreaFolder Parent
parentId - IDAreaFolder Parent
parentsTree - [AreaFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "areaFoldersCount": 123,
  "areasCount": 987,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "xyz789",
  "parent": AreaFolder,
  "parentId": 4,
  "parentsTree": [AreaFolder],
  "parentsTreeIds": ["4"],
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

AreaFolderCreateInput

Description

Represents a AreaFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDAreaFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": 4
}

AreaFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AreaFolderUpdateInput

Description

Represents a AreaFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDAreaFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": "4"
}

AreaFolderWhereInput

Description

Represents a Where input for: AreaFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "context_contains": "abc123",
  "context_ends_with": "abc123",
  "context_eq": "abc123",
  "context_exists": false,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "parent_all": ["4"],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

AreaFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

AreaOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AreaUpdateInput

Description

Represents a AreaUpdateInput

Fields
Input FieldDescription
anchors - [ID]
description - String
folder - IDArea Folder
name - String
photo - ID
Example
{
  "anchors": [4],
  "description": "abc123",
  "folder": 4,
  "name": "abc123",
  "photo": "4"
}

AreaUpdateManyInput

Fields
Input FieldDescription
folder - ID
Example
{"folder": "4"}

AreaWhereInput

Description

Represents a Where input for: Area

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
anchors_all - [ID]Field includes all given values.
anchors_eq - [ID]Given value is equal to field
anchors_exists - Boolean
anchors_in - [ID]Field includes one of given value.
anchors_nin - [ID]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - AreaFolderWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
photo_all - [ID]Given value includes all in array
photo_eq - IDField is equal to given value
photo_exists - BooleanField is set and exists
photo_in - [ID]Given value includes field
photo_ne - IDField is not equal to given value
photo_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "anchors_all": ["4"],
  "anchors_eq": [4],
  "anchors_exists": true,
  "anchors_in": ["4"],
  "anchors_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "folder": AreaFolderWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "photo_all": ["4"],
  "photo_eq": 4,
  "photo_exists": false,
  "photo_in": [4],
  "photo_ne": "4",
  "photo_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

AreaWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

AssignedSkillInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - String!
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": "abc123",
  "level": "xyz789",
  "skillname": "abc123"
}

AssistConfiguration

Fields
Field NameDescription
AgoraIOAppID - String
WebDebug - String
Example
{
  "AgoraIOAppID": "xyz789",
  "WebDebug": "xyz789"
}

AuditLog

Description

Represents a AuditLog

Fields
Field NameDescription
_id - ID
action - String!
createdAt - DateTime
createdBy - Account
createdById - ID
data - String
device - AuditLogDevice!
type - AuditLogType!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "action": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "data": "xyz789",
  "device": "MOBILE",
  "type": "ACTIONS",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

AuditLogDevice

Values
Enum ValueDescription

MOBILE

WEB

Example
"MOBILE"

AuditLogOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

action_ASC

action_DESC

createdAt_ASC

createdAt_DESC

data_ASC

data_DESC

device_ASC

device_DESC

type_ASC

type_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

AuditLogType

Values
Enum ValueDescription

ACTIONS

ACTIVITY

AGENDA

APPROVALS

ASSETS

CUSTOMIZATION

DASHBOARDS

FEED

INVENTORY

ORGANIZATION

PROFILES

REPORTS

SECURITY

SKILLS

TIMESHEETS

WORK_ORDERS

WORK_ORDER_TEMPLATES

Example
"ACTIONS"

AuditLogWhereInput

Description

Represents a Where input for: AuditLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
data_contains - StringField contains given value, case-insensitive
data_ends_with - StringField ends with given value, case-insensitive
data_eq - StringField is equal to given value
data_exists - BooleanField is set and exists
data_in - [String]Given value includes field
data_ne - StringField is not equal to given value
data_nin - [String]Given value does not includes field
data_not_contains - StringField does not contains given value, case-insensitive
data_not_ends_with - StringField does not end with given value, case-insensitive
data_not_starts_with - StringField does not start with given value, case-insensitive
data_starts_with - StringField starts with given value, case-insensitive
device_eq - AuditLogDeviceField is equal to given value
device_exists - AuditLogDeviceField is set and exists
device_in - [AuditLogDevice]Given value includes field
device_ne - AuditLogDeviceField is not equal to given value
device_nin - [AuditLogDevice]Given value does not includes field
type_eq - AuditLogTypeField is equal to given value
type_exists - AuditLogTypeField is set and exists
type_in - [AuditLogType]Given value includes field
type_ne - AuditLogTypeField is not equal to given value
type_nin - [AuditLogType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "action_contains": "abc123",
  "action_ends_with": "xyz789",
  "action_eq": "abc123",
  "action_exists": true,
  "action_in": ["abc123"],
  "action_ne": "xyz789",
  "action_nin": ["xyz789"],
  "action_not_contains": "xyz789",
  "action_not_ends_with": "xyz789",
  "action_not_starts_with": "xyz789",
  "action_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "data_contains": "xyz789",
  "data_ends_with": "xyz789",
  "data_eq": "xyz789",
  "data_exists": true,
  "data_in": ["xyz789"],
  "data_ne": "xyz789",
  "data_nin": ["abc123"],
  "data_not_contains": "abc123",
  "data_not_ends_with": "abc123",
  "data_not_starts_with": "abc123",
  "data_starts_with": "abc123",
  "device_eq": "MOBILE",
  "device_exists": "MOBILE",
  "device_in": ["MOBILE"],
  "device_ne": "MOBILE",
  "device_nin": ["MOBILE"],
  "type_eq": "ACTIONS",
  "type_exists": "ACTIONS",
  "type_in": ["ACTIONS"],
  "type_ne": "ACTIONS",
  "type_nin": ["ACTIONS"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

AuditLogWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Boolean

Description

The Boolean scalar type represents true or false.

Example
true

CalendarJob

Fields
Field NameDescription
_id - ID
data - CalendarJobData
failReason - String
failed - Boolean
lastRunAt - DateTime
name - String
nextRunAt - DateTime
Example
{
  "_id": "4",
  "data": CalendarJobData,
  "failReason": "abc123",
  "failed": false,
  "lastRunAt": "2007-12-03T10:15:30Z",
  "name": "xyz789",
  "nextRunAt": "2007-12-03T10:15:30Z"
}

CalendarJobData

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]
assignedLabelValues - [LabelValue]
catalog - IssueCatalog
closedAt - DateTime
element - Element
endDate - DateTime
frequency - JobDataFrequency
labelValues - [LabelValue]
name - String
scheduleNext - ID
sequential - Boolean
site - Site
startDate - DateTime
stateMachineInstance - StateMachineInstance
Example
{
  "_id": 4,
  "assignedAccounts": [Account],
  "assignedLabelValues": [LabelValue],
  "catalog": IssueCatalog,
  "closedAt": "2007-12-03T10:15:30Z",
  "element": Element,
  "endDate": "2007-12-03T10:15:30Z",
  "frequency": JobDataFrequency,
  "labelValues": [LabelValue],
  "name": "abc123",
  "scheduleNext": 4,
  "sequential": true,
  "site": Site,
  "startDate": "2007-12-03T10:15:30Z",
  "stateMachineInstance": StateMachineInstance
}

ChatMessage

Description

Represents a ChatMessage

Fields
Field NameDescription
_id - ID
chatRoom - ChatRoom!
chatRoomId - ID!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
files - [File]
filesIds - [ID]
important - Boolean
infoMessage - ChatMessageInfoMessage
mentions - [ChatMessageMention]
pinned - Boolean
protected - Boolean
receivedBy - [Account]
receivedByIds - [ID]
removed - Boolean
replyTo - ChatMessage
replyToId - ID
seenBy - [Account]
seenByIds - [ID]
system - Boolean
text - String
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "chatRoom": ChatRoom,
  "chatRoomId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "files": [File],
  "filesIds": ["4"],
  "important": false,
  "infoMessage": ChatMessageInfoMessage,
  "mentions": [ChatMessageMention],
  "pinned": false,
  "protected": false,
  "receivedBy": [Account],
  "receivedByIds": ["4"],
  "removed": true,
  "replyTo": ChatMessage,
  "replyToId": 4,
  "seenBy": [Account],
  "seenByIds": ["4"],
  "system": true,
  "text": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ChatMessageCreateInput

Description

Represents a ChatMessageCreateInput

Fields
Input FieldDescription
chatRoom - ID!
files - [ID]
important - Boolean
infoMessage - ChatMessageInfoMessageCreateInput
mentions - [ChatMessageMentionCreateInput]
pinned - Boolean
receivedBy - [ID]
removed - Boolean
replyTo - ID
seenBy - [ID]
text - String
Example
{
  "chatRoom": "4",
  "files": [4],
  "important": false,
  "infoMessage": ChatMessageInfoMessageCreateInput,
  "mentions": [ChatMessageMentionCreateInput],
  "pinned": true,
  "receivedBy": [4],
  "removed": false,
  "replyTo": 4,
  "seenBy": [4],
  "text": "abc123"
}

ChatMessageInfoMessage

Description

Represents a ChatMessageInfoMessage

Fields
Field NameDescription
accounts - [Account]
accountsIds - [ID]
name - String
type - ChatMessageInfoMessageType!
Example
{
  "accounts": [Account],
  "accountsIds": ["4"],
  "name": "abc123",
  "type": "NAME_REMOVED"
}

ChatMessageInfoMessageCreateInput

Description

Represents a ChatMessageInfoMessageCreateInput

Fields
Input FieldDescription
accounts - [ID]
name - String
type - ChatMessageInfoMessageType!
Example
{
  "accounts": ["4"],
  "name": "abc123",
  "type": "NAME_REMOVED"
}

ChatMessageInfoMessageType

Values
Enum ValueDescription

NAME_REMOVED

NAME_UPDATED

USERS_ADDED

USERS_REMOVED

USER_LEFT

Example
"NAME_REMOVED"

ChatMessageInfoMessageUpdateInput

Description

Represents a ChatMessageInfoMessageUpdateInput

Fields
Input FieldDescription
accounts - [ID]
name - String
type - ChatMessageInfoMessageType
Example
{
  "accounts": ["4"],
  "name": "xyz789",
  "type": "NAME_REMOVED"
}

ChatMessageInfoMessageWhereInput

Description

Represents a Where input for: ChatMessageInfoMessage

Fields
Input FieldDescription
accounts_all - [ID]Field includes all given values.
accounts_eq - [ID]Given value is equal to field
accounts_exists - Boolean
accounts_in - [ID]Field includes one of given value.
accounts_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
type_eq - ChatMessageInfoMessageTypeField is equal to given value
type_exists - ChatMessageInfoMessageTypeField is set and exists
type_in - [ChatMessageInfoMessageType]Given value includes field
type_ne - ChatMessageInfoMessageTypeField is not equal to given value
type_nin - [ChatMessageInfoMessageType]Given value does not includes field
Example
{
  "accounts_all": [4],
  "accounts_eq": [4],
  "accounts_exists": false,
  "accounts_in": [4],
  "accounts_nin": ["4"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "type_eq": "NAME_REMOVED",
  "type_exists": "NAME_REMOVED",
  "type_in": ["NAME_REMOVED"],
  "type_ne": "NAME_REMOVED",
  "type_nin": ["NAME_REMOVED"]
}

ChatMessageMention

Description

Represents a ChatMessageMention

Fields
Field NameDescription
accounts - [Account]
accountsIds - [ID]
action - Action
actionId - ID
issue - IssueInstance
issueId - ID
text - String!
type - ChatMessageMentionType
Example
{
  "accounts": [Account],
  "accountsIds": [4],
  "action": Action,
  "actionId": "4",
  "issue": IssueInstance,
  "issueId": 4,
  "text": "abc123",
  "type": "ACCOUNT_MENTION"
}

ChatMessageMentionCreateInput

Description

Represents a ChatMessageMentionCreateInput

Fields
Input FieldDescription
accounts - [ID]
action - ID
issue - ID
text - String!
type - ChatMessageMentionType
Example
{
  "accounts": ["4"],
  "action": "4",
  "issue": "4",
  "text": "abc123",
  "type": "ACCOUNT_MENTION"
}

ChatMessageMentionType

Values
Enum ValueDescription

ACCOUNT_MENTION

ACTION_MENTION

ISSUE_MENTION

Example
"ACCOUNT_MENTION"

ChatMessageMentionUpdateInput

Description

Represents a ChatMessageMentionUpdateInput

Fields
Input FieldDescription
accounts - [ID]
action - ID
issue - ID
text - String
type - ChatMessageMentionType
Example
{
  "accounts": [4],
  "action": 4,
  "issue": "4",
  "text": "xyz789",
  "type": "ACCOUNT_MENTION"
}

ChatMessageMentionWhereInput

Description

Represents a Where input for: ChatMessageMention

Fields
Input FieldDescription
accounts_all - [ID]Field includes all given values.
accounts_eq - [ID]Given value is equal to field
accounts_exists - Boolean
accounts_in - [ID]Field includes one of given value.
accounts_nin - [ID]Field does not include any of the given values.
action_all - [ID]Given value includes all in array
action_eq - IDField is equal to given value
action_exists - BooleanField is set and exists
action_in - [ID]Given value includes field
action_ne - IDField is not equal to given value
action_nin - [ID]Given value does not include field
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
type_eq - ChatMessageMentionTypeField is equal to given value
type_exists - ChatMessageMentionTypeField is set and exists
type_in - [ChatMessageMentionType]Given value includes field
type_ne - ChatMessageMentionTypeField is not equal to given value
type_nin - [ChatMessageMentionType]Given value does not includes field
Example
{
  "accounts_all": ["4"],
  "accounts_eq": [4],
  "accounts_exists": false,
  "accounts_in": [4],
  "accounts_nin": ["4"],
  "action_all": [4],
  "action_eq": 4,
  "action_exists": false,
  "action_in": [4],
  "action_ne": 4,
  "action_nin": ["4"],
  "issue_all": [4],
  "issue_eq": "4",
  "issue_exists": true,
  "issue_in": ["4"],
  "issue_ne": "4",
  "issue_nin": [4],
  "text_contains": "xyz789",
  "text_ends_with": "xyz789",
  "text_eq": "abc123",
  "text_exists": true,
  "text_in": ["abc123"],
  "text_ne": "abc123",
  "text_nin": ["xyz789"],
  "text_not_contains": "xyz789",
  "text_not_ends_with": "xyz789",
  "text_not_starts_with": "abc123",
  "text_starts_with": "xyz789",
  "type_eq": "ACCOUNT_MENTION",
  "type_exists": "ACCOUNT_MENTION",
  "type_in": ["ACCOUNT_MENTION"],
  "type_ne": "ACCOUNT_MENTION",
  "type_nin": ["ACCOUNT_MENTION"]
}

ChatMessageOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

infoMessage_name_ASC

infoMessage_name_DESC

infoMessage_type_ASC

infoMessage_type_DESC

text_ASC

text_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ChatMessageUpdateInput

Description

Represents a ChatMessageUpdateInput

Fields
Input FieldDescription
chatRoom - ID
files - [ID]
important - Boolean
infoMessage - ChatMessageInfoMessageUpdateInput
mentions - [ChatMessageMentionUpdateInput]
pinned - Boolean
receivedBy - [ID]
removed - Boolean
replyTo - ID
seenBy - [ID]
text - String
Example
{
  "chatRoom": 4,
  "files": [4],
  "important": false,
  "infoMessage": ChatMessageInfoMessageUpdateInput,
  "mentions": [ChatMessageMentionUpdateInput],
  "pinned": false,
  "receivedBy": [4],
  "removed": true,
  "replyTo": 4,
  "seenBy": [4],
  "text": "abc123"
}

ChatMessageWhereInput

Description

Represents a Where input for: ChatMessage

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
chatRoom_all - [ID]Given value includes all in array
chatRoom_eq - ID!
chatRoom_exists - BooleanField is set and exists
chatRoom_in - [ID]Given value includes field
chatRoom_ne - IDField is not equal to given value
chatRoom_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
important_eq - BooleanField is equal to given value
important_ne - BooleanField is not equal to given value
infoMessage - ChatMessageInfoMessageWhereInput
mentions_every - ChatMessageMentionWhereInput
mentions_exists - Boolean
mentions_none - ChatMessageMentionWhereInput
mentions_some - ChatMessageMentionWhereInput
pinned_eq - BooleanField is equal to given value
pinned_ne - BooleanField is not equal to given value
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
receivedBy_all - [ID]Field includes all given values.
receivedBy_eq - [ID]Given value is equal to field
receivedBy_exists - Boolean
receivedBy_in - [ID]Field includes one of given value.
receivedBy_nin - [ID]Field does not include any of the given values.
removed_eq - BooleanField is equal to given value
removed_ne - BooleanField is not equal to given value
replyTo_all - [ID]Given value includes all in array
replyTo_eq - IDField is equal to given value
replyTo_exists - BooleanField is set and exists
replyTo_in - [ID]Given value includes field
replyTo_ne - IDField is not equal to given value
replyTo_nin - [ID]Given value does not include field
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "chatRoom_all": [4],
  "chatRoom_eq": 4,
  "chatRoom_exists": true,
  "chatRoom_in": [4],
  "chatRoom_ne": "4",
  "chatRoom_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "files_all": [4],
  "files_eq": [4],
  "files_exists": false,
  "files_in": [4],
  "files_nin": ["4"],
  "important_eq": false,
  "important_ne": true,
  "infoMessage": ChatMessageInfoMessageWhereInput,
  "mentions_every": ChatMessageMentionWhereInput,
  "mentions_exists": true,
  "mentions_none": ChatMessageMentionWhereInput,
  "mentions_some": ChatMessageMentionWhereInput,
  "pinned_eq": false,
  "pinned_ne": true,
  "protected_eq": false,
  "protected_ne": true,
  "receivedBy_all": ["4"],
  "receivedBy_eq": [4],
  "receivedBy_exists": false,
  "receivedBy_in": ["4"],
  "receivedBy_nin": ["4"],
  "removed_eq": false,
  "removed_ne": true,
  "replyTo_all": [4],
  "replyTo_eq": "4",
  "replyTo_exists": true,
  "replyTo_in": ["4"],
  "replyTo_ne": 4,
  "replyTo_nin": [4],
  "seenBy_all": ["4"],
  "seenBy_eq": ["4"],
  "seenBy_exists": true,
  "seenBy_in": [4],
  "seenBy_nin": [4],
  "system_eq": true,
  "system_ne": false,
  "text_contains": "xyz789",
  "text_ends_with": "abc123",
  "text_eq": "abc123",
  "text_exists": false,
  "text_in": ["abc123"],
  "text_ne": "abc123",
  "text_nin": ["abc123"],
  "text_not_contains": "xyz789",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "abc123",
  "text_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

ChatMessageWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ChatRoom

Description

Represents a ChatRoom

Fields
Field NameDescription
_id - ID
accessControl - [ChatRoomAccessControl]
assignedAccounts - [Account]
assignedAccountsIds - [ID]
canSendMessage - Boolean
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
importantMessages - ChatRoomImportantMessage
lastMessage - ChatMessage
name - String
previewedBy - [Account]
previewedByIds - [ID]
protected - Boolean
room - Room
roomId - String
system - Boolean
type - ChatRoomType
unreadMessages - Int
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "accessControl": [ChatRoomAccessControl],
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "canSendMessage": false,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "importantMessages": ChatRoomImportantMessage,
  "lastMessage": ChatMessage,
  "name": "xyz789",
  "previewedBy": [Account],
  "previewedByIds": [4],
  "protected": true,
  "room": Room,
  "roomId": "xyz789",
  "system": false,
  "type": "GROUP_CHAT",
  "unreadMessages": 123,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ChatRoomAccessControl

Description

Represents a ChatRoomAccessControl

Fields
Field NameDescription
account - Account!
accountId - ID!
deletedAt - DateTime
enterAt - DateTime!
leftAt - DateTime
Example
{
  "account": Account,
  "accountId": 4,
  "deletedAt": "2007-12-03T10:15:30Z",
  "enterAt": "2007-12-03T10:15:30Z",
  "leftAt": "2007-12-03T10:15:30Z"
}

ChatRoomAccessControlCreateInput

Description

Represents a ChatRoomAccessControlCreateInput

Fields
Input FieldDescription
account - ID!
deletedAt - DateTime
enterAt - DateTime!
leftAt - DateTime
Example
{
  "account": "4",
  "deletedAt": "2007-12-03T10:15:30Z",
  "enterAt": "2007-12-03T10:15:30Z",
  "leftAt": "2007-12-03T10:15:30Z"
}

ChatRoomAccessControlWhereInput

Description

Represents a Where input for: ChatRoomAccessControl

Fields
Input FieldDescription
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
enterAt_eq - DateTimeField is equal to given value
enterAt_exists - BooleanField is set and exists
enterAt_gt - DateTimeField is greater than given value
enterAt_gte - DateTimeField is greater or equal than given value
enterAt_in - [DateTime]Given value includes field
enterAt_lt - DateTimeField is lower than given value
enterAt_lte - DateTimeField is lower or equal than given value
enterAt_ne - DateTimeField is not equal to given value
enterAt_nin - [DateTime]Given value does not includes field
leftAt_eq - DateTimeField is equal to given value
leftAt_exists - BooleanField is set and exists
leftAt_gt - DateTimeField is greater than given value
leftAt_gte - DateTimeField is greater or equal than given value
leftAt_in - [DateTime]Given value includes field
leftAt_lt - DateTimeField is lower than given value
leftAt_lte - DateTimeField is lower or equal than given value
leftAt_ne - DateTimeField is not equal to given value
leftAt_nin - [DateTime]Given value does not includes field
Example
{
  "account_all": [4],
  "account_eq": 4,
  "account_exists": false,
  "account_in": [4],
  "account_ne": 4,
  "account_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "enterAt_eq": "2007-12-03T10:15:30Z",
  "enterAt_exists": true,
  "enterAt_gt": "2007-12-03T10:15:30Z",
  "enterAt_gte": "2007-12-03T10:15:30Z",
  "enterAt_in": ["2007-12-03T10:15:30Z"],
  "enterAt_lt": "2007-12-03T10:15:30Z",
  "enterAt_lte": "2007-12-03T10:15:30Z",
  "enterAt_ne": "2007-12-03T10:15:30Z",
  "enterAt_nin": ["2007-12-03T10:15:30Z"],
  "leftAt_eq": "2007-12-03T10:15:30Z",
  "leftAt_exists": true,
  "leftAt_gt": "2007-12-03T10:15:30Z",
  "leftAt_gte": "2007-12-03T10:15:30Z",
  "leftAt_in": ["2007-12-03T10:15:30Z"],
  "leftAt_lt": "2007-12-03T10:15:30Z",
  "leftAt_lte": "2007-12-03T10:15:30Z",
  "leftAt_ne": "2007-12-03T10:15:30Z",
  "leftAt_nin": ["2007-12-03T10:15:30Z"]
}

ChatRoomCreateInput

Description

Represents a ChatRoomCreateInput

Fields
Input FieldDescription
accessControl - [ChatRoomAccessControlCreateInput]
assignedAccounts - [ID]
importantMessages - ChatRoomImportantMessageCreateInput
name - String
previewedBy - [ID]
roomId - String
type - ChatRoomType
Example
{
  "accessControl": [ChatRoomAccessControlCreateInput],
  "assignedAccounts": ["4"],
  "importantMessages": ChatRoomImportantMessageCreateInput,
  "name": "abc123",
  "previewedBy": [4],
  "roomId": "xyz789",
  "type": "GROUP_CHAT"
}

ChatRoomFilesAndCount

Fields
Field NameDescription
count - Int
data - [File]
Example
{"count": 123, "data": [File]}

ChatRoomImportantMessage

Description

Represents a ChatRoomImportantMessage

Fields
Field NameDescription
messagesId - [ChatMessage]
messagesIdIds - [ID]
seenBy - [Account]
seenByIds - [ID]
unseenImportantMessages - Boolean
Example
{
  "messagesId": [ChatMessage],
  "messagesIdIds": [4],
  "seenBy": [Account],
  "seenByIds": ["4"],
  "unseenImportantMessages": true
}

ChatRoomImportantMessageCreateInput

Description

Represents a ChatRoomImportantMessageCreateInput

Fields
Input FieldDescription
messagesId - [ID]
seenBy - [ID]
unseenImportantMessages - Boolean
Example
{
  "messagesId": ["4"],
  "seenBy": ["4"],
  "unseenImportantMessages": true
}

ChatRoomImportantMessageWhereInput

Description

Represents a Where input for: ChatRoomImportantMessage

Fields
Input FieldDescription
messagesId_all - [ID]Field includes all given values.
messagesId_eq - [ID]Given value is equal to field
messagesId_exists - Boolean
messagesId_in - [ID]Field includes one of given value.
messagesId_nin - [ID]Field does not include any of the given values.
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
unseenImportantMessages_eq - BooleanField is equal to given value
unseenImportantMessages_ne - BooleanField is not equal to given value
Example
{
  "messagesId_all": ["4"],
  "messagesId_eq": ["4"],
  "messagesId_exists": true,
  "messagesId_in": ["4"],
  "messagesId_nin": [4],
  "seenBy_all": ["4"],
  "seenBy_eq": [4],
  "seenBy_exists": false,
  "seenBy_in": ["4"],
  "seenBy_nin": [4],
  "unseenImportantMessages_eq": false,
  "unseenImportantMessages_ne": false
}

ChatRoomOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

lastMessage_createdAt_ASC

lastMessage_createdAt_DESC

name_ASC

name_DESC

roomId_ASC

roomId_DESC

type_ASC

type_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ChatRoomType

Values
Enum ValueDescription

GROUP_CHAT

ISSUE

ROOM

SELF_CHAT

SINGLE_CHAT

Example
"GROUP_CHAT"

ChatRoomUpdateData

Fields
Input FieldDescription
name - String
Example
{"name": "abc123"}

ChatRoomWhereInput

Description

Represents a Where input for: ChatRoom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
accessControl_every - ChatRoomAccessControlWhereInput
accessControl_exists - Boolean
accessControl_none - ChatRoomAccessControlWhereInput
accessControl_some - ChatRoomAccessControlWhereInput
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
importantMessages - ChatRoomImportantMessageWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
previewedBy_all - [ID]Field includes all given values.
previewedBy_eq - [ID]Given value is equal to field
previewedBy_exists - Boolean
previewedBy_in - [ID]Field includes one of given value.
previewedBy_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
roomId_contains - StringField contains given value, case-insensitive
roomId_ends_with - StringField ends with given value, case-insensitive
roomId_eq - StringField is equal to given value
roomId_exists - BooleanField is set and exists
roomId_in - [String]Given value includes field
roomId_ne - StringField is not equal to given value
roomId_nin - [String]Given value does not includes field
roomId_not_contains - StringField does not contains given value, case-insensitive
roomId_not_ends_with - StringField does not end with given value, case-insensitive
roomId_not_starts_with - StringField does not start with given value, case-insensitive
roomId_starts_with - StringField starts with given value, case-insensitive
search_contains - String
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
type_eq - ChatRoomTypeField is equal to given value
type_exists - ChatRoomTypeField is set and exists
type_in - [ChatRoomType]Given value includes field
type_ne - ChatRoomTypeField is not equal to given value
type_nin - [ChatRoomType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "accessControl_every": ChatRoomAccessControlWhereInput,
  "accessControl_exists": false,
  "accessControl_none": ChatRoomAccessControlWhereInput,
  "accessControl_some": ChatRoomAccessControlWhereInput,
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "importantMessages": ChatRoomImportantMessageWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "previewedBy_all": [4],
  "previewedBy_eq": [4],
  "previewedBy_exists": true,
  "previewedBy_in": ["4"],
  "previewedBy_nin": ["4"],
  "protected_eq": false,
  "protected_ne": true,
  "roomId_contains": "xyz789",
  "roomId_ends_with": "xyz789",
  "roomId_eq": "xyz789",
  "roomId_exists": true,
  "roomId_in": ["abc123"],
  "roomId_ne": "xyz789",
  "roomId_nin": ["xyz789"],
  "roomId_not_contains": "abc123",
  "roomId_not_ends_with": "xyz789",
  "roomId_not_starts_with": "abc123",
  "roomId_starts_with": "abc123",
  "search_contains": "abc123",
  "system_eq": false,
  "system_ne": true,
  "type_eq": "GROUP_CHAT",
  "type_exists": "GROUP_CHAT",
  "type_in": ["GROUP_CHAT"],
  "type_ne": "GROUP_CHAT",
  "type_nin": ["GROUP_CHAT"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ChatRoomWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ClientBasicInfo

Fields
Field NameDescription
domain - String
isRemoteAssistAllowed - Boolean
master - Boolean
name - String
paletteDark - ClientConfigPaletteDark
paletteLight - ClientConfigPaletteLight
resources - ClientResources
samlAuthEndpoint - String
sentryEnvironment - String
sentryMobileDSN - String
sentryWebDSN - String
siteURL - String
templateLibraryEnabled - Boolean
version - String
Example
{
  "domain": "abc123",
  "isRemoteAssistAllowed": true,
  "master": false,
  "name": "abc123",
  "paletteDark": ClientConfigPaletteDark,
  "paletteLight": ClientConfigPaletteLight,
  "resources": ClientResources,
  "samlAuthEndpoint": "xyz789",
  "sentryEnvironment": "xyz789",
  "sentryMobileDSN": "xyz789",
  "sentryWebDSN": "abc123",
  "siteURL": "xyz789",
  "templateLibraryEnabled": true,
  "version": "abc123"
}

ClientConfigPaletteDark

Example
{
  "alert": ClientConfigPaletteDarkAlert,
  "background": ClientConfigPaletteDarkBackground,
  "error": ClientConfigPaletteDarkError,
  "grey": ClientConfigPaletteDarkGrey,
  "info": ClientConfigPaletteDarkInfo,
  "label": ClientConfigPaletteDarkLabel,
  "other": ClientConfigPaletteDarkOther,
  "primary": ClientConfigPaletteDarkPrimary,
  "secondary": ClientConfigPaletteDarkSecondary,
  "success": ClientConfigPaletteDarkSuccess,
  "text": ClientConfigPaletteDarkText
}

ClientConfigPaletteDarkAlert

Description

Represents a ClientConfigPaletteDarkAlert

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "abc123"
}

ClientConfigPaletteDarkBackground

Description

Represents a ClientConfigPaletteDarkBackground

Fields
Field NameDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "xyz789",
  "background1": "abc123",
  "background2": "abc123",
  "default": "abc123"
}

ClientConfigPaletteDarkError

Description

Represents a ClientConfigPaletteDarkError

Fields
Field NameDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "xyz789",
  "medium": "xyz789"
}

ClientConfigPaletteDarkGrey

Description

Represents a ClientConfigPaletteDarkGrey

Fields
Field NameDescription
light - String
main - String
medium - String
Example
{
  "light": "abc123",
  "main": "abc123",
  "medium": "xyz789"
}

ClientConfigPaletteDarkInfo

Description

Represents a ClientConfigPaletteDarkInfo

Fields
Field NameDescription
light - String
main - String
Example
{
  "light": "xyz789",
  "main": "abc123"
}

ClientConfigPaletteDarkLabel

Description

Represents a ClientConfigPaletteDarkLabel

Fields
Field NameDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "abc123",
  "label2": "abc123",
  "label3": "xyz789",
  "label4": "xyz789",
  "label5": "abc123",
  "label6": "xyz789",
  "label7": "xyz789",
  "label8": "abc123",
  "label9": "abc123",
  "label10": "xyz789",
  "label11": "xyz789"
}

ClientConfigPaletteDarkOther

Description

Represents a ClientConfigPaletteDarkOther

Fields
Field NameDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "xyz789",
  "pink": "xyz789",
  "purpleDark": "xyz789",
  "purpleLight": "abc123"
}

ClientConfigPaletteDarkPrimary

Description

Represents a ClientConfigPaletteDarkPrimary

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "xyz789",
  "main": "xyz789"
}

ClientConfigPaletteDarkSecondary

Description

Represents a ClientConfigPaletteDarkSecondary

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "abc123",
  "main": "abc123"
}

ClientConfigPaletteDarkSuccess

Description

Represents a ClientConfigPaletteDarkSuccess

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "abc123",
  "main": "abc123"
}

ClientConfigPaletteDarkText

Description

Represents a ClientConfigPaletteDarkText

Fields
Field NameDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "abc123",
  "primary": "xyz789",
  "secondary": "abc123"
}

ClientConfigPaletteLight

Example
{
  "alert": ClientConfigPaletteLightAlert,
  "background": ClientConfigPaletteLightBackground,
  "error": ClientConfigPaletteLightError,
  "grey": ClientConfigPaletteLightGrey,
  "info": ClientConfigPaletteLightInfo,
  "label": ClientConfigPaletteLightLabel,
  "other": ClientConfigPaletteLightOther,
  "primary": ClientConfigPaletteLightPrimary,
  "secondary": ClientConfigPaletteLightSecondary,
  "success": ClientConfigPaletteLightSuccess,
  "text": ClientConfigPaletteLightText
}

ClientConfigPaletteLightAlert

Description

Represents a ClientConfigPaletteLightAlert

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "abc123",
  "main": "xyz789"
}

ClientConfigPaletteLightBackground

Description

Represents a ClientConfigPaletteLightBackground

Fields
Field NameDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "abc123",
  "background1": "abc123",
  "background2": "xyz789",
  "default": "xyz789"
}

ClientConfigPaletteLightError

Description

Represents a ClientConfigPaletteLightError

Fields
Field NameDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "xyz789",
  "light": "abc123",
  "main": "xyz789",
  "medium": "xyz789"
}

ClientConfigPaletteLightGrey

Description

Represents a ClientConfigPaletteLightGrey

Fields
Field NameDescription
light - String
main - String
medium - String
Example
{
  "light": "xyz789",
  "main": "xyz789",
  "medium": "abc123"
}

ClientConfigPaletteLightInfo

Description

Represents a ClientConfigPaletteLightInfo

Fields
Field NameDescription
light - String
main - String
Example
{
  "light": "xyz789",
  "main": "xyz789"
}

ClientConfigPaletteLightLabel

Description

Represents a ClientConfigPaletteLightLabel

Fields
Field NameDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "abc123",
  "label2": "abc123",
  "label3": "abc123",
  "label4": "xyz789",
  "label5": "xyz789",
  "label6": "xyz789",
  "label7": "xyz789",
  "label8": "xyz789",
  "label9": "abc123",
  "label10": "xyz789",
  "label11": "abc123"
}

ClientConfigPaletteLightOther

Description

Represents a ClientConfigPaletteLightOther

Fields
Field NameDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "abc123",
  "pink": "abc123",
  "purpleDark": "abc123",
  "purpleLight": "xyz789"
}

ClientConfigPaletteLightPrimary

Description

Represents a ClientConfigPaletteLightPrimary

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "xyz789",
  "main": "abc123"
}

ClientConfigPaletteLightSecondary

Description

Represents a ClientConfigPaletteLightSecondary

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "abc123"
}

ClientConfigPaletteLightSuccess

Description

Represents a ClientConfigPaletteLightSuccess

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "xyz789"
}

ClientConfigPaletteLightText

Description

Represents a ClientConfigPaletteLightText

Fields
Field NameDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "abc123",
  "primary": "abc123",
  "secondary": "abc123"
}

ClientResources

Fields
Field NameDescription
logo_dark - DownloadLogoInfo
logo_light - DownloadLogoInfo
Example
{
  "logo_dark": DownloadLogoInfo,
  "logo_light": DownloadLogoInfo
}

Comment

Description

Represents a Comment

Fields
Field NameDescription
_id - ID
content - String!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
mentions - [CommentMention]
parent - CommentComment Parent
parentId - IDComment Parent
parentsTree - [Comment]
parentsTreeIds - [ID]
post - Post!
postId - ID!
rootReplies - Intnow it's not useful enough to know the total count, since the user needs to travel forward and back
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "content": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "mentions": [CommentMention],
  "parent": Comment,
  "parentId": 4,
  "parentsTree": [Comment],
  "parentsTreeIds": ["4"],
  "post": Post,
  "postId": "4",
  "rootReplies": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

CommentCreateInput

Description

Represents a CommentCreateInput

Fields
Input FieldDescription
content - String!
mentions - [CommentMentionCreateInput]
parent - IDComment Parent
post - ID!
Example
{
  "content": "abc123",
  "mentions": [CommentMentionCreateInput],
  "parent": "4",
  "post": "4"
}

CommentMention

Description

Represents a CommentMention

Fields
Field NameDescription
account - Account
accountId - ID
action - Action
actionId - ID
issue - IssueInstance
issueId - ID
text - String!
type - CommentMentionType
Example
{
  "account": Account,
  "accountId": 4,
  "action": Action,
  "actionId": "4",
  "issue": IssueInstance,
  "issueId": 4,
  "text": "abc123",
  "type": "account"
}

CommentMentionCreateInput

Description

Represents a CommentMentionCreateInput

Fields
Input FieldDescription
account - ID
action - ID
issue - ID
text - String!
type - CommentMentionType
Example
{
  "account": "4",
  "action": "4",
  "issue": 4,
  "text": "abc123",
  "type": "account"
}

CommentMentionType

Values
Enum ValueDescription

account

action

issue

Example
"account"

CommentMentionUpdateInput

Description

Represents a CommentMentionUpdateInput

Fields
Input FieldDescription
account - ID
action - ID
issue - ID
text - String
type - CommentMentionType
Example
{
  "account": 4,
  "action": "4",
  "issue": 4,
  "text": "xyz789",
  "type": "account"
}

CommentMentionWhereInput

Description

Represents a Where input for: CommentMention

Fields
Input FieldDescription
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
action_all - [ID]Given value includes all in array
action_eq - IDField is equal to given value
action_exists - BooleanField is set and exists
action_in - [ID]Given value includes field
action_ne - IDField is not equal to given value
action_nin - [ID]Given value does not include field
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
type_eq - CommentMentionTypeField is equal to given value
type_exists - CommentMentionTypeField is set and exists
type_in - [CommentMentionType]Given value includes field
type_ne - CommentMentionTypeField is not equal to given value
type_nin - [CommentMentionType]Given value does not includes field
Example
{
  "account_all": [4],
  "account_eq": "4",
  "account_exists": true,
  "account_in": [4],
  "account_ne": "4",
  "account_nin": [4],
  "action_all": ["4"],
  "action_eq": 4,
  "action_exists": true,
  "action_in": [4],
  "action_ne": 4,
  "action_nin": ["4"],
  "issue_all": [4],
  "issue_eq": 4,
  "issue_exists": false,
  "issue_in": [4],
  "issue_ne": 4,
  "issue_nin": ["4"],
  "text_contains": "xyz789",
  "text_ends_with": "abc123",
  "text_eq": "xyz789",
  "text_exists": true,
  "text_in": ["abc123"],
  "text_ne": "xyz789",
  "text_nin": ["xyz789"],
  "text_not_contains": "abc123",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "abc123",
  "text_starts_with": "xyz789",
  "type_eq": "account",
  "type_exists": "account",
  "type_in": ["account"],
  "type_ne": "account",
  "type_nin": ["account"]
}

CommentOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

content_ASC

content_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

CommentUpdateInput

Description

Represents a CommentUpdateInput

Fields
Input FieldDescription
content - String
mentions - [CommentMentionUpdateInput]
parent - IDComment Parent
post - ID
Example
{
  "content": "abc123",
  "mentions": [CommentMentionUpdateInput],
  "parent": "4",
  "post": "4"
}

CommentWhereInput

Description

Represents a Where input for: Comment

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
content_contains - StringField contains given value, case-insensitive
content_ends_with - StringField ends with given value, case-insensitive
content_eq - StringField is equal to given value
content_exists - BooleanField is set and exists
content_in - [String]Given value includes field
content_ne - StringField is not equal to given value
content_nin - [String]Given value does not includes field
content_not_contains - StringField does not contains given value, case-insensitive
content_not_ends_with - StringField does not end with given value, case-insensitive
content_not_starts_with - StringField does not start with given value, case-insensitive
content_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
mentions_every - CommentMentionWhereInput
mentions_exists - Boolean
mentions_none - CommentMentionWhereInput
mentions_some - CommentMentionWhereInput
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
post_all - [ID]Given value includes all in array
post_eq - IDField is equal to given value
post_exists - BooleanField is set and exists
post_in - [ID]Given value includes field
post_ne - IDField is not equal to given value
post_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "content_contains": "xyz789",
  "content_ends_with": "xyz789",
  "content_eq": "abc123",
  "content_exists": true,
  "content_in": ["xyz789"],
  "content_ne": "abc123",
  "content_nin": ["xyz789"],
  "content_not_contains": "xyz789",
  "content_not_ends_with": "xyz789",
  "content_not_starts_with": "xyz789",
  "content_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "mentions_every": CommentMentionWhereInput,
  "mentions_exists": true,
  "mentions_none": CommentMentionWhereInput,
  "mentions_some": CommentMentionWhereInput,
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": [4],
  "parent_ne": "4",
  "parent_nin": [4],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "post_all": [4],
  "post_eq": 4,
  "post_exists": false,
  "post_in": [4],
  "post_ne": "4",
  "post_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

CommentWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Configuration

Description

Represents a Configuration

Example
{
  "_id": 4,
  "alarm": ConfigurationAlarm,
  "client": ConfigurationClient,
  "firebase": ConfigurationFirebase,
  "grpc": ConfigurationGrpc,
  "http": ConfigurationHttp,
  "ldap": ConfigurationLdap,
  "mixedReality": ConfigurationMixedReality,
  "mqttAuth": ConfigurationMqttAuth,
  "options": ConfigurationOption,
  "recaptcha": ConfigurationRecaptcha,
  "redis": ConfigurationRedi,
  "sentry": ConfigurationSentry,
  "server": ConfigurationServer,
  "settings": ConfigurationSetting,
  "storage": ConfigurationStorage,
  "timeseries": ConfigurationTimesery,
  "websocket": ConfigurationWebsocket
}

ConfigurationAlarm

Description

Represents a ConfigurationAlarm

Fields
Field NameDescription
_id - ID
address - String
database - String
enabled - Boolean
password - String
type - ConfigurationAlarmType
username - String
Example
{
  "_id": "4",
  "address": "abc123",
  "database": "xyz789",
  "enabled": true,
  "password": "abc123",
  "type": "influx_v2",
  "username": "abc123"
}

ConfigurationAlarmType

Values
Enum ValueDescription

influx_v2

kapacitor

none

Example
"influx_v2"

ConfigurationClient

Description

Represents a ConfigurationClient

Fields
Field NameDescription
_id - ID
name - String
plugin - String
Example
{
  "_id": "4",
  "name": "abc123",
  "plugin": "xyz789"
}

ConfigurationFirebase

Description

Represents a ConfigurationFirebase

Fields
Field NameDescription
_id - ID
clientConfiguration - String
credential - String
databaseURL - String
Example
{
  "_id": "4",
  "clientConfiguration": "abc123",
  "credential": "xyz789",
  "databaseURL": "abc123"
}

ConfigurationGrpc

Description

Represents a ConfigurationGrpc

Fields
Field NameDescription
_id - ID
host - String
port - Int
Example
{"_id": 4, "host": "abc123", "port": 123}

ConfigurationHttp

Description

Represents a ConfigurationHttp

Fields
Field NameDescription
_id - ID
address - String
host - String
port - Int
Example
{
  "_id": 4,
  "address": "abc123",
  "host": "xyz789",
  "port": 987
}

ConfigurationLdap

Description

Represents a ConfigurationLdap

Fields
Field NameDescription
_id - ID
enabled - Boolean
options - ConfigurationLdapOption
Example
{
  "_id": "4",
  "enabled": false,
  "options": ConfigurationLdapOption
}

ConfigurationLdapOption

Description

Represents a ConfigurationLdapOption

Fields
Field NameDescription
_id - ID
bindCredentials - String
bindDN - String
ca - String
fieldMapping - ConfigurationLdapOptionFieldMapping
host - String
port - Int
rolesMapping - [ConfigurationLdapOptionRolesMapping]
searchBase - String
searchFilter - String
searchScope - String
secure - Boolean
skipSSL - Boolean
Example
{
  "_id": "4",
  "bindCredentials": "xyz789",
  "bindDN": "abc123",
  "ca": "xyz789",
  "fieldMapping": ConfigurationLdapOptionFieldMapping,
  "host": "xyz789",
  "port": 123,
  "rolesMapping": [ConfigurationLdapOptionRolesMapping],
  "searchBase": "abc123",
  "searchFilter": "xyz789",
  "searchScope": "xyz789",
  "secure": false,
  "skipSSL": true
}

ConfigurationLdapOptionFieldMapping

Description

Represents a ConfigurationLdapOptionFieldMapping

Fields
Field NameDescription
_id - ID
account - [ConfigurationLdapOptionFieldMappingAccount]
Example
{
  "_id": "4",
  "account": [ConfigurationLdapOptionFieldMappingAccount]
}

ConfigurationLdapOptionFieldMappingAccount

Description

Represents a ConfigurationLdapOptionFieldMappingAccount

Fields
Field NameDescription
_id - ID
ldap - String
local - String
Example
{
  "_id": 4,
  "ldap": "xyz789",
  "local": "xyz789"
}

ConfigurationLdapOptionRolesMapping

Description

Represents a ConfigurationLdapOptionRolesMapping

Fields
Field NameDescription
_id - ID
group - String
role - ID
Example
{"_id": 4, "group": "abc123", "role": 4}

ConfigurationMixedReality

Description

Represents a ConfigurationMixedReality

Fields
Field NameDescription
_id - ID
accountDomain - String
accountId - String
accountKey - String
Example
{
  "_id": "4",
  "accountDomain": "xyz789",
  "accountId": "xyz789",
  "accountKey": "abc123"
}

ConfigurationMqttAuth

Description

Represents a ConfigurationMqttAuth

Fields
Field NameDescription
_id - ID
address - String
token - String
Example
{
  "_id": "4",
  "address": "abc123",
  "token": "abc123"
}

ConfigurationOption

Description

Represents a ConfigurationOption

Fields
Field NameDescription
_id - ID
cloudEnabled - Boolean
clusterEnabled - Boolean
templateLibraryEnabled - Boolean
Example
{
  "_id": "4",
  "cloudEnabled": false,
  "clusterEnabled": false,
  "templateLibraryEnabled": true
}

ConfigurationRecaptcha

Description

Represents a ConfigurationRecaptcha

Fields
Field NameDescription
_id - ID
secret - String
Example
{
  "_id": "4",
  "secret": "xyz789"
}

ConfigurationRedi

Description

Represents a ConfigurationRedi

Fields
Field NameDescription
_id - ID
connectionString - String
Example
{"_id": 4, "connectionString": "xyz789"}

ConfigurationSentry

Description

Represents a ConfigurationSentry

Fields
Field NameDescription
_id - ID
dsn - String
Example
{"_id": 4, "dsn": "xyz789"}

ConfigurationServer

Description

Represents a ConfigurationServer

Fields
Field NameDescription
_id - ID
host - String
jwtExpiration - String
jwtSecret - String
port - Int
tokenExpiration - String
Example
{
  "_id": "4",
  "host": "abc123",
  "jwtExpiration": "abc123",
  "jwtSecret": "abc123",
  "port": 987,
  "tokenExpiration": "abc123"
}

ConfigurationSetting

Description

Represents a ConfigurationSetting

Fields
Field NameDescription
_id - ID
address - String
httpAddress - String
mqttBrokerAddress - String
Example
{
  "_id": "4",
  "address": "abc123",
  "httpAddress": "xyz789",
  "mqttBrokerAddress": "abc123"
}

ConfigurationStorage

Description

Represents a ConfigurationStorage

Fields
Field NameDescription
_id - ID
accessKey - String
bucket - String
endpoint - String
localStorageDirectory - String
maximumFileSize - Int
secretAccessKey - String
storageSystem - ConfigurationStorageStorageSystem
Example
{
  "_id": "4",
  "accessKey": "xyz789",
  "bucket": "abc123",
  "endpoint": "abc123",
  "localStorageDirectory": "xyz789",
  "maximumFileSize": 987,
  "secretAccessKey": "abc123",
  "storageSystem": "Local"
}

ConfigurationStorageStorageSystem

Values
Enum ValueDescription

Local

S3

Example
"Local"

ConfigurationTimesery

Description

Represents a ConfigurationTimesery

Fields
Field NameDescription
_id - ID
influxdbv1 - ConfigurationTimeseryInfluxdbv1
influxdbv2 - ConfigurationTimeseryInfluxdbv2
type - ConfigurationTimeseryType
Example
{
  "_id": 4,
  "influxdbv1": ConfigurationTimeseryInfluxdbv1,
  "influxdbv2": ConfigurationTimeseryInfluxdbv2,
  "type": "influx_v1"
}

ConfigurationTimeseryInfluxdbv1

Description

Represents a ConfigurationTimeseryInfluxdbv1

Fields
Field NameDescription
_id - ID
address - String
bucket - String
password - String
username - String
Example
{
  "_id": "4",
  "address": "xyz789",
  "bucket": "abc123",
  "password": "abc123",
  "username": "abc123"
}

ConfigurationTimeseryInfluxdbv2

Description

Represents a ConfigurationTimeseryInfluxdbv2

Fields
Field NameDescription
_id - ID
address - String
bucket - String
organization - String
token - String
Example
{
  "_id": "4",
  "address": "xyz789",
  "bucket": "abc123",
  "organization": "xyz789",
  "token": "xyz789"
}

ConfigurationTimeseryType

Values
Enum ValueDescription

influx_v1

influx_v2

none

Example
"influx_v1"

ConfigurationWebsocket

Description

Represents a ConfigurationWebsocket

Fields
Field NameDescription
_id - ID
address - String
host - String
port - Int
Example
{
  "_id": "4",
  "address": "xyz789",
  "host": "abc123",
  "port": 123
}

Contact

Description

Represents a Contact

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
user - Account!
userContact - Account!
userContactId - ID!
userId - ID!
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "user": Account,
  "userContact": Account,
  "userContactId": 4,
  "userId": 4
}

ContactOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

updatedAt_ASC

updatedAt_DESC

userContact_name_ASC

userContact_name_DESC

userContact_name_contains

Example
"_id_ASC"

ContactUpdateInput

Description

Represents a ContactUpdateInput

Fields
Input FieldDescription
user - ID
userContact - ID
Example
{"user": "4", "userContact": 4}

ContactWhereInput

Description

Represents a Where input for: Contact

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
userContact - AccountWhereInput
userContact_all - [ID]Given value includes all in array
userContact_eq - IDField is equal to given value
userContact_exists - BooleanField is set and exists
userContact_in - [ID]Given value includes field
userContact_name_contains - String
userContact_ne - IDField is not equal to given value
userContact_nin - [ID]Given value does not include field
user_all - [ID]Given value includes all in array
user_eq - IDField is equal to given value
user_exists - BooleanField is set and exists
user_in - [ID]Given value includes field
user_ne - IDField is not equal to given value
user_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"],
  "userContact": AccountWhereInput,
  "userContact_all": ["4"],
  "userContact_eq": 4,
  "userContact_exists": true,
  "userContact_in": [4],
  "userContact_name_contains": "xyz789",
  "userContact_ne": "4",
  "userContact_nin": [4],
  "user_all": ["4"],
  "user_eq": "4",
  "user_exists": false,
  "user_in": ["4"],
  "user_ne": 4,
  "user_nin": [4]
}

ContactWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

CustomCreateOrUpdateManyInvites

Fields
Field NameDescription
sentInvites - [Invite]
sentInvitesCount - Int
unsentInvitesCount - Int
Example
{
  "sentInvites": [Invite],
  "sentInvitesCount": 987,
  "unsentInvitesCount": 123
}

Dashboard

Description

Represents a Dashboard

Fields
Field NameDescription
_id - ID
account - Account!
accountId - ID!
autoRefresh - Boolean
createdAt - DateTime
createdBy - Account
createdById - ID
default - Boolean
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
folder - DashboardFolder!
folderId - ID!
name - String!
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
widgets - [Widget]
Example
{
  "_id": 4,
  "account": Account,
  "accountId": "4",
  "autoRefresh": true,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "default": false,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "folder": DashboardFolder,
  "folderId": 4,
  "name": "xyz789",
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4,
  "widgets": [Widget]
}

DashboardCreateInput

Description

Represents a DashboardCreateInput

Fields
Input FieldDescription
autoRefresh - Boolean
default - Boolean
folder - ID!
name - String!
Example
{
  "autoRefresh": true,
  "default": false,
  "folder": "4",
  "name": "abc123"
}

DashboardDraft

Description

Represents a DashboardDraft

Fields
Field NameDescription
_id - ID
account - Account!
accountId - ID!
autoRefresh - Boolean
createdAt - DateTime
dashboard - Dashboard!
dashboardId - ID!
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
updatedAt - DateTime
widgets - [Widget]
Example
{
  "_id": 4,
  "account": Account,
  "accountId": 4,
  "autoRefresh": true,
  "createdAt": "2007-12-03T10:15:30Z",
  "dashboard": Dashboard,
  "dashboardId": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "widgets": [Widget]
}

DashboardDraftInput

Fields
Input FieldDescription
autoRefresh - Boolean
name - String
Example
{"autoRefresh": true, "name": "xyz789"}

DashboardDraftWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

DashboardFolder

Description

Represents a DashboardFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
dashboardFoldersCount - Int
dashboardsCount - Int
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - DashboardFolderDashboardFolder Parent
parentId - IDDashboardFolder Parent
parentsTree - [DashboardFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "dashboardFoldersCount": 987,
  "dashboardsCount": 987,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "xyz789",
  "parent": DashboardFolder,
  "parentId": 4,
  "parentsTree": [DashboardFolder],
  "parentsTreeIds": ["4"],
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

DashboardFolderCreateInput

Description

Represents a DashboardFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDDashboardFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": "4"
}

DashboardFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

DashboardFolderUpdateInput

Description

Represents a DashboardFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDDashboardFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": 4
}

DashboardFolderWhereInput

Description

Represents a Where input for: DashboardFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
dashboards_every - DashboardWhereInput
dashboards_none - DashboardWhereInput
dashboards_some - DashboardWhereInput
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "context_contains": "abc123",
  "context_ends_with": "abc123",
  "context_eq": "xyz789",
  "context_exists": true,
  "context_in": ["abc123"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "abc123",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "dashboards_every": DashboardWhereInput,
  "dashboards_none": DashboardWhereInput,
  "dashboards_some": DashboardWhereInput,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "parent_all": ["4"],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": [4],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

DashboardFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

DashboardOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

DashboardUpdateInput

Description

Represents a DashboardUpdateInput

Fields
Input FieldDescription
autoRefresh - Boolean
default - Boolean
folder - ID
name - String
Example
{
  "autoRefresh": false,
  "default": false,
  "folder": 4,
  "name": "xyz789"
}

DashboardWhereInput

Description

Represents a Where input for: Dashboard

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
autoRefresh_eq - BooleanField is equal to given value
autoRefresh_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
default_eq - BooleanField is equal to given value
default_ne - BooleanField is not equal to given value
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
folder - DashboardFolderWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "account_all": ["4"],
  "account_eq": "4",
  "account_exists": true,
  "account_in": [4],
  "account_ne": 4,
  "account_nin": [4],
  "autoRefresh_eq": false,
  "autoRefresh_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "default_eq": true,
  "default_ne": true,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "folder": DashboardFolderWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

DashboardWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

DataIssueFrequencyWhere

Fields
Input FieldDescription
timeUnit_eq - String
timeUnit_in - [IssueCatalogSchedulerTimeUnit]
Example
{
  "timeUnit_eq": "abc123",
  "timeUnit_in": ["days"]
}

DataIssueInstanceWhere

Fields
Input FieldDescription
executedBy_in - [ID]
stateMachineInstance - DataStateMachineStateWhere
workPackageId_exists - Boolean
Example
{
  "executedBy_in": [4],
  "stateMachineInstance": DataStateMachineStateWhere,
  "workPackageId_exists": true
}

DataIssueWhere

Fields
Input FieldDescription
OR - [OrDataIssueWhere]
approval - ApprovalWhere
assignedAccounts_in - [ID]
assignedLabelValues_in - [ID]
canceledBySystem_eq - Boolean
canceledBySystem_exists - Boolean
canceledBy_exists - Boolean
catalog_eq - ID
closedAt_exists - Boolean
currentState_in - [String]
element - ElementWhereInput
element_eq - ID
estimatedDurationUnit_in - [IssueInstanceEstimatedDurationUnit]
finishedAt_exists - Boolean
frequency - DataIssueFrequencyWhere
instance - DataIssueInstanceWhere
labelValues_in - [ID]
name_contains - String
name_eq - String
name_ne - String
needsApproval_eq - Boolean
needsApproval_ne - Boolean
rootElement - ElementWhereInput
rootSite - SiteWhereInput
search_contains - String
search_eq - String
search_ne - String
site - SiteWhereInput
site_eq - ID
site_in - [ID]
usersNotBlocked_exists - Boolean
usersNotBlocked_in - [ID]
usersNotBlocked_nin - [ID]
wip_eq - Boolean
wip_ne - Boolean
workPackageId_exists - Boolean
Example
{
  "OR": [OrDataIssueWhere],
  "approval": ApprovalWhere,
  "assignedAccounts_in": [4],
  "assignedLabelValues_in": [4],
  "canceledBySystem_eq": true,
  "canceledBySystem_exists": true,
  "canceledBy_exists": true,
  "catalog_eq": "4",
  "closedAt_exists": true,
  "currentState_in": ["xyz789"],
  "element": ElementWhereInput,
  "element_eq": "4",
  "estimatedDurationUnit_in": ["hours"],
  "finishedAt_exists": false,
  "frequency": DataIssueFrequencyWhere,
  "instance": DataIssueInstanceWhere,
  "labelValues_in": ["4"],
  "name_contains": "xyz789",
  "name_eq": "abc123",
  "name_ne": "abc123",
  "needsApproval_eq": false,
  "needsApproval_ne": true,
  "rootElement": ElementWhereInput,
  "rootSite": SiteWhereInput,
  "search_contains": "xyz789",
  "search_eq": "xyz789",
  "search_ne": "abc123",
  "site": SiteWhereInput,
  "site_eq": "4",
  "site_in": ["4"],
  "usersNotBlocked_exists": true,
  "usersNotBlocked_in": [4],
  "usersNotBlocked_nin": [4],
  "wip_eq": false,
  "wip_ne": false,
  "workPackageId_exists": true
}

DataStateMachineStateWhere

Fields
Input FieldDescription
currentState_in - [String]
Example
{"currentState_in": ["abc123"]}

DataStateMachineWhere

Fields
Input FieldDescription
canceled_eq - Boolean
canceled_ne - Boolean
wip_eq - Boolean
wip_ne - Boolean
Example
{"canceled_eq": true, "canceled_ne": false, "wip_eq": true, "wip_ne": true}

Date

Description

A date string, such as 2007-12-03, compliant with the full-date format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.

Example
"2007-12-03"

DateIntervalInput

Fields
Input FieldDescription
endAt - String
startAt - String
Example
{
  "endAt": "xyz789",
  "startAt": "abc123"
}

DateTime

Description

A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the date-time format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.

Example
"2007-12-03T10:15:30Z"

DeleteManyFilesInfo

Fields
Field NameDescription
deleted - Int
Example
{"deleted": 987}

DeleteManyReturnType

Fields
Field NameDescription
deleted - IntNumber of records deleted
found - IntNumber of records found
status - BooleanIf operation was well succeeded
Example
{"deleted": 123, "found": 987, "status": false}

Device

Description

Represents a Device

Fields
Field NameDescription
_id - ID
address - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
deviceType - DeviceDeviceType!
lastBrowse - JSONDevice Last Browse
lastRead - JSONDevice Last Read
mqttBrockerAddress - String
mqttConfig - DeviceMqttConfig
mqttId - StringTopic for device
name - StringDescription for device
protected - Boolean
protocol - DeviceProtocol
site - Site
siteId - ID
status - String
system - Boolean
topic - StringTopic for device
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "address": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "deviceType": "other_generic",
  "lastBrowse": {},
  "lastRead": {},
  "mqttBrockerAddress": "xyz789",
  "mqttConfig": DeviceMqttConfig,
  "mqttId": "abc123",
  "name": "xyz789",
  "protected": true,
  "protocol": "generic",
  "site": Site,
  "siteId": 4,
  "status": "abc123",
  "system": false,
  "topic": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

DeviceCreateInput

Description

Represents a DeviceCreateInput

Fields
Input FieldDescription
deviceType - DeviceDeviceType!
name - StringDescription for device
site - ID
topic - StringTopic for device
Example
{
  "deviceType": "other_generic",
  "name": "abc123",
  "site": "4",
  "topic": "abc123"
}

DeviceDeviceType

Values
Enum ValueDescription

other_generic

Example
"other_generic"

DeviceMqttConfig

Description

Represents a DeviceMqttConfig

Fields
Field NameDescription
clientId - StringMQTT Client ID
id - StringMQTT Auth API Id
name - StringMQTT Name
password - StringMQTT Password
topic - StringMQTT Topic
username - StringMQTT Username
Example
{
  "clientId": "abc123",
  "id": "abc123",
  "name": "xyz789",
  "password": "abc123",
  "topic": "xyz789",
  "username": "abc123"
}

DeviceMqttConfigWhereInput

Description

Represents a Where input for: DeviceMqttConfig

Fields
Input FieldDescription
clientId_contains - StringField contains given value, case-insensitive
clientId_ends_with - StringField ends with given value, case-insensitive
clientId_eq - StringField is equal to given value
clientId_exists - BooleanField is set and exists
clientId_in - [String]Given value includes field
clientId_ne - StringField is not equal to given value
clientId_nin - [String]Given value does not includes field
clientId_not_contains - StringField does not contains given value, case-insensitive
clientId_not_ends_with - StringField does not end with given value, case-insensitive
clientId_not_starts_with - StringField does not start with given value, case-insensitive
clientId_starts_with - StringField starts with given value, case-insensitive
id_contains - StringField contains given value, case-insensitive
id_ends_with - StringField ends with given value, case-insensitive
id_eq - StringField is equal to given value
id_exists - BooleanField is set and exists
id_in - [String]Given value includes field
id_ne - StringField is not equal to given value
id_nin - [String]Given value does not includes field
id_not_contains - StringField does not contains given value, case-insensitive
id_not_ends_with - StringField does not end with given value, case-insensitive
id_not_starts_with - StringField does not start with given value, case-insensitive
id_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
password_contains - StringField contains given value, case-insensitive
password_ends_with - StringField ends with given value, case-insensitive
password_eq - StringField is equal to given value
password_exists - BooleanField is set and exists
password_in - [String]Given value includes field
password_ne - StringField is not equal to given value
password_nin - [String]Given value does not includes field
password_not_contains - StringField does not contains given value, case-insensitive
password_not_ends_with - StringField does not end with given value, case-insensitive
password_not_starts_with - StringField does not start with given value, case-insensitive
password_starts_with - StringField starts with given value, case-insensitive
topic_contains - StringField contains given value, case-insensitive
topic_ends_with - StringField ends with given value, case-insensitive
topic_eq - StringField is equal to given value
topic_exists - BooleanField is set and exists
topic_in - [String]Given value includes field
topic_ne - StringField is not equal to given value
topic_nin - [String]Given value does not includes field
topic_not_contains - StringField does not contains given value, case-insensitive
topic_not_ends_with - StringField does not end with given value, case-insensitive
topic_not_starts_with - StringField does not start with given value, case-insensitive
topic_starts_with - StringField starts with given value, case-insensitive
username_contains - StringField contains given value, case-insensitive
username_ends_with - StringField ends with given value, case-insensitive
username_eq - StringField is equal to given value
username_exists - BooleanField is set and exists
username_in - [String]Given value includes field
username_ne - StringField is not equal to given value
username_nin - [String]Given value does not includes field
username_not_contains - StringField does not contains given value, case-insensitive
username_not_ends_with - StringField does not end with given value, case-insensitive
username_not_starts_with - StringField does not start with given value, case-insensitive
username_starts_with - StringField starts with given value, case-insensitive
Example
{
  "clientId_contains": "xyz789",
  "clientId_ends_with": "xyz789",
  "clientId_eq": "abc123",
  "clientId_exists": false,
  "clientId_in": ["abc123"],
  "clientId_ne": "abc123",
  "clientId_nin": ["xyz789"],
  "clientId_not_contains": "xyz789",
  "clientId_not_ends_with": "abc123",
  "clientId_not_starts_with": "abc123",
  "clientId_starts_with": "xyz789",
  "id_contains": "xyz789",
  "id_ends_with": "xyz789",
  "id_eq": "abc123",
  "id_exists": true,
  "id_in": ["abc123"],
  "id_ne": "abc123",
  "id_nin": ["abc123"],
  "id_not_contains": "abc123",
  "id_not_ends_with": "abc123",
  "id_not_starts_with": "xyz789",
  "id_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "password_contains": "xyz789",
  "password_ends_with": "xyz789",
  "password_eq": "xyz789",
  "password_exists": true,
  "password_in": ["xyz789"],
  "password_ne": "abc123",
  "password_nin": ["abc123"],
  "password_not_contains": "xyz789",
  "password_not_ends_with": "xyz789",
  "password_not_starts_with": "abc123",
  "password_starts_with": "xyz789",
  "topic_contains": "xyz789",
  "topic_ends_with": "abc123",
  "topic_eq": "xyz789",
  "topic_exists": false,
  "topic_in": ["xyz789"],
  "topic_ne": "abc123",
  "topic_nin": ["xyz789"],
  "topic_not_contains": "abc123",
  "topic_not_ends_with": "xyz789",
  "topic_not_starts_with": "abc123",
  "topic_starts_with": "xyz789",
  "username_contains": "abc123",
  "username_ends_with": "abc123",
  "username_eq": "abc123",
  "username_exists": true,
  "username_in": ["xyz789"],
  "username_ne": "abc123",
  "username_nin": ["xyz789"],
  "username_not_contains": "abc123",
  "username_not_ends_with": "xyz789",
  "username_not_starts_with": "abc123",
  "username_starts_with": "abc123"
}

DeviceOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

deviceType_ASC

deviceType_DESC

mqttConfig_clientId_ASC

mqttConfig_clientId_DESC

mqttConfig_id_ASC

mqttConfig_id_DESC

mqttConfig_name_ASC

mqttConfig_name_DESC

mqttConfig_password_ASC

mqttConfig_password_DESC

mqttConfig_topic_ASC

mqttConfig_topic_DESC

mqttConfig_username_ASC

mqttConfig_username_DESC

mqttId_ASC

mqttId_DESC

name_ASC

name_DESC

protocol_ASC

protocol_DESC

topic_ASC

topic_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

DeviceProtocol

Values
Enum ValueDescription

generic

Example
"generic"

DeviceUpdateInput

Description

Represents a DeviceUpdateInput

Fields
Input FieldDescription
deviceType - DeviceDeviceType
name - StringDescription for device
site - ID
topic - StringTopic for device
Example
{
  "deviceType": "other_generic",
  "name": "xyz789",
  "site": 4,
  "topic": "xyz789"
}

DeviceWhereInput

Description

Represents a Where input for: Device

Fields
Input FieldDescription
OR - [OrDeviceWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
deviceType_eq - DeviceDeviceTypeField is equal to given value
deviceType_exists - DeviceDeviceTypeField is set and exists
deviceType_in - [DeviceDeviceType]Given value includes field
deviceType_ne - DeviceDeviceTypeField is not equal to given value
deviceType_nin - [DeviceDeviceType]Given value does not includes field
lastBrowse - JSONDevice Last Browse
lastRead - JSONDevice Last Read
mqttConfig - DeviceMqttConfigWhereInput
mqttId_contains - StringField contains given value, case-insensitive
mqttId_ends_with - StringField ends with given value, case-insensitive
mqttId_eq - StringField is equal to given value
mqttId_exists - BooleanField is set and exists
mqttId_in - [String]Given value includes field
mqttId_ne - StringField is not equal to given value
mqttId_nin - [String]Given value does not includes field
mqttId_not_contains - StringField does not contains given value, case-insensitive
mqttId_not_ends_with - StringField does not end with given value, case-insensitive
mqttId_not_starts_with - StringField does not start with given value, case-insensitive
mqttId_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
protocol_eq - DeviceProtocolField is equal to given value
protocol_exists - DeviceProtocolField is set and exists
protocol_in - [DeviceProtocol]Given value includes field
protocol_ne - DeviceProtocolField is not equal to given value
protocol_nin - [DeviceProtocol]Given value does not includes field
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
topic_contains - StringField contains given value, case-insensitive
topic_ends_with - StringField ends with given value, case-insensitive
topic_eq - StringField is equal to given value
topic_exists - BooleanField is set and exists
topic_in - [String]Given value includes field
topic_ne - StringField is not equal to given value
topic_nin - [String]Given value does not includes field
topic_not_contains - StringField does not contains given value, case-insensitive
topic_not_ends_with - StringField does not end with given value, case-insensitive
topic_not_starts_with - StringField does not start with given value, case-insensitive
topic_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrDeviceWhereInput],
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "deviceType_eq": "other_generic",
  "deviceType_exists": "other_generic",
  "deviceType_in": ["other_generic"],
  "deviceType_ne": "other_generic",
  "deviceType_nin": ["other_generic"],
  "lastBrowse": {},
  "lastRead": {},
  "mqttConfig": DeviceMqttConfigWhereInput,
  "mqttId_contains": "xyz789",
  "mqttId_ends_with": "xyz789",
  "mqttId_eq": "abc123",
  "mqttId_exists": true,
  "mqttId_in": ["xyz789"],
  "mqttId_ne": "abc123",
  "mqttId_nin": ["abc123"],
  "mqttId_not_contains": "abc123",
  "mqttId_not_ends_with": "xyz789",
  "mqttId_not_starts_with": "abc123",
  "mqttId_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "protocol_eq": "generic",
  "protocol_exists": "generic",
  "protocol_in": ["generic"],
  "protocol_ne": "generic",
  "protocol_nin": ["generic"],
  "site_all": [4],
  "site_eq": 4,
  "site_exists": true,
  "site_in": ["4"],
  "site_ne": 4,
  "site_nin": ["4"],
  "system_eq": false,
  "system_ne": false,
  "topic_contains": "xyz789",
  "topic_ends_with": "xyz789",
  "topic_eq": "abc123",
  "topic_exists": true,
  "topic_in": ["xyz789"],
  "topic_ne": "abc123",
  "topic_nin": ["abc123"],
  "topic_not_contains": "xyz789",
  "topic_not_ends_with": "xyz789",
  "topic_not_starts_with": "abc123",
  "topic_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

DeviceWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

DownloadFileInfo

Fields
Field NameDescription
_id - ID
thumbnail - DownloadFileThumbnailInfo
url - String
validUntil - Int
Example
{
  "_id": 4,
  "thumbnail": DownloadFileThumbnailInfo,
  "url": "abc123",
  "validUntil": 123
}

DownloadFileThumbnailInfo

Fields
Field NameDescription
url - String
validUntil - Int
Example
{"url": "xyz789", "validUntil": 123}

DownloadLogoInfo

Fields
Field NameDescription
url - String
validUntil - Int
Example
{"url": "abc123", "validUntil": 123}

DraftAttributesUpdateInput

Example
{
  "favorites": [IssueTemplateDraftFavoriteUpdateInput],
  "frame": IssueTemplateDraftFrameUpdateInput,
  "timeMapColumns": [
    IssueTemplateDraftTimeMapColumnUpdateInput
  ],
  "timeTableFilters": [
    IssueTemplateDraftTimeTableFilterUpdateInput
  ],
  "title": "xyz789",
  "variant": IssueTemplateDraftVariantUpdateInput
}

DuplicateTaskResult

Fields
Field NameDescription
issue - IssueInstance
tasks - [ID]
Example
{
  "issue": IssueInstance,
  "tasks": ["4"]
}

Element

Description

Represents a Element

Fields
Field NameDescription
_id - ID
arLocked - BooleanIf this element is AR LOCKED
awaitingApproval - Boolean
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringElement description
elements - [Element]
elementsCount - Int
icon - StringElement Icon
image - File
imageDetails - ElementImageDetail
imageId - ID
inputs - [Input]
labelValues - [LabelValue]
labelValuesIds - [ID]
log - [ElementLog]
marker - Marker
markerId - ID
name - String!Element name
needsApproval - Boolean
parent - ElementElement Parent
parentId - IDElement Parent
parentsTree - [Element]
parentsTreeIds - [ID]
pendingAt - Date
pendingBy - Account
pendingById - ID
pendingInputs - [Input]
profile - Profile
profileId - ID
protected - Boolean
responsibles - Responsibles
site - Site!
siteId - ID!
system - Boolean
tags - [ElementTag]
tasks - [Task]This field will be removed
tasksCount - IntThis field will be removed
template - ElementTemplate!
templateId - ID!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "arLocked": true,
  "awaitingApproval": false,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "elements": [Element],
  "elementsCount": 987,
  "icon": "xyz789",
  "image": File,
  "imageDetails": ElementImageDetail,
  "imageId": 4,
  "inputs": [Input],
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "log": [ElementLog],
  "marker": Marker,
  "markerId": "4",
  "name": "xyz789",
  "needsApproval": true,
  "parent": Element,
  "parentId": 4,
  "parentsTree": [Element],
  "parentsTreeIds": ["4"],
  "pendingAt": "2007-12-03",
  "pendingBy": Account,
  "pendingById": "4",
  "pendingInputs": [Input],
  "profile": Profile,
  "profileId": "4",
  "protected": true,
  "responsibles": Responsibles,
  "site": Site,
  "siteId": 4,
  "system": false,
  "tags": [ElementTag],
  "tasks": [Task],
  "tasksCount": 123,
  "template": ElementTemplate,
  "templateId": "4",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ElementCreateInput

Description

Represents a ElementCreateInput

Fields
Input FieldDescription
arLocked - BooleanIf this element is AR LOCKED
description - StringElement description
icon - StringElement Icon
image - ID
imageDetails - ElementImageDetailCreateInputDetails of element image
inputs - [InputCreateInput]
labelValues - [ID]
log - [ElementLogCreateInput]Record of this Site state changes
marker - ID
name - String!Element name
parent - IDElement Parent
profile - ID
site - ID!
tags - [ElementTagCreateInput]
template - ID!
Example
{
  "arLocked": false,
  "description": "xyz789",
  "icon": "abc123",
  "image": 4,
  "imageDetails": ElementImageDetailCreateInput,
  "inputs": [InputCreateInput],
  "labelValues": ["4"],
  "log": [ElementLogCreateInput],
  "marker": "4",
  "name": "abc123",
  "parent": "4",
  "profile": 4,
  "site": "4",
  "tags": [ElementTagCreateInput],
  "template": "4"
}

ElementImageDetail

Description

Represents a ElementImageDetail

Fields
Field NameDescription
imageId - String
position - ElementImageDetailPosition
zoomLevel - Int
Example
{
  "imageId": "abc123",
  "position": ElementImageDetailPosition,
  "zoomLevel": 123
}

ElementImageDetailCreateInput

Description

Represents a ElementImageDetailCreateInput

Fields
Input FieldDescription
imageId - String
position - ElementImageDetailPositionCreateInput
zoomLevel - Int
Example
{
  "imageId": "xyz789",
  "position": ElementImageDetailPositionCreateInput,
  "zoomLevel": 987
}

ElementImageDetailPosition

Description

Represents a ElementImageDetailPosition

Fields
Field NameDescription
x - Int
y - Int
Example
{"x": 123, "y": 987}

ElementImageDetailPositionCreateInput

Description

Represents a ElementImageDetailPositionCreateInput

Fields
Input FieldDescription
x - Int
y - Int
Example
{"x": 123, "y": 987}

ElementImageDetailPositionUpdateInput

Description

Represents a ElementImageDetailPositionUpdateInput

Fields
Input FieldDescription
x - Int
y - Int
Example
{"x": 123, "y": 987}

ElementImageDetailPositionWhereInput

Description

Represents a Where input for: ElementImageDetailPosition

Fields
Input FieldDescription
x_eq - IntField is equal to given value
x_exists - BooleanField is set and exists
x_gt - IntField is greater than given value
x_gte - IntField is greater or equal than given value
x_in - [Int]Given value includes field
x_lt - IntField is lower than given value
x_lte - IntField is lower or equal than given value
x_ne - IntField is not equal to given value
x_nin - [Int]Given value does not includes field
y_eq - IntField is equal to given value
y_exists - BooleanField is set and exists
y_gt - IntField is greater than given value
y_gte - IntField is greater or equal than given value
y_in - [Int]Given value includes field
y_lt - IntField is lower than given value
y_lte - IntField is lower or equal than given value
y_ne - IntField is not equal to given value
y_nin - [Int]Given value does not includes field
Example
{
  "x_eq": 123,
  "x_exists": true,
  "x_gt": 987,
  "x_gte": 123,
  "x_in": [123],
  "x_lt": 123,
  "x_lte": 123,
  "x_ne": 123,
  "x_nin": [987],
  "y_eq": 123,
  "y_exists": true,
  "y_gt": 123,
  "y_gte": 987,
  "y_in": [123],
  "y_lt": 123,
  "y_lte": 123,
  "y_ne": 123,
  "y_nin": [987]
}

ElementImageDetailUpdateInput

Description

Represents a ElementImageDetailUpdateInput

Fields
Input FieldDescription
imageId - String
position - ElementImageDetailPositionUpdateInput
zoomLevel - Int
Example
{
  "imageId": "abc123",
  "position": ElementImageDetailPositionUpdateInput,
  "zoomLevel": 987
}

ElementImageDetailWhereInput

Description

Represents a Where input for: ElementImageDetail

Fields
Input FieldDescription
imageId_contains - StringField contains given value, case-insensitive
imageId_ends_with - StringField ends with given value, case-insensitive
imageId_eq - StringField is equal to given value
imageId_exists - BooleanField is set and exists
imageId_in - [String]Given value includes field
imageId_ne - StringField is not equal to given value
imageId_nin - [String]Given value does not includes field
imageId_not_contains - StringField does not contains given value, case-insensitive
imageId_not_ends_with - StringField does not end with given value, case-insensitive
imageId_not_starts_with - StringField does not start with given value, case-insensitive
imageId_starts_with - StringField starts with given value, case-insensitive
position - ElementImageDetailPositionWhereInput
zoomLevel_eq - IntField is equal to given value
zoomLevel_exists - BooleanField is set and exists
zoomLevel_gt - IntField is greater than given value
zoomLevel_gte - IntField is greater or equal than given value
zoomLevel_in - [Int]Given value includes field
zoomLevel_lt - IntField is lower than given value
zoomLevel_lte - IntField is lower or equal than given value
zoomLevel_ne - IntField is not equal to given value
zoomLevel_nin - [Int]Given value does not includes field
Example
{
  "imageId_contains": "xyz789",
  "imageId_ends_with": "xyz789",
  "imageId_eq": "xyz789",
  "imageId_exists": true,
  "imageId_in": ["xyz789"],
  "imageId_ne": "abc123",
  "imageId_nin": ["abc123"],
  "imageId_not_contains": "xyz789",
  "imageId_not_ends_with": "abc123",
  "imageId_not_starts_with": "xyz789",
  "imageId_starts_with": "xyz789",
  "position": ElementImageDetailPositionWhereInput,
  "zoomLevel_eq": 123,
  "zoomLevel_exists": true,
  "zoomLevel_gt": 123,
  "zoomLevel_gte": 987,
  "zoomLevel_in": [123],
  "zoomLevel_lt": 123,
  "zoomLevel_lte": 987,
  "zoomLevel_ne": 987,
  "zoomLevel_nin": [123]
}

ElementLog

Description

Represents a ElementLog

Fields
Field NameDescription
action - String
by - Account
byId - ID
createdAt - DateTime
field - String
status - ElementLogStatus
to - ElementLogTo
type - String
Example
{
  "action": "xyz789",
  "by": Account,
  "byId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "field": "xyz789",
  "status": "approved",
  "to": ElementLogTo,
  "type": "abc123"
}

ElementLogCreateInput

Description

Represents a ElementLogCreateInput

Fields
Input FieldDescription
action - String
by - ID
field - String
status - ElementLogStatus
to - ElementLogToCreateInput
type - String
Example
{
  "action": "abc123",
  "by": 4,
  "field": "abc123",
  "status": "approved",
  "to": ElementLogToCreateInput,
  "type": "xyz789"
}

ElementLogStatus

Values
Enum ValueDescription

approved

pending

rejected

reverted

Example
"approved"

ElementLogTo

Description

Represents a ElementLogTo

Fields
Field NameDescription
labelValues - [LabelValue]
labelValuesIds - [ID]
tags - [ElementLogToTag]
value - String
Example
{
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "tags": [ElementLogToTag],
  "value": "xyz789"
}

ElementLogToCreateInput

Description

Represents a ElementLogToCreateInput

Fields
Input FieldDescription
labelValues - [ID]
tags - [ElementLogToTagCreateInput]
value - String
Example
{
  "labelValues": ["4"],
  "tags": [ElementLogToTagCreateInput],
  "value": "abc123"
}

ElementLogToTag

Description

Represents a ElementLogToTag

Fields
Field NameDescription
_id - ID
device - Device
deviceId - ID
key - String
name - String!
unit - Unit
unitId - ID
value - String
Example
{
  "_id": 4,
  "device": Device,
  "deviceId": 4,
  "key": "abc123",
  "name": "abc123",
  "unit": Unit,
  "unitId": 4,
  "value": "abc123"
}

ElementLogToTagCreateInput

Description

Represents a ElementLogToTagCreateInput

Fields
Input FieldDescription
device - ID
key - String
name - String!
unit - ID
value - String
Example
{
  "device": 4,
  "key": "xyz789",
  "name": "abc123",
  "unit": 4,
  "value": "abc123"
}

ElementLogToTagUpdateInput

Description

Represents a ElementLogToTagUpdateInput

Fields
Input FieldDescription
device - ID
key - String
name - String
unit - ID
value - String
Example
{
  "device": "4",
  "key": "xyz789",
  "name": "abc123",
  "unit": "4",
  "value": "xyz789"
}

ElementLogToTagWhereInput

Description

Represents a Where input for: ElementLogToTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "device_all": ["4"],
  "device_eq": "4",
  "device_exists": true,
  "device_in": [4],
  "device_ne": 4,
  "device_nin": ["4"],
  "key_contains": "xyz789",
  "key_ends_with": "abc123",
  "key_eq": "abc123",
  "key_exists": true,
  "key_in": ["abc123"],
  "key_ne": "abc123",
  "key_nin": ["abc123"],
  "key_not_contains": "abc123",
  "key_not_ends_with": "xyz789",
  "key_not_starts_with": "xyz789",
  "key_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "unit_all": ["4"],
  "unit_eq": "4",
  "unit_exists": false,
  "unit_in": [4],
  "unit_ne": "4",
  "unit_nin": ["4"],
  "value_contains": "xyz789",
  "value_ends_with": "xyz789",
  "value_eq": "xyz789",
  "value_exists": true,
  "value_in": ["xyz789"],
  "value_ne": "xyz789",
  "value_nin": ["abc123"],
  "value_not_contains": "abc123",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "abc123",
  "value_starts_with": "abc123"
}

ElementLogToUpdateInput

Description

Represents a ElementLogToUpdateInput

Fields
Input FieldDescription
labelValues - [ID]
tags - [ElementLogToTagUpdateInput]
value - String
Example
{
  "labelValues": ["4"],
  "tags": [ElementLogToTagUpdateInput],
  "value": "xyz789"
}

ElementLogToWhereInput

Description

Represents a Where input for: ElementLogTo

Fields
Input FieldDescription
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
tags_every - ElementLogToTagWhereInput
tags_exists - Boolean
tags_none - ElementLogToTagWhereInput
tags_some - ElementLogToTagWhereInput
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "tags_every": ElementLogToTagWhereInput,
  "tags_exists": true,
  "tags_none": ElementLogToTagWhereInput,
  "tags_some": ElementLogToTagWhereInput,
  "value_contains": "abc123",
  "value_ends_with": "abc123",
  "value_eq": "abc123",
  "value_exists": true,
  "value_in": ["xyz789"],
  "value_ne": "xyz789",
  "value_nin": ["abc123"],
  "value_not_contains": "xyz789",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "abc123",
  "value_starts_with": "abc123"
}

ElementLogUpdateInput

Description

Represents a ElementLogUpdateInput

Fields
Input FieldDescription
action - String
by - ID
field - String
status - ElementLogStatus
to - ElementLogToUpdateInput
type - String
Example
{
  "action": "abc123",
  "by": 4,
  "field": "xyz789",
  "status": "approved",
  "to": ElementLogToUpdateInput,
  "type": "xyz789"
}

ElementLogWhereInput

Description

Represents a Where input for: ElementLog

Fields
Input FieldDescription
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
field_contains - StringField contains given value, case-insensitive
field_ends_with - StringField ends with given value, case-insensitive
field_eq - StringField is equal to given value
field_exists - BooleanField is set and exists
field_in - [String]Given value includes field
field_ne - StringField is not equal to given value
field_nin - [String]Given value does not includes field
field_not_contains - StringField does not contains given value, case-insensitive
field_not_ends_with - StringField does not end with given value, case-insensitive
field_not_starts_with - StringField does not start with given value, case-insensitive
field_starts_with - StringField starts with given value, case-insensitive
status_eq - ElementLogStatusField is equal to given value
status_exists - ElementLogStatusField is set and exists
status_in - [ElementLogStatus]Given value includes field
status_ne - ElementLogStatusField is not equal to given value
status_nin - [ElementLogStatus]Given value does not includes field
to - ElementLogToWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "action_contains": "abc123",
  "action_ends_with": "xyz789",
  "action_eq": "abc123",
  "action_exists": true,
  "action_in": ["abc123"],
  "action_ne": "abc123",
  "action_nin": ["abc123"],
  "action_not_contains": "xyz789",
  "action_not_ends_with": "abc123",
  "action_not_starts_with": "xyz789",
  "action_starts_with": "xyz789",
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": false,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "field_contains": "xyz789",
  "field_ends_with": "abc123",
  "field_eq": "xyz789",
  "field_exists": true,
  "field_in": ["xyz789"],
  "field_ne": "abc123",
  "field_nin": ["abc123"],
  "field_not_contains": "xyz789",
  "field_not_ends_with": "xyz789",
  "field_not_starts_with": "xyz789",
  "field_starts_with": "abc123",
  "status_eq": "approved",
  "status_exists": "approved",
  "status_in": ["approved"],
  "status_ne": "approved",
  "status_nin": ["approved"],
  "to": ElementLogToWhereInput,
  "type_contains": "abc123",
  "type_ends_with": "xyz789",
  "type_eq": "abc123",
  "type_exists": false,
  "type_in": ["abc123"],
  "type_ne": "abc123",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "abc123",
  "type_starts_with": "xyz789"
}

ElementOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

icon_ASC

icon_DESC

imageDetails_imageId_ASC

imageDetails_imageId_DESC

imageDetails_zoomLevel_ASC

imageDetails_zoomLevel_DESC

name_ASC

name_DESC

pendingAt_ASC

pendingAt_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ElementSiteReport

Description

Represents a ElementSiteReport

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
elementTemplate - ElementTemplateElement for this report
elementTemplateId - IDElement for this report
folder - ElementSiteReportFolder!ElementSiteReport Folder
folderId - ID!ElementSiteReport Folder
generalFields - [GeneralFieldElementEnum]
inputFields - [ID]
myConfig - ElementSiteReportConfig
name - String!Element report name
protected - Boolean
siteTemplate - SiteTemplateSite for this report
siteTemplateId - IDSite for this report
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "elementTemplate": ElementTemplate,
  "elementTemplateId": "4",
  "folder": ElementSiteReportFolder,
  "folderId": "4",
  "generalFields": ["description"],
  "inputFields": ["4"],
  "myConfig": ElementSiteReportConfig,
  "name": "xyz789",
  "protected": false,
  "siteTemplate": SiteTemplate,
  "siteTemplateId": 4,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ElementSiteReportConfig

Description

Represents a ElementSiteReportConfig

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
elementSiteReport - ElementSiteReport!ElementSiteReport for this config
elementSiteReportId - ID!ElementSiteReport for this config
generalFieldsToHide - [String]
inputFieldsToHide - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "elementSiteReport": ElementSiteReport,
  "elementSiteReportId": "4",
  "generalFieldsToHide": ["abc123"],
  "inputFieldsToHide": [4],
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ElementSiteReportConfigCreateInput

Description

Represents a ElementSiteReportConfigCreateInput

Fields
Input FieldDescription
elementSiteReport - ID!ElementSiteReport for this config
generalFieldsToHide - [String]
inputFieldsToHide - [ID]
Example
{
  "elementSiteReport": 4,
  "generalFieldsToHide": ["xyz789"],
  "inputFieldsToHide": [4]
}

ElementSiteReportConfigUpdateInput

Description

Represents a ElementSiteReportConfigUpdateInput

Fields
Input FieldDescription
elementSiteReport - IDElementSiteReport for this config
generalFieldsToHide - [String]
inputFieldsToHide - [ID]
Example
{
  "elementSiteReport": "4",
  "generalFieldsToHide": ["abc123"],
  "inputFieldsToHide": ["4"]
}

ElementSiteReportConfigWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ElementSiteReportCreateInput

Description

Represents a ElementSiteReportCreateInput

Fields
Input FieldDescription
elementTemplate - IDElement for this report
folder - ID!ElementSiteReport Folder
generalFields - [GeneralFieldElementEnum]
inputFields - [ID]
name - String!Element report name
siteTemplate - IDSite for this report
Example
{
  "elementTemplate": "4",
  "folder": "4",
  "generalFields": ["description"],
  "inputFields": [4],
  "name": "xyz789",
  "siteTemplate": "4"
}

ElementSiteReportDistinctValues

Fields
Field NameDescription
description - [String]
inputs - [ElementSiteReportTaskInputDistinct]
name - [String]
parentElement - [Element]
parentSite - [Site]
profile - [Profile]
rootElement - [Element]
rootSite - [Site]
Example
{
  "description": ["abc123"],
  "inputs": [ElementSiteReportTaskInputDistinct],
  "name": ["xyz789"],
  "parentElement": [Element],
  "parentSite": [Site],
  "profile": [Profile],
  "rootElement": [Element],
  "rootSite": [Site]
}

ElementSiteReportFilters

Fields
Input FieldDescription
_id - ID
description - [String]
inputs - [ElementSiteReportInputFilter]
name - String
parentElement - [String]
parentSite - [String]
profile - [String]
rootElement - [String]
rootSite - [String]
Example
{
  "_id": 4,
  "description": ["abc123"],
  "inputs": [ElementSiteReportInputFilter],
  "name": "abc123",
  "parentElement": ["abc123"],
  "parentSite": ["abc123"],
  "profile": ["abc123"],
  "rootElement": ["xyz789"],
  "rootSite": ["xyz789"]
}

ElementSiteReportFolder

Description

Represents a ElementSiteReportFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
elementSiteReportFoldersCount - Int
elementSiteReportsCount - Int
name - String!
parent - ElementSiteReportFolderElementSiteReportFolder Parent
parentId - IDElementSiteReportFolder Parent
parentsTree - [ElementSiteReportFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "elementSiteReportFoldersCount": 123,
  "elementSiteReportsCount": 987,
  "name": "abc123",
  "parent": ElementSiteReportFolder,
  "parentId": 4,
  "parentsTree": [ElementSiteReportFolder],
  "parentsTreeIds": [4],
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ElementSiteReportFolderCreateInput

Description

Represents a ElementSiteReportFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDElementSiteReportFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": 4
}

ElementSiteReportFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ElementSiteReportFolderUpdateInput

Description

Represents a ElementSiteReportFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDElementSiteReportFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": 4
}

ElementSiteReportFolderWhereInput

Description

Represents a Where input for: ElementSiteReportFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "context_contains": "xyz789",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": true,
  "context_in": ["abc123"],
  "context_ne": "abc123",
  "context_nin": ["abc123"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": false,
  "parent_in": [4],
  "parent_ne": 4,
  "parent_nin": [4],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

ElementSiteReportFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ElementSiteReportInfo

Fields
Field NameDescription
_id - ID
description - String
inputs - [Input]
name - String
parentElement - Element
parentSite - Site
parentsTreeElement - [Element]
parentsTreeSite - [Site]
profile - Profile
reportGeneralFields - [String]
reportId - String
reportType - String
rootElement - Element
rootSite - Site
site - Site
Example
{
  "_id": 4,
  "description": "abc123",
  "inputs": [Input],
  "name": "xyz789",
  "parentElement": Element,
  "parentSite": Site,
  "parentsTreeElement": [Element],
  "parentsTreeSite": [Site],
  "profile": Profile,
  "reportGeneralFields": ["xyz789"],
  "reportId": "xyz789",
  "reportType": "xyz789",
  "rootElement": Element,
  "rootSite": Site,
  "site": Site
}

ElementSiteReportInfoInputOrderBy

Fields
Input FieldDescription
asc - Boolean
default - Boolean
input - ID
Example
{"asc": true, "default": true, "input": 4}

ElementSiteReportInfoOrderByEnum

Values
Enum ValueDescription

description_ASC

description_DESC

name_ASC

name_DESC

parentElement_name_ASC

parentElement_name_DESC

parentSite_name_ASC

parentSite_name_DESC

profile_name_ASC

profile_name_DESC

rootElement_name_ASC

rootElement_name_DESC

rootSite_name_ASC

rootSite_name_DESC

Example
"description_ASC"

ElementSiteReportInputFilter

Fields
Input FieldDescription
inputId - ID
type - String
valueBigger - Any
valueLower - Any
valuesBetween - [Any]
valuesDateIn - [DateTime]
valuesIdIn - [ID]
valuesNumberIn - [Int]
valuesStringIn - [String]
Example
{
  "inputId": "4",
  "type": "abc123",
  "valueBigger": Any,
  "valueLower": Any,
  "valuesBetween": [Any],
  "valuesDateIn": ["2007-12-03T10:15:30Z"],
  "valuesIdIn": [4],
  "valuesNumberIn": [123],
  "valuesStringIn": ["xyz789"]
}

ElementSiteReportOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ElementSiteReportTaskInputDistinct

Fields
Field NameDescription
_id - ID!
datetime - [Date]
element - [Element]
labelValue - [LabelValue]
name - String
number - [Float]
site - [Site]
string - [String]
Example
{
  "_id": "4",
  "datetime": ["2007-12-03"],
  "element": [Element],
  "labelValue": [LabelValue],
  "name": "abc123",
  "number": [987.65],
  "site": [Site],
  "string": ["abc123"]
}

ElementSiteReportUpdateInput

Description

Represents a ElementSiteReportUpdateInput

Fields
Input FieldDescription
elementTemplate - IDElement for this report
folder - IDElementSiteReport Folder
generalFields - [GeneralFieldElementEnum]
inputFields - [ID]
name - StringElement report name
siteTemplate - IDSite for this report
Example
{
  "elementTemplate": "4",
  "folder": 4,
  "generalFields": ["description"],
  "inputFields": [4],
  "name": "abc123",
  "siteTemplate": 4
}

ElementSiteReportWhereInput

Description

Represents a Where input for: ElementSiteReport

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
elementTemplate_all - [ID]Given value includes all in array
elementTemplate_eq - IDField is equal to given value
elementTemplate_exists - BooleanField is set and exists
elementTemplate_in - [ID]Given value includes field
elementTemplate_ne - IDField is not equal to given value
elementTemplate_nin - [ID]Given value does not include field
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
generalFields_all - [String]Field includes all given values.
generalFields_eq - [String]Given value is equal to field
generalFields_exists - Boolean
generalFields_in - [String]Field includes one of given value.
generalFields_nin - [String]Field does not include any of the given values.
inputFields_all - [ID]Field includes all given values.
inputFields_eq - [ID]Given value is equal to field
inputFields_exists - Boolean
inputFields_in - [ID]Field includes one of given value.
inputFields_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
siteTemplate_all - [ID]Given value includes all in array
siteTemplate_eq - IDField is equal to given value
siteTemplate_exists - BooleanField is set and exists
siteTemplate_in - [ID]Given value includes field
siteTemplate_ne - IDField is not equal to given value
siteTemplate_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "elementTemplate_all": [4],
  "elementTemplate_eq": "4",
  "elementTemplate_exists": true,
  "elementTemplate_in": ["4"],
  "elementTemplate_ne": "4",
  "elementTemplate_nin": ["4"],
  "folder_all": [4],
  "folder_eq": "4",
  "folder_exists": true,
  "folder_in": ["4"],
  "folder_ne": "4",
  "folder_nin": ["4"],
  "generalFields_all": ["abc123"],
  "generalFields_eq": ["xyz789"],
  "generalFields_exists": true,
  "generalFields_in": ["xyz789"],
  "generalFields_nin": ["xyz789"],
  "inputFields_all": ["4"],
  "inputFields_eq": ["4"],
  "inputFields_exists": false,
  "inputFields_in": ["4"],
  "inputFields_nin": [4],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": false,
  "siteTemplate_all": [4],
  "siteTemplate_eq": 4,
  "siteTemplate_exists": false,
  "siteTemplate_in": ["4"],
  "siteTemplate_ne": 4,
  "siteTemplate_nin": ["4"],
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

ElementSiteReportWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ElementTag

Description

Represents a ElementTag

Fields
Field NameDescription
_id - ID
device - Device
deviceId - ID
key - String
name - String!
unit - Unit
unitId - ID
value - String
Example
{
  "_id": "4",
  "device": Device,
  "deviceId": "4",
  "key": "abc123",
  "name": "xyz789",
  "unit": Unit,
  "unitId": "4",
  "value": "xyz789"
}

ElementTagCreateInput

Description

Represents a ElementTagCreateInput

Fields
Input FieldDescription
device - ID
key - String
name - String!
unit - ID
value - String
Example
{
  "device": 4,
  "key": "abc123",
  "name": "xyz789",
  "unit": "4",
  "value": "xyz789"
}

ElementTagUpdateInput

Description

Represents a ElementTagUpdateInput

Fields
Input FieldDescription
_id - ID
device - ID
key - String
name - String
unit - ID
value - String
Example
{
  "_id": 4,
  "device": 4,
  "key": "abc123",
  "name": "abc123",
  "unit": 4,
  "value": "abc123"
}

ElementTagWhereInput

Description

Represents a Where input for: ElementTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "device_all": [4],
  "device_eq": 4,
  "device_exists": false,
  "device_in": [4],
  "device_ne": "4",
  "device_nin": ["4"],
  "key_contains": "xyz789",
  "key_ends_with": "abc123",
  "key_eq": "xyz789",
  "key_exists": true,
  "key_in": ["xyz789"],
  "key_ne": "xyz789",
  "key_nin": ["xyz789"],
  "key_not_contains": "xyz789",
  "key_not_ends_with": "abc123",
  "key_not_starts_with": "abc123",
  "key_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "unit_all": ["4"],
  "unit_eq": "4",
  "unit_exists": true,
  "unit_in": [4],
  "unit_ne": "4",
  "unit_nin": [4],
  "value_contains": "xyz789",
  "value_ends_with": "abc123",
  "value_eq": "xyz789",
  "value_exists": true,
  "value_in": ["abc123"],
  "value_ne": "abc123",
  "value_nin": ["xyz789"],
  "value_not_contains": "xyz789",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "xyz789",
  "value_starts_with": "xyz789"
}

ElementTemplate

Description

Represents a ElementTemplate

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
folder - ElementTemplateFolder!ElementTemplate Folder
folderId - ID!ElementTemplate Folder
frame - ElementTemplateFrame
icon - String
protected - Boolean
system - Boolean
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "archived": true,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "folder": ElementTemplateFolder,
  "folderId": 4,
  "frame": ElementTemplateFrame,
  "icon": "abc123",
  "protected": true,
  "system": false,
  "title": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ElementTemplateCreateInput

Description

Represents a ElementTemplateCreateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - ID!ElementTemplate Folder
frame - ElementTemplateFrameCreateInput
icon - String
title - String!
Example
{
  "archived": true,
  "description": "abc123",
  "folder": 4,
  "frame": ElementTemplateFrameCreateInput,
  "icon": "abc123",
  "title": "xyz789"
}

ElementTemplateFolder

Description

Represents a ElementTemplateFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
elementTemplateFoldersCount - Int
elementTemplatesCount - Int
Arguments
name - String!
parent - ElementTemplateFolderElementTemplateFolder Parent
parentId - IDElementTemplateFolder Parent
parentsTree - [ElementTemplateFolder]
parentsTreeCount - Int
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "elementTemplateFoldersCount": 987,
  "elementTemplatesCount": 987,
  "name": "abc123",
  "parent": ElementTemplateFolder,
  "parentId": 4,
  "parentsTree": [ElementTemplateFolder],
  "parentsTreeCount": 987,
  "parentsTreeIds": ["4"],
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ElementTemplateFolderCreateInput

Description

Represents a ElementTemplateFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDElementTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": "4"
}

ElementTemplateFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ElementTemplateFolderUpdateInput

Description

Represents a ElementTemplateFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDElementTemplateFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": 4
}

ElementTemplateFolderWhereInput

Description

Represents a Where input for: ElementTemplateFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "context_contains": "xyz789",
  "context_ends_with": "xyz789",
  "context_eq": "xyz789",
  "context_exists": false,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "abc123",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

ElementTemplateFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ElementTemplateFrame

Description

Represents a ElementTemplateFrame

Fields
Field NameDescription
inputs - [Input]
parent - Element
parentId - ID
profile - Profile
profileId - ID
Example
{
  "inputs": [Input],
  "parent": Element,
  "parentId": "4",
  "profile": Profile,
  "profileId": "4"
}

ElementTemplateFrameCreateInput

Description

Represents a ElementTemplateFrameCreateInput

Fields
Input FieldDescription
inputs - [InputCreateInput]
parent - ID
profile - ID
Example
{"inputs": [InputCreateInput], "parent": 4, "profile": 4}

ElementTemplateFrameUpdateInput

Description

Represents a ElementTemplateFrameUpdateInput

Fields
Input FieldDescription
inputs - [InputUpdateInput]
parent - ID
profile - ID
Example
{
  "inputs": [InputUpdateInput],
  "parent": "4",
  "profile": 4
}

ElementTemplateFrameWhereInput

Description

Represents a Where input for: ElementTemplateFrame

Fields
Input FieldDescription
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
profile_all - [ID]Given value includes all in array
profile_eq - IDField is equal to given value
profile_exists - BooleanField is set and exists
profile_in - [ID]Given value includes field
profile_ne - IDField is not equal to given value
profile_nin - [ID]Given value does not include field
Example
{
  "inputs_every": InputWhereInput,
  "inputs_exists": false,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "parent_all": ["4"],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": [4],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "profile_all": ["4"],
  "profile_eq": "4",
  "profile_exists": true,
  "profile_in": [4],
  "profile_ne": 4,
  "profile_nin": [4]
}

ElementTemplateOrFolder

Example
ElementTemplate

ElementTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ElementTemplateUpdateInput

Description

Represents a ElementTemplateUpdateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - IDElementTemplate Folder
frame - ElementTemplateFrameUpdateInput
icon - String
title - String
Example
{
  "archived": false,
  "description": "abc123",
  "folder": "4",
  "frame": ElementTemplateFrameUpdateInput,
  "icon": "xyz789",
  "title": "abc123"
}

ElementTemplateWhereInput

Description

Represents a Where input for: ElementTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - ElementTemplateFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - ElementTemplateFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": false,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": ["4"],
  "archivedBy_eq": 4,
  "archivedBy_exists": false,
  "archivedBy_in": [4],
  "archivedBy_ne": "4",
  "archivedBy_nin": ["4"],
  "archived_eq": true,
  "archived_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "folder": ElementTemplateFolderWhereInput,
  "folder_all": ["4"],
  "folder_eq": "4",
  "folder_exists": false,
  "folder_in": ["4"],
  "folder_ne": "4",
  "folder_nin": ["4"],
  "frame": ElementTemplateFrameWhereInput,
  "icon_contains": "xyz789",
  "icon_ends_with": "abc123",
  "icon_eq": "abc123",
  "icon_exists": false,
  "icon_in": ["xyz789"],
  "icon_ne": "xyz789",
  "icon_nin": ["abc123"],
  "icon_not_contains": "abc123",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "xyz789",
  "icon_starts_with": "abc123",
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": false,
  "title_contains": "abc123",
  "title_ends_with": "abc123",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["xyz789"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "abc123",
  "title_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

ElementTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

ElementUpdateInput

Description

Represents a ElementUpdateInput

Fields
Input FieldDescription
arLocked - BooleanIf this element is AR LOCKED
description - StringElement description
icon - StringElement Icon
image - ID
imageDetails - ElementImageDetailUpdateInputDetails of element image
inputs - [InputUpdateInput]
labelValues - [ID]
log - [ElementLogUpdateInput]Record of this Site state changes
marker - ID
name - StringElement name
parent - IDElement Parent
profile - ID
site - ID
tags - [ElementTagUpdateInput]
template - ID
Example
{
  "arLocked": true,
  "description": "abc123",
  "icon": "xyz789",
  "image": "4",
  "imageDetails": ElementImageDetailUpdateInput,
  "inputs": [InputUpdateInput],
  "labelValues": [4],
  "log": [ElementLogUpdateInput],
  "marker": "4",
  "name": "abc123",
  "parent": 4,
  "profile": 4,
  "site": 4,
  "tags": [ElementTagUpdateInput],
  "template": 4
}

ElementWhereInput

Description

Represents a Where input for: Element

Fields
Input FieldDescription
AND - [AndElementWhereInput]
OR - [OrElementWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
arLocked_eq - BooleanField is equal to given value
arLocked_ne - BooleanField is not equal to given value
awaitingApproval_eq - Boolean
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
imageDetails - ElementImageDetailWhereInputDetails of element image
image_all - [ID]Given value includes all in array
image_eq - IDField is equal to given value
image_exists - BooleanField is set and exists
image_in - [ID]Given value includes field
image_ne - IDField is not equal to given value
image_nin - [ID]Given value does not include field
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
log_every - ElementLogWhereInput
log_exists - Boolean
log_none - ElementLogWhereInput
log_some - ElementLogWhereInput
marker - MarkerWhereInput
marker_all - [ID]Given value includes all in array
marker_eq - IDField is equal to given value
marker_exists - BooleanField is set and exists
marker_in - [ID]Given value includes field
marker_ne - IDField is not equal to given value
marker_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
needsApproval_eq - Boolean
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
profile_all - [ID]Given value includes all in array
profile_eq - IDField is equal to given value
profile_exists - BooleanField is set and exists
profile_in - [ID]Given value includes field
profile_ne - IDField is not equal to given value
profile_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
responsibles - ResponsiblesWhereInput
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
tags_every - ElementTagWhereInput
tags_exists - Boolean
tags_none - ElementTagWhereInput
tags_some - ElementTagWhereInput
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndElementWhereInput],
  "OR": [OrElementWhereInput],
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "arLocked_eq": false,
  "arLocked_ne": false,
  "awaitingApproval_eq": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "icon_contains": "abc123",
  "icon_ends_with": "xyz789",
  "icon_eq": "abc123",
  "icon_exists": false,
  "icon_in": ["xyz789"],
  "icon_ne": "abc123",
  "icon_nin": ["abc123"],
  "icon_not_contains": "abc123",
  "icon_not_ends_with": "xyz789",
  "icon_not_starts_with": "xyz789",
  "icon_starts_with": "xyz789",
  "imageDetails": ElementImageDetailWhereInput,
  "image_all": [4],
  "image_eq": "4",
  "image_exists": false,
  "image_in": ["4"],
  "image_ne": "4",
  "image_nin": [4],
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "log_every": ElementLogWhereInput,
  "log_exists": true,
  "log_none": ElementLogWhereInput,
  "log_some": ElementLogWhereInput,
  "marker": MarkerWhereInput,
  "marker_all": ["4"],
  "marker_eq": 4,
  "marker_exists": true,
  "marker_in": ["4"],
  "marker_ne": 4,
  "marker_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "needsApproval_eq": false,
  "parent_all": ["4"],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": [4],
  "parentsTree_all": ["4"],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": [4],
  "profile_all": [4],
  "profile_eq": "4",
  "profile_exists": true,
  "profile_in": ["4"],
  "profile_ne": "4",
  "profile_nin": [4],
  "protected_eq": true,
  "protected_ne": false,
  "responsibles": ResponsiblesWhereInput,
  "site_all": ["4"],
  "site_eq": "4",
  "site_exists": false,
  "site_in": [4],
  "site_ne": "4",
  "site_nin": ["4"],
  "system_eq": false,
  "system_ne": false,
  "tags_every": ElementTagWhereInput,
  "tags_exists": true,
  "tags_none": ElementTagWhereInput,
  "tags_some": ElementTagWhereInput,
  "template_all": [4],
  "template_eq": "4",
  "template_exists": false,
  "template_in": ["4"],
  "template_ne": 4,
  "template_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

ElementWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

EstimatedDuration

Fields
Field NameDescription
amount - Int
timeUnit - IssueInstanceEstimatedDurationUnit
Example
{"amount": 123, "timeUnit": "hours"}

File

Description

Represents a File

Fields
Field NameDescription
_id - ID
accessToken - String
awsId - StringAWS Bucket File ID
comment - StringFile comment
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
details - FileDetail
download - DownloadFileInfo
extension - String!File extension
hasThumbnail - Boolean
mime - StringFile mime type
name - String!File name
path - String!Path to file
protected - Boolean
size - FloatThe file size
system - Boolean
type - FileType!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
uploadedFromLibrary - BooleanFile was added via Media Library
Example
{
  "_id": "4",
  "accessToken": "xyz789",
  "awsId": "xyz789",
  "comment": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "details": FileDetail,
  "download": DownloadFileInfo,
  "extension": "abc123",
  "hasThumbnail": false,
  "mime": "abc123",
  "name": "abc123",
  "path": "abc123",
  "protected": false,
  "size": 987.65,
  "system": false,
  "type": "All",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "uploadedFromLibrary": false
}

FileDetail

Description

Represents a FileDetail

Fields
Field NameDescription
triangles - IntNumber of triangles of 3D Model
Example
{"triangles": 987}

FileDetailUpdateInput

Description

Represents a FileDetailUpdateInput

Fields
Input FieldDescription
triangles - IntNumber of triangles of 3D Model
Example
{"triangles": 123}

FileDetailWhereInput

Description

Represents a Where input for: FileDetail

Fields
Input FieldDescription
triangles_eq - IntField is equal to given value
triangles_exists - BooleanField is set and exists
triangles_gt - IntField is greater than given value
triangles_gte - IntField is greater or equal than given value
triangles_in - [Int]Given value includes field
triangles_lt - IntField is lower than given value
triangles_lte - IntField is lower or equal than given value
triangles_ne - IntField is not equal to given value
triangles_nin - [Int]Given value does not includes field
Example
{
  "triangles_eq": 123,
  "triangles_exists": false,
  "triangles_gt": 987,
  "triangles_gte": 987,
  "triangles_in": [123],
  "triangles_lt": 123,
  "triangles_lte": 123,
  "triangles_ne": 987,
  "triangles_nin": [987]
}

FileOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

awsId_ASC

awsId_DESC

comment_ASC

comment_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

details_triangles_ASC

details_triangles_DESC

extension_ASC

extension_DESC

mime_ASC

mime_DESC

name_ASC

name_DESC

path_ASC

path_DESC

size_ASC

size_DESC

type_ASC

type_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

FileResponse

Fields
Field NameDescription
content_type - String
file_name - String
last_modified - Int
link - String
metadata - JSON
size - Int
valid_until - Int
Example
{
  "content_type": "abc123",
  "file_name": "abc123",
  "last_modified": 987,
  "link": "xyz789",
  "metadata": {},
  "size": 123,
  "valid_until": 987
}

FileType

Values
Enum ValueDescription

All

Audio

Doc

Image

Unknown

Video

Example
"All"

FileUpdateInput

Description

Represents a FileUpdateInput

Fields
Input FieldDescription
awsId - StringAWS Bucket File ID
comment - StringFile comment
details - FileDetailUpdateInputDetails about the file
name - StringFile name
size - FloatThe file size
uploadedFromLibrary - BooleanFile was added via Media Library
Example
{
  "awsId": "xyz789",
  "comment": "abc123",
  "details": FileDetailUpdateInput,
  "name": "abc123",
  "size": 123.45,
  "uploadedFromLibrary": false
}

FileWhereInput

Description

Represents a Where input for: File

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
awsId_contains - StringField contains given value, case-insensitive
awsId_ends_with - StringField ends with given value, case-insensitive
awsId_eq - StringField is equal to given value
awsId_exists - BooleanField is set and exists
awsId_in - [String]Given value includes field
awsId_ne - StringField is not equal to given value
awsId_nin - [String]Given value does not includes field
awsId_not_contains - StringField does not contains given value, case-insensitive
awsId_not_ends_with - StringField does not end with given value, case-insensitive
awsId_not_starts_with - StringField does not start with given value, case-insensitive
awsId_starts_with - StringField starts with given value, case-insensitive
comment_contains - StringField contains given value, case-insensitive
comment_ends_with - StringField ends with given value, case-insensitive
comment_eq - StringField is equal to given value
comment_exists - BooleanField is set and exists
comment_in - [String]Given value includes field
comment_ne - StringField is not equal to given value
comment_nin - [String]Given value does not includes field
comment_not_contains - StringField does not contains given value, case-insensitive
comment_not_ends_with - StringField does not end with given value, case-insensitive
comment_not_starts_with - StringField does not start with given value, case-insensitive
comment_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
details - FileDetailWhereInputDetails about the file
extension_contains - StringField contains given value, case-insensitive
extension_ends_with - StringField ends with given value, case-insensitive
extension_eq - StringField is equal to given value
extension_exists - BooleanField is set and exists
extension_in - [String]Given value includes field
extension_ne - StringField is not equal to given value
extension_nin - [String]Given value does not includes field
extension_not_contains - StringField does not contains given value, case-insensitive
extension_not_ends_with - StringField does not end with given value, case-insensitive
extension_not_starts_with - StringField does not start with given value, case-insensitive
extension_starts_with - StringField starts with given value, case-insensitive
mime_contains - StringField contains given value, case-insensitive
mime_ends_with - StringField ends with given value, case-insensitive
mime_eq - StringField is equal to given value
mime_exists - BooleanField is set and exists
mime_in - [String]Given value includes field
mime_ne - StringField is not equal to given value
mime_nin - [String]Given value does not includes field
mime_not_contains - StringField does not contains given value, case-insensitive
mime_not_ends_with - StringField does not end with given value, case-insensitive
mime_not_starts_with - StringField does not start with given value, case-insensitive
mime_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
path_contains - StringField contains given value, case-insensitive
path_ends_with - StringField ends with given value, case-insensitive
path_eq - StringField is equal to given value
path_exists - BooleanField is set and exists
path_in - [String]Given value includes field
path_ne - StringField is not equal to given value
path_nin - [String]Given value does not includes field
path_not_contains - StringField does not contains given value, case-insensitive
path_not_ends_with - StringField does not end with given value, case-insensitive
path_not_starts_with - StringField does not start with given value, case-insensitive
path_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
size_eq - FloatField is equal to given value
size_exists - BooleanField is set and exists
size_gt - FloatField is greater than given value
size_gte - FloatField is greater or equal than given value
size_in - [Float]Given value includes field
size_lt - FloatField is lower than given value
size_lte - FloatField is lower or equal than given value
size_ne - FloatField is not equal to given value
size_nin - [Float]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
type_eq - FileTypeField is equal to given value
type_exists - FileTypeField is set and exists
type_in - [FileType]Given value includes field
type_ne - FileTypeField is not equal to given value
type_nin - [FileType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
uploadedFromLibrary_eq - BooleanField is equal to given value
uploadedFromLibrary_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "awsId_contains": "xyz789",
  "awsId_ends_with": "xyz789",
  "awsId_eq": "abc123",
  "awsId_exists": false,
  "awsId_in": ["abc123"],
  "awsId_ne": "xyz789",
  "awsId_nin": ["xyz789"],
  "awsId_not_contains": "abc123",
  "awsId_not_ends_with": "xyz789",
  "awsId_not_starts_with": "abc123",
  "awsId_starts_with": "xyz789",
  "comment_contains": "abc123",
  "comment_ends_with": "abc123",
  "comment_eq": "abc123",
  "comment_exists": true,
  "comment_in": ["xyz789"],
  "comment_ne": "abc123",
  "comment_nin": ["abc123"],
  "comment_not_contains": "xyz789",
  "comment_not_ends_with": "xyz789",
  "comment_not_starts_with": "abc123",
  "comment_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "details": FileDetailWhereInput,
  "extension_contains": "abc123",
  "extension_ends_with": "abc123",
  "extension_eq": "abc123",
  "extension_exists": true,
  "extension_in": ["abc123"],
  "extension_ne": "abc123",
  "extension_nin": ["abc123"],
  "extension_not_contains": "abc123",
  "extension_not_ends_with": "xyz789",
  "extension_not_starts_with": "abc123",
  "extension_starts_with": "abc123",
  "mime_contains": "abc123",
  "mime_ends_with": "xyz789",
  "mime_eq": "abc123",
  "mime_exists": true,
  "mime_in": ["xyz789"],
  "mime_ne": "abc123",
  "mime_nin": ["xyz789"],
  "mime_not_contains": "abc123",
  "mime_not_ends_with": "xyz789",
  "mime_not_starts_with": "abc123",
  "mime_starts_with": "abc123",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "path_contains": "xyz789",
  "path_ends_with": "abc123",
  "path_eq": "abc123",
  "path_exists": true,
  "path_in": ["xyz789"],
  "path_ne": "abc123",
  "path_nin": ["xyz789"],
  "path_not_contains": "xyz789",
  "path_not_ends_with": "xyz789",
  "path_not_starts_with": "xyz789",
  "path_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": true,
  "size_eq": 123.45,
  "size_exists": false,
  "size_gt": 123.45,
  "size_gte": 987.65,
  "size_in": [987.65],
  "size_lt": 987.65,
  "size_lte": 123.45,
  "size_ne": 123.45,
  "size_nin": [123.45],
  "system_eq": false,
  "system_ne": false,
  "type_eq": "All",
  "type_exists": "All",
  "type_in": ["All"],
  "type_ne": "All",
  "type_nin": ["All"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4],
  "uploadedFromLibrary_eq": false,
  "uploadedFromLibrary_ne": false
}

FileWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Float

Description

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

Example
123.45

GeneralFieldElementEnum

Values
Enum ValueDescription

description

name

parentElement

parentSite

profile

rootElement

rootSite

Example
"description"

GeneralFieldEnum

Values
Enum ValueDescription

actions

approvedAt

approvedBy

assignedAccounts

assignedLabelValues

description

element

endDate

executedBy

executionTime

expectedTime

frequency

glarID

issueId

labels

lastAction

parentElement

parentSite

report

rootElement

rootSite

score

site

startDate

stateMachineInstance

triggeredBy

wrongAnswer

Example
"actions"

GenerateIssueTemplate

Fields
Field NameDescription
imageIds - [ID]
templateDraftId - ID
Example
{"imageIds": [4], "templateDraftId": 4}

GenericApproval

Fields
Field NameDescription
_id - ID
awaitingApproval - Boolean
coordinates - [Float]
description - String
image - File
inputs - [Input]
labelValues - [LabelValue]
name - String
needsApproval - Boolean
pendingAt - Date
pendingInputs - [Input]
responsibles - Responsibles
tags - [ElementTag]
Example
{
  "_id": "4",
  "awaitingApproval": false,
  "coordinates": [987.65],
  "description": "xyz789",
  "image": File,
  "inputs": [Input],
  "labelValues": [LabelValue],
  "name": "abc123",
  "needsApproval": true,
  "pendingAt": "2007-12-03",
  "pendingInputs": [Input],
  "responsibles": Responsibles,
  "tags": [ElementTag]
}

GetRecord

Fields
Field NameDescription
file_name - String
link - String
valid_until - String
Example
{
  "file_name": "abc123",
  "link": "xyz789",
  "valid_until": "abc123"
}

GroupMapUpdateInput

Fields
Input FieldDescription
action - TaskAction
group - IssueTemplateDraftTaskTemplateGroupUpdateInput
Example
{
  "action": "ADD",
  "group": IssueTemplateDraftTaskTemplateGroupUpdateInput
}

HandleRecording

Fields
Field NameDescription
expiredTimeInSeconds - Int
resourceId - String
sid - String
Example
{
  "expiredTimeInSeconds": 123,
  "resourceId": "abc123",
  "sid": "xyz789"
}

HeatmapConfiguration

Description

Represents a HeatmapConfiguration

Fields
Field NameDescription
_id - ID
colorsRange - [HeatmapConfigurationColorsRange]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueTemplate - IssueTemplateIssue template
issueTemplateId - IDIssue template
protected - Boolean
system - Boolean
taskTime - IntTask time
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "colorsRange": [HeatmapConfigurationColorsRange],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "issueTemplate": IssueTemplate,
  "issueTemplateId": "4",
  "protected": false,
  "system": true,
  "taskTime": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

HeatmapConfigurationColorsRange

Description

Represents a HeatmapConfigurationColorsRange

Fields
Field NameDescription
_id - ID
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "_id": 4,
  "color": "xyz789",
  "max": 987.65,
  "min": 987.65
}

HeatmapConfigurationColorsRangeCreateInput

Description

Represents a HeatmapConfigurationColorsRangeCreateInput

Fields
Input FieldDescription
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "color": "xyz789",
  "max": 123.45,
  "min": 123.45
}

HeatmapConfigurationColorsRangeUpdateInput

Description

Represents a HeatmapConfigurationColorsRangeUpdateInput

Fields
Input FieldDescription
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "color": "xyz789",
  "max": 987.65,
  "min": 123.45
}

HeatmapConfigurationColorsRangeWhereInput

Description

Represents a Where input for: HeatmapConfigurationColorsRange

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["xyz789"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 123.45,
  "max_in": [987.65],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 987.65,
  "max_nin": [123.45],
  "min_eq": 123.45,
  "min_exists": true,
  "min_gt": 987.65,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 123.45,
  "min_nin": [987.65]
}

HeatmapConfigurationCreateInput

Description

Represents a HeatmapConfigurationCreateInput

Fields
Input FieldDescription
colorsRange - [HeatmapConfigurationColorsRangeCreateInput]
issueTemplate - IDIssue template
taskTime - IntTask time
Example
{
  "colorsRange": [
    HeatmapConfigurationColorsRangeCreateInput
  ],
  "issueTemplate": 4,
  "taskTime": 123
}

HeatmapConfigurationDraft

Description

Represents a HeatmapConfigurationDraft

Fields
Field NameDescription
_id - ID
colorsRange - [HeatmapConfigurationDraftColorsRange]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueTemplate - IssueTemplateIssue template
issueTemplateDraft - IssueTemplateDraft!Issue template draft
issueTemplateDraftId - ID!Issue template draft
issueTemplateId - IDIssue template
protected - Boolean
system - Boolean
taskTime - IntTask time
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "colorsRange": [HeatmapConfigurationDraftColorsRange],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "issueTemplate": IssueTemplate,
  "issueTemplateDraft": IssueTemplateDraft,
  "issueTemplateDraftId": 4,
  "issueTemplateId": "4",
  "protected": false,
  "system": true,
  "taskTime": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

HeatmapConfigurationDraftColorsRange

Description

Represents a HeatmapConfigurationDraftColorsRange

Fields
Field NameDescription
_id - ID
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "_id": "4",
  "color": "xyz789",
  "max": 987.65,
  "min": 123.45
}

HeatmapConfigurationDraftColorsRangeCreateInput

Description

Represents a HeatmapConfigurationDraftColorsRangeCreateInput

Fields
Input FieldDescription
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "color": "abc123",
  "max": 987.65,
  "min": 987.65
}

HeatmapConfigurationDraftColorsRangeUpdateInput

Description

Represents a HeatmapConfigurationDraftColorsRangeUpdateInput

Fields
Input FieldDescription
color - StringColor
max - FloatMax number
min - FloatMin number
Example
{
  "color": "xyz789",
  "max": 987.65,
  "min": 123.45
}

HeatmapConfigurationDraftColorsRangeWhereInput

Description

Represents a Where input for: HeatmapConfigurationDraftColorsRange

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "xyz789",
  "color_exists": true,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "xyz789",
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 987.65,
  "max_lte": 987.65,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "min_eq": 987.65,
  "min_exists": false,
  "min_gt": 987.65,
  "min_gte": 123.45,
  "min_in": [123.45],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 123.45,
  "min_nin": [123.45]
}

HeatmapConfigurationDraftCreateInput

Description

Represents a HeatmapConfigurationDraftCreateInput

Fields
Input FieldDescription
colorsRange - [HeatmapConfigurationDraftColorsRangeCreateInput]
issueTemplate - IDIssue template
issueTemplateDraft - ID!Issue template draft
taskTime - IntTask time
Example
{
  "colorsRange": [
    HeatmapConfigurationDraftColorsRangeCreateInput
  ],
  "issueTemplate": 4,
  "issueTemplateDraft": 4,
  "taskTime": 123
}

HeatmapConfigurationDraftOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

taskTime_ASC

taskTime_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

HeatmapConfigurationDraftUpdateInput

Description

Represents a HeatmapConfigurationDraftUpdateInput

Fields
Input FieldDescription
colorsRange - [HeatmapConfigurationDraftColorsRangeUpdateInput]
issueTemplate - IDIssue template
issueTemplateDraft - IDIssue template draft
taskTime - IntTask time
Example
{
  "colorsRange": [
    HeatmapConfigurationDraftColorsRangeUpdateInput
  ],
  "issueTemplate": 4,
  "issueTemplateDraft": "4",
  "taskTime": 987
}

HeatmapConfigurationDraftWhereInput

Description

Represents a Where input for: HeatmapConfigurationDraft

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
colorsRange_every - HeatmapConfigurationDraftColorsRangeWhereInput
colorsRange_exists - Boolean
colorsRange_none - HeatmapConfigurationDraftColorsRangeWhereInput
colorsRange_some - HeatmapConfigurationDraftColorsRangeWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
issueTemplateDraft_all - [ID]Given value includes all in array
issueTemplateDraft_eq - IDField is equal to given value
issueTemplateDraft_exists - BooleanField is set and exists
issueTemplateDraft_in - [ID]Given value includes field
issueTemplateDraft_ne - IDField is not equal to given value
issueTemplateDraft_nin - [ID]Given value does not include field
issueTemplate_all - [ID]Given value includes all in array
issueTemplate_eq - IDField is equal to given value
issueTemplate_exists - BooleanField is set and exists
issueTemplate_in - [ID]Given value includes field
issueTemplate_ne - IDField is not equal to given value
issueTemplate_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskTime_eq - IntField is equal to given value
taskTime_exists - BooleanField is set and exists
taskTime_gt - IntField is greater than given value
taskTime_gte - IntField is greater or equal than given value
taskTime_in - [Int]Given value includes field
taskTime_lt - IntField is lower than given value
taskTime_lte - IntField is lower or equal than given value
taskTime_ne - IntField is not equal to given value
taskTime_nin - [Int]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "colorsRange_every": HeatmapConfigurationDraftColorsRangeWhereInput,
  "colorsRange_exists": true,
  "colorsRange_none": HeatmapConfigurationDraftColorsRangeWhereInput,
  "colorsRange_some": HeatmapConfigurationDraftColorsRangeWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "issueTemplateDraft_all": ["4"],
  "issueTemplateDraft_eq": "4",
  "issueTemplateDraft_exists": true,
  "issueTemplateDraft_in": ["4"],
  "issueTemplateDraft_ne": "4",
  "issueTemplateDraft_nin": [4],
  "issueTemplate_all": ["4"],
  "issueTemplate_eq": 4,
  "issueTemplate_exists": false,
  "issueTemplate_in": ["4"],
  "issueTemplate_ne": "4",
  "issueTemplate_nin": [4],
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": true,
  "taskTime_eq": 987,
  "taskTime_exists": false,
  "taskTime_gt": 987,
  "taskTime_gte": 123,
  "taskTime_in": [123],
  "taskTime_lt": 123,
  "taskTime_lte": 123,
  "taskTime_ne": 987,
  "taskTime_nin": [987],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

HeatmapConfigurationDraftWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

HeatmapConfigurationOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

taskTime_ASC

taskTime_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

HeatmapConfigurationUpdateInput

Description

Represents a HeatmapConfigurationUpdateInput

Fields
Input FieldDescription
colorsRange - [HeatmapConfigurationColorsRangeUpdateInput]
issueTemplate - IDIssue template
taskTime - IntTask time
Example
{
  "colorsRange": [
    HeatmapConfigurationColorsRangeUpdateInput
  ],
  "issueTemplate": 4,
  "taskTime": 987
}

HeatmapConfigurationWhereInput

Description

Represents a Where input for: HeatmapConfiguration

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
colorsRange_every - HeatmapConfigurationColorsRangeWhereInput
colorsRange_exists - Boolean
colorsRange_none - HeatmapConfigurationColorsRangeWhereInput
colorsRange_some - HeatmapConfigurationColorsRangeWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
issueTemplate_all - [ID]Given value includes all in array
issueTemplate_eq - IDField is equal to given value
issueTemplate_exists - BooleanField is set and exists
issueTemplate_in - [ID]Given value includes field
issueTemplate_ne - IDField is not equal to given value
issueTemplate_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskTime_eq - IntField is equal to given value
taskTime_exists - BooleanField is set and exists
taskTime_gt - IntField is greater than given value
taskTime_gte - IntField is greater or equal than given value
taskTime_in - [Int]Given value includes field
taskTime_lt - IntField is lower than given value
taskTime_lte - IntField is lower or equal than given value
taskTime_ne - IntField is not equal to given value
taskTime_nin - [Int]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "colorsRange_every": HeatmapConfigurationColorsRangeWhereInput,
  "colorsRange_exists": true,
  "colorsRange_none": HeatmapConfigurationColorsRangeWhereInput,
  "colorsRange_some": HeatmapConfigurationColorsRangeWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "issueTemplate_all": ["4"],
  "issueTemplate_eq": 4,
  "issueTemplate_exists": false,
  "issueTemplate_in": ["4"],
  "issueTemplate_ne": 4,
  "issueTemplate_nin": ["4"],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": true,
  "taskTime_eq": 987,
  "taskTime_exists": true,
  "taskTime_gt": 123,
  "taskTime_gte": 123,
  "taskTime_in": [123],
  "taskTime_lt": 987,
  "taskTime_lte": 987,
  "taskTime_ne": 123,
  "taskTime_nin": [123],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

HeatmapConfigurationWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

ID

Description

The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.

Example
4

ImportantMessagesInput

Fields
Input FieldDescription
seenBy - [String]
unseenImportantMessages - Boolean
Example
{
  "seenBy": ["abc123"],
  "unseenImportantMessages": false
}

Input

Description

Represents a Input

Fields
Field NameDescription
_id - ID
actions - [Action]
container - String
date - InputDate
datetime - InputDatetime
description - StringThe description format is Markdown. To add files replace the url with(file_id)
element - InputElement
file - InputFile
getURLsOfDescriptionFiles - String
instruction - InputInstruction
isMutable - Boolean
labelValue - InputLabelValue
log - [InputLog]
name - String!
note - InputNote
number - InputNumber
order - Int
required - Boolean
signature - InputSignature
site - InputSite
string - InputString
table - InputTable
tag - String
tags - InputTag
time - InputTime
tool - InputTool
tooltip - String
type - InputType!
value - InputValue
Example
{
  "_id": 4,
  "actions": [Action],
  "container": "xyz789",
  "date": InputDate,
  "datetime": InputDatetime,
  "description": "xyz789",
  "element": InputElement,
  "file": InputFile,
  "getURLsOfDescriptionFiles": "xyz789",
  "instruction": InputInstruction,
  "isMutable": true,
  "labelValue": InputLabelValue,
  "log": [InputLog],
  "name": "xyz789",
  "note": InputNote,
  "number": InputNumber,
  "order": 987,
  "required": true,
  "signature": InputSignature,
  "site": InputSite,
  "string": InputString,
  "table": InputTable,
  "tag": "abc123",
  "tags": InputTag,
  "time": InputTime,
  "tool": InputTool,
  "tooltip": "xyz789",
  "type": "date",
  "value": InputDate
}

InputApproval

Fields
Field NameDescription
_id - ID
context - InputApprovalSource
name - String
originalInput - Input
pendingAt - Date
pendingBy - Account
pendingInput - Input
responsibles - Responsibles
updatedAt - Date
Example
{
  "_id": "4",
  "context": "Element",
  "name": "xyz789",
  "originalInput": Input,
  "pendingAt": "2007-12-03",
  "pendingBy": Account,
  "pendingInput": Input,
  "responsibles": Responsibles,
  "updatedAt": "2007-12-03"
}

InputApprovalOrderBy

Values
Enum ValueDescription

name_ASC

name_DESC

pendingInput_name_ASC

pendingInput_name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"name_ASC"

InputApprovalSource

Values
Enum ValueDescription

Element

Site

Example
"Element"

InputCreateInput

Description

Represents a InputCreateInput

Fields
Input FieldDescription
container - String
date - InputDateCreateInput
datetime - InputDatetimeCreateInput
description - StringThe description format is Markdown. To add files replace the url with(file_id)
element - InputElementCreateInput
file - InputFileCreateInput
instruction - InputInstructionCreateInput
isMutable - Boolean
labelValue - InputLabelValueCreateInput
name - String!
note - InputNoteCreateInput
number - InputNumberCreateInput
order - Int
required - Boolean
signature - InputSignatureCreateInput
site - InputSiteCreateInput
string - InputStringCreateInput
table - InputTableCreateInput
tag - String
tags - InputTagCreateInput
time - InputTimeCreateInput
tool - InputToolCreateInput
tooltip - String
type - InputType!
Example
{
  "container": "abc123",
  "date": InputDateCreateInput,
  "datetime": InputDatetimeCreateInput,
  "description": "xyz789",
  "element": InputElementCreateInput,
  "file": InputFileCreateInput,
  "instruction": InputInstructionCreateInput,
  "isMutable": true,
  "labelValue": InputLabelValueCreateInput,
  "name": "abc123",
  "note": InputNoteCreateInput,
  "number": InputNumberCreateInput,
  "order": 987,
  "required": true,
  "signature": InputSignatureCreateInput,
  "site": InputSiteCreateInput,
  "string": InputStringCreateInput,
  "table": InputTableCreateInput,
  "tag": "abc123",
  "tags": InputTagCreateInput,
  "time": InputTimeCreateInput,
  "tool": InputToolCreateInput,
  "tooltip": "abc123",
  "type": "date"
}

InputDate

Description

Represents a InputDate

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [Date]
triggerAlert - InputDateTriggerAlert
validation - InputDateValidationvalidation turn to validations
validations - [InputDateValidation]
values - [Date]
Example
{
  "maxValues": 987,
  "multiple": true,
  "options": ["2007-12-03"],
  "triggerAlert": InputDateTriggerAlert,
  "validation": InputDateValidation,
  "validations": [InputDateValidation],
  "values": ["2007-12-03"]
}

InputDateCreateInput

Description

Represents a InputDateCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [Date]
triggerAlert - InputDateTriggerAlertCreateInput
validations - [InputDateValidationCreateInput]
values - [Date]
Example
{
  "maxValues": 123,
  "multiple": false,
  "options": ["2007-12-03"],
  "triggerAlert": InputDateTriggerAlertCreateInput,
  "validations": [InputDateValidationCreateInput],
  "values": ["2007-12-03"]
}

InputDateTriggerAlert

Description

Represents a InputDateTriggerAlert

Fields
Field NameDescription
amount - Int!Amount in minutes
condition - InputDateTriggerAlertCondition
showIn - InputDateTriggerAlertShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

InputDateTriggerAlertCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

InputDateTriggerAlertCreateInput

Description

Represents a InputDateTriggerAlertCreateInput

Fields
Input FieldDescription
amount - Int!Amount in minutes
condition - InputDateTriggerAlertCondition
showIn - InputDateTriggerAlertShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

InputDateTriggerAlertShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

InputDateTriggerAlertUpdateInput

Description

Represents a InputDateTriggerAlertUpdateInput

Fields
Input FieldDescription
amount - IntAmount in minutes
condition - InputDateTriggerAlertCondition
showIn - InputDateTriggerAlertShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

InputDateTriggerAlertWhereInput

Description

Represents a Where input for: InputDateTriggerAlert

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - InputDateTriggerAlertConditionField is equal to given value
condition_exists - InputDateTriggerAlertConditionField is set and exists
condition_in - [InputDateTriggerAlertCondition]Given value includes field
condition_ne - InputDateTriggerAlertConditionField is not equal to given value
condition_nin - [InputDateTriggerAlertCondition]Given value does not includes field
showIn_eq - InputDateTriggerAlertShowInField is equal to given value
showIn_exists - InputDateTriggerAlertShowInField is set and exists
showIn_in - [InputDateTriggerAlertShowIn]Given value includes field
showIn_ne - InputDateTriggerAlertShowInField is not equal to given value
showIn_nin - [InputDateTriggerAlertShowIn]Given value does not includes field
Example
{
  "amount_eq": 123,
  "amount_exists": false,
  "amount_gt": 987,
  "amount_gte": 987,
  "amount_in": [123],
  "amount_lt": 123,
  "amount_lte": 123,
  "amount_ne": 987,
  "amount_nin": [987],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

InputDateUpdateInput

Description

Represents a InputDateUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [Date]
triggerAlert - InputDateTriggerAlertUpdateInput
validations - [InputDateValidationUpdateInput]
values - [Date]
Example
{
  "maxValues": 123,
  "multiple": false,
  "options": ["2007-12-03"],
  "triggerAlert": InputDateTriggerAlertUpdateInput,
  "validations": [InputDateValidationUpdateInput],
  "values": ["2007-12-03"]
}

InputDateValidation

Description

Represents a InputDateValidation

Fields
Field NameDescription
inclusive - Boolean
max - Date
min - Date
Example
{
  "inclusive": false,
  "max": "2007-12-03",
  "min": "2007-12-03"
}

InputDateValidationCreateInput

Description

Represents a InputDateValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Date
min - Date
Example
{
  "inclusive": true,
  "max": "2007-12-03",
  "min": "2007-12-03"
}

InputDateValidationUpdateInput

Description

Represents a InputDateValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Date
min - Date
Example
{
  "inclusive": false,
  "max": "2007-12-03",
  "min": "2007-12-03"
}

InputDateValidationWhereInput

Description

Represents a Where input for: InputDateValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_contains - StringField contains given value, case-insensitive
max_ends_with - StringField ends with given value, case-insensitive
max_eq - StringField is equal to given value
max_exists - BooleanField is set and exists
max_in - [String]Given value includes field
max_ne - StringField is not equal to given value
max_nin - [String]Given value does not includes field
max_not_contains - StringField does not contains given value, case-insensitive
max_not_ends_with - StringField does not end with given value, case-insensitive
max_not_starts_with - StringField does not start with given value, case-insensitive
max_starts_with - StringField starts with given value, case-insensitive
min_contains - StringField contains given value, case-insensitive
min_ends_with - StringField ends with given value, case-insensitive
min_eq - StringField is equal to given value
min_exists - BooleanField is set and exists
min_in - [String]Given value includes field
min_ne - StringField is not equal to given value
min_nin - [String]Given value does not includes field
min_not_contains - StringField does not contains given value, case-insensitive
min_not_ends_with - StringField does not end with given value, case-insensitive
min_not_starts_with - StringField does not start with given value, case-insensitive
min_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": false,
  "inclusive_ne": true,
  "max_contains": "xyz789",
  "max_ends_with": "abc123",
  "max_eq": "xyz789",
  "max_exists": true,
  "max_in": ["abc123"],
  "max_ne": "abc123",
  "max_nin": ["abc123"],
  "max_not_contains": "xyz789",
  "max_not_ends_with": "xyz789",
  "max_not_starts_with": "abc123",
  "max_starts_with": "abc123",
  "min_contains": "abc123",
  "min_ends_with": "xyz789",
  "min_eq": "abc123",
  "min_exists": true,
  "min_in": ["xyz789"],
  "min_ne": "abc123",
  "min_nin": ["xyz789"],
  "min_not_contains": "abc123",
  "min_not_ends_with": "abc123",
  "min_not_starts_with": "xyz789",
  "min_starts_with": "abc123"
}

InputDateWhereInput

Description

Represents a Where input for: InputDate

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
triggerAlert - InputDateTriggerAlertWhereInput
validations_every - InputDateValidationWhereInput
validations_exists - Boolean
validations_none - InputDateValidationWhereInput
validations_some - InputDateValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": false,
  "options_all": ["abc123"],
  "options_eq": ["abc123"],
  "options_exists": true,
  "options_in": ["abc123"],
  "options_nin": ["xyz789"],
  "triggerAlert": InputDateTriggerAlertWhereInput,
  "validations_every": InputDateValidationWhereInput,
  "validations_exists": true,
  "validations_none": InputDateValidationWhereInput,
  "validations_some": InputDateValidationWhereInput,
  "values_all": ["abc123"],
  "values_eq": ["abc123"],
  "values_exists": true,
  "values_in": ["abc123"],
  "values_nin": ["xyz789"]
}

InputDatetime

Description

Represents a InputDatetime

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [DateTime]
triggerAlert - InputDatetimeTriggerAlert
validation - InputDatetimeValidationvalidation turn to validations
validations - [InputDatetimeValidation]
values - [DateTime]
Example
{
  "maxValues": 987,
  "multiple": true,
  "options": ["2007-12-03T10:15:30Z"],
  "triggerAlert": InputDatetimeTriggerAlert,
  "validation": InputDatetimeValidation,
  "validations": [InputDatetimeValidation],
  "values": ["2007-12-03T10:15:30Z"]
}

InputDatetimeCreateInput

Description

Represents a InputDatetimeCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [DateTime]
triggerAlert - InputDatetimeTriggerAlertCreateInput
validations - [InputDatetimeValidationCreateInput]
values - [DateTime]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": ["2007-12-03T10:15:30Z"],
  "triggerAlert": InputDatetimeTriggerAlertCreateInput,
  "validations": [InputDatetimeValidationCreateInput],
  "values": ["2007-12-03T10:15:30Z"]
}

InputDatetimeTriggerAlert

Description

Represents a InputDatetimeTriggerAlert

Fields
Field NameDescription
amount - Int!Amount in minutes
condition - InputDatetimeTriggerAlertCondition
showIn - InputDatetimeTriggerAlertShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

InputDatetimeTriggerAlertCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

InputDatetimeTriggerAlertCreateInput

Description

Represents a InputDatetimeTriggerAlertCreateInput

Fields
Input FieldDescription
amount - Int!Amount in minutes
condition - InputDatetimeTriggerAlertCondition
showIn - InputDatetimeTriggerAlertShowIn
Example
{"amount": 123, "condition": "AFTER", "showIn": "DAYS"}

InputDatetimeTriggerAlertShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

InputDatetimeTriggerAlertUpdateInput

Description

Represents a InputDatetimeTriggerAlertUpdateInput

Fields
Input FieldDescription
amount - IntAmount in minutes
condition - InputDatetimeTriggerAlertCondition
showIn - InputDatetimeTriggerAlertShowIn
Example
{"amount": 123, "condition": "AFTER", "showIn": "DAYS"}

InputDatetimeTriggerAlertWhereInput

Description

Represents a Where input for: InputDatetimeTriggerAlert

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - InputDatetimeTriggerAlertConditionField is equal to given value
condition_exists - InputDatetimeTriggerAlertConditionField is set and exists
condition_in - [InputDatetimeTriggerAlertCondition]Given value includes field
condition_ne - InputDatetimeTriggerAlertConditionField is not equal to given value
condition_nin - [InputDatetimeTriggerAlertCondition]Given value does not includes field
showIn_eq - InputDatetimeTriggerAlertShowInField is equal to given value
showIn_exists - InputDatetimeTriggerAlertShowInField is set and exists
showIn_in - [InputDatetimeTriggerAlertShowIn]Given value includes field
showIn_ne - InputDatetimeTriggerAlertShowInField is not equal to given value
showIn_nin - [InputDatetimeTriggerAlertShowIn]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": true,
  "amount_gt": 123,
  "amount_gte": 123,
  "amount_in": [123],
  "amount_lt": 123,
  "amount_lte": 123,
  "amount_ne": 123,
  "amount_nin": [987],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

InputDatetimeUpdateInput

Description

Represents a InputDatetimeUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [DateTime]
triggerAlert - InputDatetimeTriggerAlertUpdateInput
validations - [InputDatetimeValidationUpdateInput]
values - [DateTime]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": ["2007-12-03T10:15:30Z"],
  "triggerAlert": InputDatetimeTriggerAlertUpdateInput,
  "validations": [InputDatetimeValidationUpdateInput],
  "values": ["2007-12-03T10:15:30Z"]
}

InputDatetimeValidation

Description

Represents a InputDatetimeValidation

Fields
Field NameDescription
inclusive - Boolean
max - DateTime
min - DateTime
Example
{
  "inclusive": false,
  "max": "2007-12-03T10:15:30Z",
  "min": "2007-12-03T10:15:30Z"
}

InputDatetimeValidationCreateInput

Description

Represents a InputDatetimeValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
max - DateTime
min - DateTime
Example
{
  "inclusive": true,
  "max": "2007-12-03T10:15:30Z",
  "min": "2007-12-03T10:15:30Z"
}

InputDatetimeValidationUpdateInput

Description

Represents a InputDatetimeValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
max - DateTime
min - DateTime
Example
{
  "inclusive": false,
  "max": "2007-12-03T10:15:30Z",
  "min": "2007-12-03T10:15:30Z"
}

InputDatetimeValidationWhereInput

Description

Represents a Where input for: InputDatetimeValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_eq - DateTimeField is equal to given value
max_exists - BooleanField is set and exists
max_gt - DateTimeField is greater than given value
max_gte - DateTimeField is greater or equal than given value
max_in - [DateTime]Given value includes field
max_lt - DateTimeField is lower than given value
max_lte - DateTimeField is lower or equal than given value
max_ne - DateTimeField is not equal to given value
max_nin - [DateTime]Given value does not includes field
min_eq - DateTimeField is equal to given value
min_exists - BooleanField is set and exists
min_gt - DateTimeField is greater than given value
min_gte - DateTimeField is greater or equal than given value
min_in - [DateTime]Given value includes field
min_lt - DateTimeField is lower than given value
min_lte - DateTimeField is lower or equal than given value
min_ne - DateTimeField is not equal to given value
min_nin - [DateTime]Given value does not includes field
Example
{
  "inclusive_eq": false,
  "inclusive_ne": false,
  "max_eq": "2007-12-03T10:15:30Z",
  "max_exists": true,
  "max_gt": "2007-12-03T10:15:30Z",
  "max_gte": "2007-12-03T10:15:30Z",
  "max_in": ["2007-12-03T10:15:30Z"],
  "max_lt": "2007-12-03T10:15:30Z",
  "max_lte": "2007-12-03T10:15:30Z",
  "max_ne": "2007-12-03T10:15:30Z",
  "max_nin": ["2007-12-03T10:15:30Z"],
  "min_eq": "2007-12-03T10:15:30Z",
  "min_exists": true,
  "min_gt": "2007-12-03T10:15:30Z",
  "min_gte": "2007-12-03T10:15:30Z",
  "min_in": ["2007-12-03T10:15:30Z"],
  "min_lt": "2007-12-03T10:15:30Z",
  "min_lte": "2007-12-03T10:15:30Z",
  "min_ne": "2007-12-03T10:15:30Z",
  "min_nin": ["2007-12-03T10:15:30Z"]
}

InputDatetimeWhereInput

Description

Represents a Where input for: InputDatetime

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [DateTime]Field includes all given values.
options_eq - [DateTime]Given value is equal to field
options_exists - Boolean
options_in - [DateTime]Field includes one of given value.
options_nin - [DateTime]Field does not include any of the given values.
triggerAlert - InputDatetimeTriggerAlertWhereInput
validations_every - InputDatetimeValidationWhereInput
validations_exists - Boolean
validations_none - InputDatetimeValidationWhereInput
validations_some - InputDatetimeValidationWhereInput
values_all - [DateTime]Field includes all given values.
values_eq - [DateTime]Given value is equal to field
values_exists - Boolean
values_in - [DateTime]Field includes one of given value.
values_nin - [DateTime]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "multiple_eq": true,
  "multiple_ne": false,
  "options_all": ["2007-12-03T10:15:30Z"],
  "options_eq": ["2007-12-03T10:15:30Z"],
  "options_exists": false,
  "options_in": ["2007-12-03T10:15:30Z"],
  "options_nin": ["2007-12-03T10:15:30Z"],
  "triggerAlert": InputDatetimeTriggerAlertWhereInput,
  "validations_every": InputDatetimeValidationWhereInput,
  "validations_exists": false,
  "validations_none": InputDatetimeValidationWhereInput,
  "validations_some": InputDatetimeValidationWhereInput,
  "values_all": ["2007-12-03T10:15:30Z"],
  "values_eq": ["2007-12-03T10:15:30Z"],
  "values_exists": false,
  "values_in": ["2007-12-03T10:15:30Z"],
  "values_nin": ["2007-12-03T10:15:30Z"]
}

InputElement

Description

Represents a InputElement

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [Element]
optionsIds - [ID]
values - [Element]
valuesIds - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": [Element],
  "optionsIds": [4],
  "values": [Element],
  "valuesIds": [4]
}

InputElementCreateInput

Description

Represents a InputElementCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [ID]
values - [ID]
Example
{"maxValues": 987, "multiple": false, "options": [4], "values": [4]}

InputElementUpdateInput

Description

Represents a InputElementUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
onResponse - [InputUpdateInput]
options - [ID]
validations - [InputUpdateInput]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": true,
  "onResponse": [InputUpdateInput],
  "options": [4],
  "validations": [InputUpdateInput],
  "values": [4]
}

InputElementWhereInput

Description

Represents a Where input for: InputElement

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": false,
  "maxValues_gt": 123,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 987,
  "maxValues_nin": [123],
  "multiple_eq": true,
  "multiple_ne": false,
  "options_all": [4],
  "options_eq": ["4"],
  "options_exists": false,
  "options_in": [4],
  "options_nin": ["4"],
  "values_all": [4],
  "values_eq": ["4"],
  "values_exists": false,
  "values_in": [4],
  "values_nin": ["4"]
}

InputFile

Description

Represents a InputFile

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [File]
optionsIds - [ID]
values - [File]
valuesIds - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": [File],
  "optionsIds": ["4"],
  "values": [File],
  "valuesIds": [4]
}

InputFileCreateInput

Description

Represents a InputFileCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [ID]
values - [ID]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": ["4"],
  "values": [4]
}

InputFileUpdateInput

Description

Represents a InputFileUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
onResponse - [InputUpdateInput]
options - [ID]
validations - [InputUpdateInput]
values - [ID]
Example
{
  "maxValues": 123,
  "multiple": false,
  "onResponse": [InputUpdateInput],
  "options": [4],
  "validations": [InputUpdateInput],
  "values": [4]
}

InputFileWhereInput

Description

Represents a Where input for: InputFile

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 987,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": true,
  "options_all": ["4"],
  "options_eq": [4],
  "options_exists": false,
  "options_in": ["4"],
  "options_nin": ["4"],
  "values_all": [4],
  "values_eq": ["4"],
  "values_exists": false,
  "values_in": [4],
  "values_nin": ["4"]
}

InputInstruction

Description

Represents a InputInstruction

Fields
Field NameDescription
values - [File!]!
valuesIds - [ID!]!
Example
{
  "values": [File],
  "valuesIds": ["4"]
}

InputInstructionCreateInput

Description

Represents a InputInstructionCreateInput

Fields
Input FieldDescription
values - [ID!]!
Example
{"values": ["4"]}

InputInstructionUpdateInput

Description

Represents a InputInstructionUpdateInput

Fields
Input FieldDescription
onResponse - [InputUpdateInput]
validations - [InputUpdateInput]
values - [ID]
Example
{
  "onResponse": [InputUpdateInput],
  "validations": [InputUpdateInput],
  "values": [4]
}

InputInstructionWhereInput

Description

Represents a Where input for: InputInstruction

Fields
Input FieldDescription
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "values_all": [4],
  "values_eq": [4],
  "values_exists": true,
  "values_in": [4],
  "values_nin": ["4"]
}

InputLabelValue

Description

Represents a InputLabelValue

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [LabelValue]
optionsIds - [ID]
validation - InputLabelValueValidationvalidation turn to validations
validations - [InputLabelValueValidation]
values - [LabelValue]
valuesIds - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": [LabelValue],
  "optionsIds": [4],
  "validation": InputLabelValueValidation,
  "validations": [InputLabelValueValidation],
  "values": [LabelValue],
  "valuesIds": [4]
}

InputLabelValueCreateInput

Description

Represents a InputLabelValueCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [ID]
validations - [InputLabelValueValidationCreateInput]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": [4],
  "validations": [InputLabelValueValidationCreateInput],
  "values": ["4"]
}

InputLabelValueUpdateInput

Description

Represents a InputLabelValueUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [ID]
validations - [InputLabelValueValidationUpdateInput]
values - [ID]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": [4],
  "validations": [InputLabelValueValidationUpdateInput],
  "values": ["4"]
}

InputLabelValueValidation

Description

Represents a InputLabelValueValidation

Fields
Field NameDescription
label - ID
Example
{"label": 4}

InputLabelValueValidationCreateInput

Description

Represents a InputLabelValueValidationCreateInput

Fields
Input FieldDescription
label - ID
Example
{"label": "4"}

InputLabelValueValidationUpdateInput

Description

Represents a InputLabelValueValidationUpdateInput

Fields
Input FieldDescription
label - ID
Example
{"label": 4}

InputLabelValueValidationWhereInput

Description

Represents a Where input for: InputLabelValueValidation

Fields
Input FieldDescription
label_all - [ID]Given value includes all in array
label_eq - IDField is equal to given value
label_exists - BooleanField is set and exists
label_in - [ID]Given value includes field
label_ne - IDField is not equal to given value
label_nin - [ID]Given value does not include field
Example
{
  "label_all": ["4"],
  "label_eq": "4",
  "label_exists": true,
  "label_in": ["4"],
  "label_ne": "4",
  "label_nin": [4]
}

InputLabelValueWhereInput

Description

Represents a Where input for: InputLabelValue

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
validations_every - InputLabelValueValidationWhereInput
validations_exists - Boolean
validations_none - InputLabelValueValidationWhereInput
validations_some - InputLabelValueValidationWhereInput
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 123,
  "maxValues_ne": 987,
  "maxValues_nin": [123],
  "multiple_eq": false,
  "multiple_ne": false,
  "options_all": ["4"],
  "options_eq": ["4"],
  "options_exists": false,
  "options_in": ["4"],
  "options_nin": [4],
  "validations_every": InputLabelValueValidationWhereInput,
  "validations_exists": true,
  "validations_none": InputLabelValueValidationWhereInput,
  "validations_some": InputLabelValueValidationWhereInput,
  "values_all": [4],
  "values_eq": [4],
  "values_exists": true,
  "values_in": [4],
  "values_nin": ["4"]
}

InputLog

Description

Represents a InputLog

Fields
Field NameDescription
_id - ID
by - Account
byId - ID
cancelMotive - String
date - [Date]
datetime - [DateTime]
element - [Element]
elementIds - [ID]
error - String
file - [File]
fileIds - [ID]
gpsLocation - [Float]
labelValue - [LabelValue]
labelValueIds - [ID]
note - InputLogNote
number - [Float]
signature - [InputLogSignature]
site - [Site]
siteIds - [ID]
string - [String]
table - [InputLogTable]
tags - [InputLogTag]
time - [Time]
timestamp - DateTime
toolItem - [ToolItem]
toolItemIds - [ID]
type - InputLogType!
Example
{
  "_id": 4,
  "by": Account,
  "byId": 4,
  "cancelMotive": "xyz789",
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": [Element],
  "elementIds": [4],
  "error": "xyz789",
  "file": [File],
  "fileIds": ["4"],
  "gpsLocation": [987.65],
  "labelValue": [LabelValue],
  "labelValueIds": [4],
  "note": InputLogNote,
  "number": [987.65],
  "signature": [InputLogSignature],
  "site": [Site],
  "siteIds": [4],
  "string": ["xyz789"],
  "table": [InputLogTable],
  "tags": [InputLogTag],
  "time": ["10:15:30Z"],
  "timestamp": "2007-12-03T10:15:30Z",
  "toolItem": [ToolItem],
  "toolItemIds": ["4"],
  "type": "cancelMotive"
}

InputLogNote

Description

Represents a InputLogNote

Fields
Field NameDescription
files - [File]
filesIds - [ID]
text - String
Example
{
  "files": [File],
  "filesIds": ["4"],
  "text": "xyz789"
}

InputLogNoteWhereInput

Description

Represents a Where input for: InputLogNote

Fields
Input FieldDescription
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "files_all": [4],
  "files_eq": [4],
  "files_exists": true,
  "files_in": ["4"],
  "files_nin": ["4"],
  "text_contains": "abc123",
  "text_ends_with": "xyz789",
  "text_eq": "xyz789",
  "text_exists": false,
  "text_in": ["xyz789"],
  "text_ne": "xyz789",
  "text_nin": ["xyz789"],
  "text_not_contains": "xyz789",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "xyz789",
  "text_starts_with": "xyz789"
}

InputLogSignature

Description

Represents a InputLogSignature

Fields
Field NameDescription
image - File!
imageId - ID!
name - String!
Example
{
  "image": File,
  "imageId": 4,
  "name": "abc123"
}

InputLogSignatureWhereInput

Description

Represents a Where input for: InputLogSignature

Fields
Input FieldDescription
image_all - [ID]Given value includes all in array
image_eq - IDField is equal to given value
image_exists - BooleanField is set and exists
image_in - [ID]Given value includes field
image_ne - IDField is not equal to given value
image_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "image_all": [4],
  "image_eq": "4",
  "image_exists": false,
  "image_in": ["4"],
  "image_ne": "4",
  "image_nin": [4],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123"
}

InputLogTable

Description

Represents a InputLogTable

Fields
Field NameDescription
maxValues - IntMaximum number of columns
values - [InputLogTableValue]
Example
{"maxValues": 123, "values": [InputLogTableValue]}

InputLogTableValue

Description

Represents a InputLogTableValue

Fields
Field NameDescription
name - String!
rows - InputLogTableValueRow
type - String!
Example
{
  "name": "xyz789",
  "rows": InputLogTableValueRow,
  "type": "abc123"
}

InputLogTableValueRow

Description

Represents a InputLogTableValueRow

Fields
Field NameDescription
date - [Date]
datetime - [DateTime]
element - [Element]
elementIds - [ID]
file - [File]
fileIds - [ID]
labelValue - [LabelValue]
labelValueIds - [ID]
number - [Float]
string - [String]
time - [Time]
Example
{
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": [Element],
  "elementIds": [4],
  "file": [File],
  "fileIds": ["4"],
  "labelValue": [LabelValue],
  "labelValueIds": ["4"],
  "number": [123.45],
  "string": ["abc123"],
  "time": ["10:15:30Z"]
}

InputLogTableValueRowWhereInput

Description

Represents a Where input for: InputLogTableValueRow

Fields
Input FieldDescription
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
Example
{
  "date_all": ["xyz789"],
  "date_eq": ["abc123"],
  "date_exists": false,
  "date_in": ["abc123"],
  "date_nin": ["abc123"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": false,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": [4],
  "element_eq": ["4"],
  "element_exists": true,
  "element_in": ["4"],
  "element_nin": [4],
  "file_all": ["4"],
  "file_eq": [4],
  "file_exists": true,
  "file_in": [4],
  "file_nin": ["4"],
  "labelValue_all": [4],
  "labelValue_eq": ["4"],
  "labelValue_exists": true,
  "labelValue_in": [4],
  "labelValue_nin": ["4"],
  "number_all": [123],
  "number_eq": [123],
  "number_exists": true,
  "number_in": [123],
  "number_nin": [987],
  "string_all": ["abc123"],
  "string_eq": ["abc123"],
  "string_exists": false,
  "string_in": ["abc123"],
  "string_nin": ["xyz789"],
  "time_all": ["abc123"],
  "time_eq": ["xyz789"],
  "time_exists": true,
  "time_in": ["abc123"],
  "time_nin": ["xyz789"]
}

InputLogTableValueWhereInput

Description

Represents a Where input for: InputLogTableValue

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
rows - InputLogTableValueRowWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "rows": InputLogTableValueRowWhereInput,
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": false,
  "type_in": ["xyz789"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "abc123",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "abc123"
}

InputLogTableWhereInput

Description

Represents a Where input for: InputLogTable

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
values_every - InputLogTableValueWhereInput
values_exists - Boolean
values_none - InputLogTableValueWhereInput
values_some - InputLogTableValueWhereInput
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "values_every": InputLogTableValueWhereInput,
  "values_exists": true,
  "values_none": InputLogTableValueWhereInput,
  "values_some": InputLogTableValueWhereInput
}

InputLogTag

Description

Represents a InputLogTag

Fields
Field NameDescription
_id - ID
device - Device
deviceId - ID
key - String
name - String!
unit - Unit
unitId - ID
value - String
Example
{
  "_id": 4,
  "device": Device,
  "deviceId": 4,
  "key": "xyz789",
  "name": "xyz789",
  "unit": Unit,
  "unitId": "4",
  "value": "abc123"
}

InputLogTagWhereInput

Description

Represents a Where input for: InputLogTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "device_all": ["4"],
  "device_eq": "4",
  "device_exists": false,
  "device_in": ["4"],
  "device_ne": 4,
  "device_nin": [4],
  "key_contains": "abc123",
  "key_ends_with": "xyz789",
  "key_eq": "xyz789",
  "key_exists": true,
  "key_in": ["xyz789"],
  "key_ne": "abc123",
  "key_nin": ["xyz789"],
  "key_not_contains": "abc123",
  "key_not_ends_with": "abc123",
  "key_not_starts_with": "xyz789",
  "key_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "unit_all": [4],
  "unit_eq": "4",
  "unit_exists": true,
  "unit_in": ["4"],
  "unit_ne": "4",
  "unit_nin": ["4"],
  "value_contains": "xyz789",
  "value_ends_with": "abc123",
  "value_eq": "abc123",
  "value_exists": false,
  "value_in": ["xyz789"],
  "value_ne": "abc123",
  "value_nin": ["abc123"],
  "value_not_contains": "xyz789",
  "value_not_ends_with": "xyz789",
  "value_not_starts_with": "abc123",
  "value_starts_with": "abc123"
}

InputLogType

Values
Enum ValueDescription

cancelMotive

date

datetime

element

file

instruction

labelValue

number

signature

site

string

table

tags

time

tool

Example
"cancelMotive"

InputLogWhereInput

Description

Represents a Where input for: InputLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
cancelMotive_contains - StringField contains given value, case-insensitive
cancelMotive_ends_with - StringField ends with given value, case-insensitive
cancelMotive_eq - StringField is equal to given value
cancelMotive_exists - BooleanField is set and exists
cancelMotive_in - [String]Given value includes field
cancelMotive_ne - StringField is not equal to given value
cancelMotive_nin - [String]Given value does not includes field
cancelMotive_not_contains - StringField does not contains given value, case-insensitive
cancelMotive_not_ends_with - StringField does not end with given value, case-insensitive
cancelMotive_not_starts_with - StringField does not start with given value, case-insensitive
cancelMotive_starts_with - StringField starts with given value, case-insensitive
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
error_contains - StringField contains given value, case-insensitive
error_ends_with - StringField ends with given value, case-insensitive
error_eq - StringField is equal to given value
error_exists - BooleanField is set and exists
error_in - [String]Given value includes field
error_ne - StringField is not equal to given value
error_nin - [String]Given value does not includes field
error_not_contains - StringField does not contains given value, case-insensitive
error_not_ends_with - StringField does not end with given value, case-insensitive
error_not_starts_with - StringField does not start with given value, case-insensitive
error_starts_with - StringField starts with given value, case-insensitive
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
gpsLocation_all - [Int]Field includes all given values.
gpsLocation_eq - [Int]Given value is equal to field
gpsLocation_exists - Boolean
gpsLocation_in - [Int]Field includes one of given value.
gpsLocation_nin - [Int]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
note - InputLogNoteWhereInput
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
signature_every - InputLogSignatureWhereInput
signature_exists - Boolean
signature_none - InputLogSignatureWhereInput
signature_some - InputLogSignatureWhereInput
site_all - [ID]Field includes all given values.
site_eq - [ID]Given value is equal to field
site_exists - Boolean
site_in - [ID]Field includes one of given value.
site_nin - [ID]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
table_every - InputLogTableWhereInput
table_exists - Boolean
table_none - InputLogTableWhereInput
table_some - InputLogTableWhereInput
tags_every - InputLogTagWhereInput
tags_exists - Boolean
tags_none - InputLogTagWhereInput
tags_some - InputLogTagWhereInput
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
timestamp_eq - DateTimeField is equal to given value
timestamp_exists - BooleanField is set and exists
timestamp_gt - DateTimeField is greater than given value
timestamp_gte - DateTimeField is greater or equal than given value
timestamp_in - [DateTime]Given value includes field
timestamp_lt - DateTimeField is lower than given value
timestamp_lte - DateTimeField is lower or equal than given value
timestamp_ne - DateTimeField is not equal to given value
timestamp_nin - [DateTime]Given value does not includes field
toolItem_all - [ID]Field includes all given values.
toolItem_eq - [ID]Given value is equal to field
toolItem_exists - Boolean
toolItem_in - [ID]Field includes one of given value.
toolItem_nin - [ID]Field does not include any of the given values.
type_eq - InputLogTypeField is equal to given value
type_exists - InputLogTypeField is set and exists
type_in - [InputLogType]Given value includes field
type_ne - InputLogTypeField is not equal to given value
type_nin - [InputLogType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": true,
  "by_in": [4],
  "by_ne": "4",
  "by_nin": ["4"],
  "cancelMotive_contains": "abc123",
  "cancelMotive_ends_with": "abc123",
  "cancelMotive_eq": "xyz789",
  "cancelMotive_exists": true,
  "cancelMotive_in": ["xyz789"],
  "cancelMotive_ne": "abc123",
  "cancelMotive_nin": ["abc123"],
  "cancelMotive_not_contains": "abc123",
  "cancelMotive_not_ends_with": "xyz789",
  "cancelMotive_not_starts_with": "abc123",
  "cancelMotive_starts_with": "xyz789",
  "date_all": ["abc123"],
  "date_eq": ["abc123"],
  "date_exists": false,
  "date_in": ["xyz789"],
  "date_nin": ["xyz789"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": false,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": [4],
  "element_eq": ["4"],
  "element_exists": true,
  "element_in": ["4"],
  "element_nin": [4],
  "error_contains": "xyz789",
  "error_ends_with": "abc123",
  "error_eq": "xyz789",
  "error_exists": true,
  "error_in": ["abc123"],
  "error_ne": "xyz789",
  "error_nin": ["abc123"],
  "error_not_contains": "abc123",
  "error_not_ends_with": "xyz789",
  "error_not_starts_with": "abc123",
  "error_starts_with": "abc123",
  "file_all": ["4"],
  "file_eq": ["4"],
  "file_exists": false,
  "file_in": [4],
  "file_nin": [4],
  "gpsLocation_all": [123],
  "gpsLocation_eq": [987],
  "gpsLocation_exists": false,
  "gpsLocation_in": [987],
  "gpsLocation_nin": [123],
  "labelValue_all": [4],
  "labelValue_eq": ["4"],
  "labelValue_exists": true,
  "labelValue_in": [4],
  "labelValue_nin": ["4"],
  "note": InputLogNoteWhereInput,
  "number_all": [987],
  "number_eq": [987],
  "number_exists": true,
  "number_in": [123],
  "number_nin": [987],
  "signature_every": InputLogSignatureWhereInput,
  "signature_exists": true,
  "signature_none": InputLogSignatureWhereInput,
  "signature_some": InputLogSignatureWhereInput,
  "site_all": ["4"],
  "site_eq": ["4"],
  "site_exists": false,
  "site_in": ["4"],
  "site_nin": ["4"],
  "string_all": ["xyz789"],
  "string_eq": ["abc123"],
  "string_exists": false,
  "string_in": ["abc123"],
  "string_nin": ["abc123"],
  "table_every": InputLogTableWhereInput,
  "table_exists": true,
  "table_none": InputLogTableWhereInput,
  "table_some": InputLogTableWhereInput,
  "tags_every": InputLogTagWhereInput,
  "tags_exists": false,
  "tags_none": InputLogTagWhereInput,
  "tags_some": InputLogTagWhereInput,
  "time_all": ["abc123"],
  "time_eq": ["abc123"],
  "time_exists": true,
  "time_in": ["abc123"],
  "time_nin": ["xyz789"],
  "timestamp_eq": "2007-12-03T10:15:30Z",
  "timestamp_exists": true,
  "timestamp_gt": "2007-12-03T10:15:30Z",
  "timestamp_gte": "2007-12-03T10:15:30Z",
  "timestamp_in": ["2007-12-03T10:15:30Z"],
  "timestamp_lt": "2007-12-03T10:15:30Z",
  "timestamp_lte": "2007-12-03T10:15:30Z",
  "timestamp_ne": "2007-12-03T10:15:30Z",
  "timestamp_nin": ["2007-12-03T10:15:30Z"],
  "toolItem_all": [4],
  "toolItem_eq": [4],
  "toolItem_exists": false,
  "toolItem_in": [4],
  "toolItem_nin": ["4"],
  "type_eq": "cancelMotive",
  "type_exists": "cancelMotive",
  "type_in": ["cancelMotive"],
  "type_ne": "cancelMotive",
  "type_nin": ["cancelMotive"]
}

InputNote

Description

Represents a InputNote

Fields
Field NameDescription
files - [File]
filesIds - [ID]
text - String
Example
{
  "files": [File],
  "filesIds": ["4"],
  "text": "xyz789"
}

InputNoteCreateInput

Description

Represents a InputNoteCreateInput

Fields
Input FieldDescription
files - [ID]
text - String
Example
{
  "files": ["4"],
  "text": "xyz789"
}

InputNoteUpdateInput

Description

Represents a InputNoteUpdateInput

Fields
Input FieldDescription
files - [ID]
text - String
Example
{"files": [4], "text": "abc123"}

InputNoteWhereInput

Description

Represents a Where input for: InputNote

Fields
Input FieldDescription
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": true,
  "files_in": [4],
  "files_nin": ["4"],
  "text_contains": "abc123",
  "text_ends_with": "abc123",
  "text_eq": "xyz789",
  "text_exists": false,
  "text_in": ["xyz789"],
  "text_ne": "abc123",
  "text_nin": ["xyz789"],
  "text_not_contains": "xyz789",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "xyz789",
  "text_starts_with": "xyz789"
}

InputNumber

Description

Represents a InputNumber

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
onResponse - [InputNumberOnResponse]
options - [Float]
unit - Unit
unitId - ID
validation - InputNumberValidationvalidation turn to validations
validations - [InputNumberValidation]
values - [Float]
Example
{
  "maxValues": 123,
  "multiple": false,
  "onResponse": [InputNumberOnResponse],
  "options": [987.65],
  "unit": Unit,
  "unitId": 4,
  "validation": InputNumberValidation,
  "validations": [InputNumberValidation],
  "values": [987.65]
}

InputNumberCreateInput

Description

Represents a InputNumberCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
onResponse - [InputNumberOnResponseCreateInput]
options - [Float]
unit - ID
validations - [InputNumberValidationCreateInput]
values - [Float]
Example
{
  "maxValues": 987,
  "multiple": false,
  "onResponse": [InputNumberOnResponseCreateInput],
  "options": [987.65],
  "unit": "4",
  "validations": [InputNumberValidationCreateInput],
  "values": [987.65]
}

InputNumberOnResponse

Description

Represents a InputNumberOnResponse

Fields
Field NameDescription
_id - ID
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
condition - InputNumberOnResponseCondition
createAlert - Boolean
createTasks - Boolean
failResponse - Boolean
finishIssue - Boolean
ifValues - [Float]
inputs - [Input!]
repeatTasks - Boolean
repeatTasksIds - [ID]
Example
{
  "_id": 4,
  "actionDraft": "4",
  "actionRequired": false,
  "cancelIssue": false,
  "condition": "BETWEEN",
  "createAlert": true,
  "createTasks": false,
  "failResponse": true,
  "finishIssue": true,
  "ifValues": [987.65],
  "inputs": [Input],
  "repeatTasks": true,
  "repeatTasksIds": ["4"]
}

InputNumberOnResponseCondition

Values
Enum ValueDescription

BETWEEN

EQUALS

LESS_EQUAL_THAN

LESS_THAN

MORE_EQUAL_THAN

MORE_THAN

NOT_BETWEEN

Example
"BETWEEN"

InputNumberOnResponseCreateInput

Description

Represents a InputNumberOnResponseCreateInput

Fields
Input FieldDescription
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
condition - InputNumberOnResponseCondition
createAlert - Boolean
createTasks - Boolean
failResponse - Boolean
finishIssue - Boolean
ifValues - [Float]
inputs - [InputCreateInput!]
repeatTasks - Boolean
repeatTasksIds - [ID]
Example
{
  "actionDraft": "4",
  "actionRequired": true,
  "cancelIssue": false,
  "condition": "BETWEEN",
  "createAlert": true,
  "createTasks": false,
  "failResponse": false,
  "finishIssue": false,
  "ifValues": [987.65],
  "inputs": [InputCreateInput],
  "repeatTasks": false,
  "repeatTasksIds": ["4"]
}

InputNumberOnResponseUpdateInput

Description

Represents a InputNumberOnResponseUpdateInput

Fields
Input FieldDescription
_id - ID
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
condition - InputNumberOnResponseCondition
createAlert - Boolean
createTasks - Boolean
failResponse - Boolean
finishIssue - Boolean
ifValues - [Float]
inputs - [InputUpdateInput!]
repeatTasks - Boolean
repeatTasksIds - [ID]
Example
{
  "_id": "4",
  "actionDraft": "4",
  "actionRequired": false,
  "cancelIssue": false,
  "condition": "BETWEEN",
  "createAlert": false,
  "createTasks": false,
  "failResponse": false,
  "finishIssue": true,
  "ifValues": [123.45],
  "inputs": [InputUpdateInput],
  "repeatTasks": true,
  "repeatTasksIds": [4]
}

InputNumberOnResponseWhereInput

Description

Represents a Where input for: InputNumberOnResponse

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actionDraft_all - [ID]Given value includes all in array
actionDraft_eq - IDField is equal to given value
actionDraft_exists - BooleanField is set and exists
actionDraft_in - [ID]Given value includes field
actionDraft_ne - IDField is not equal to given value
actionDraft_nin - [ID]Given value does not include field
actionRequired_eq - BooleanField is equal to given value
actionRequired_ne - BooleanField is not equal to given value
cancelIssue_eq - BooleanField is equal to given value
cancelIssue_ne - BooleanField is not equal to given value
condition_eq - InputNumberOnResponseConditionField is equal to given value
condition_exists - InputNumberOnResponseConditionField is set and exists
condition_in - [InputNumberOnResponseCondition]Given value includes field
condition_ne - InputNumberOnResponseConditionField is not equal to given value
condition_nin - [InputNumberOnResponseCondition]Given value does not includes field
createAlert_eq - BooleanField is equal to given value
createAlert_ne - BooleanField is not equal to given value
createTasks_eq - BooleanField is equal to given value
createTasks_ne - BooleanField is not equal to given value
failResponse_eq - BooleanField is equal to given value
failResponse_ne - BooleanField is not equal to given value
finishIssue_eq - BooleanField is equal to given value
finishIssue_ne - BooleanField is not equal to given value
ifValues_all - [Int]Field includes all given values.
ifValues_eq - [Int]Given value is equal to field
ifValues_exists - Boolean
ifValues_in - [Int]Field includes one of given value.
ifValues_nin - [Int]Field does not include any of the given values.
repeatTasksIds_all - [ID]Field includes all given values.
repeatTasksIds_eq - [ID]Given value is equal to field
repeatTasksIds_exists - Boolean
repeatTasksIds_in - [ID]Field includes one of given value.
repeatTasksIds_nin - [ID]Field does not include any of the given values.
repeatTasks_eq - BooleanField is equal to given value
repeatTasks_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "actionDraft_all": ["4"],
  "actionDraft_eq": 4,
  "actionDraft_exists": true,
  "actionDraft_in": [4],
  "actionDraft_ne": "4",
  "actionDraft_nin": ["4"],
  "actionRequired_eq": true,
  "actionRequired_ne": true,
  "cancelIssue_eq": false,
  "cancelIssue_ne": false,
  "condition_eq": "BETWEEN",
  "condition_exists": "BETWEEN",
  "condition_in": ["BETWEEN"],
  "condition_ne": "BETWEEN",
  "condition_nin": ["BETWEEN"],
  "createAlert_eq": false,
  "createAlert_ne": false,
  "createTasks_eq": false,
  "createTasks_ne": true,
  "failResponse_eq": true,
  "failResponse_ne": true,
  "finishIssue_eq": false,
  "finishIssue_ne": false,
  "ifValues_all": [123],
  "ifValues_eq": [987],
  "ifValues_exists": false,
  "ifValues_in": [123],
  "ifValues_nin": [123],
  "repeatTasksIds_all": [4],
  "repeatTasksIds_eq": ["4"],
  "repeatTasksIds_exists": true,
  "repeatTasksIds_in": ["4"],
  "repeatTasksIds_nin": ["4"],
  "repeatTasks_eq": true,
  "repeatTasks_ne": false
}

InputNumberUpdateInput

Description

Represents a InputNumberUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
onResponse - [InputNumberOnResponseUpdateInput]
options - [Float]
unit - ID
validations - [InputNumberValidationUpdateInput]
values - [Float]
Example
{
  "maxValues": 123,
  "multiple": false,
  "onResponse": [InputNumberOnResponseUpdateInput],
  "options": [123.45],
  "unit": "4",
  "validations": [InputNumberValidationUpdateInput],
  "values": [123.45]
}

InputNumberValidation

Description

Represents a InputNumberValidation

Fields
Field NameDescription
inclusive - Boolean
max - Int
min - Int
name - String
notBetween - [Float]
Example
{
  "inclusive": true,
  "max": 123,
  "min": 123,
  "name": "abc123",
  "notBetween": [987.65]
}

InputNumberValidationCreateInput

Description

Represents a InputNumberValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Int
min - Int
name - String
notBetween - [Float]
Example
{
  "inclusive": false,
  "max": 123,
  "min": 987,
  "name": "xyz789",
  "notBetween": [987.65]
}

InputNumberValidationUpdateInput

Description

Represents a InputNumberValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Int
min - Int
name - String
notBetween - [Float]
Example
{
  "inclusive": false,
  "max": 987,
  "min": 123,
  "name": "xyz789",
  "notBetween": [987.65]
}

InputNumberValidationWhereInput

Description

Represents a Where input for: InputNumberValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
notBetween_all - [Int]Field includes all given values.
notBetween_eq - [Int]Given value is equal to field
notBetween_exists - Boolean
notBetween_in - [Int]Field includes one of given value.
notBetween_nin - [Int]Field does not include any of the given values.
Example
{
  "inclusive_eq": true,
  "inclusive_ne": false,
  "max_eq": 987,
  "max_exists": true,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [987],
  "min_eq": 123,
  "min_exists": true,
  "min_gt": 987,
  "min_gte": 987,
  "min_in": [123],
  "min_lt": 123,
  "min_lte": 987,
  "min_ne": 987,
  "min_nin": [123],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "notBetween_all": [123],
  "notBetween_eq": [987],
  "notBetween_exists": true,
  "notBetween_in": [123],
  "notBetween_nin": [123]
}

InputNumberWhereInput

Description

Represents a Where input for: InputNumber

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
onResponse_every - InputNumberOnResponseWhereInput
onResponse_exists - Boolean
onResponse_none - InputNumberOnResponseWhereInput
onResponse_some - InputNumberOnResponseWhereInput
options_all - [Int]Field includes all given values.
options_eq - [Int]Given value is equal to field
options_exists - Boolean
options_in - [Int]Field includes one of given value.
options_nin - [Int]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
validations_every - InputNumberValidationWhereInput
validations_exists - Boolean
validations_none - InputNumberValidationWhereInput
validations_some - InputNumberValidationWhereInput
values_all - [Int]Field includes all given values.
values_eq - [Int]Given value is equal to field
values_exists - Boolean
values_in - [Int]Field includes one of given value.
values_nin - [Int]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 123,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": true,
  "onResponse_every": InputNumberOnResponseWhereInput,
  "onResponse_exists": true,
  "onResponse_none": InputNumberOnResponseWhereInput,
  "onResponse_some": InputNumberOnResponseWhereInput,
  "options_all": [987],
  "options_eq": [987],
  "options_exists": false,
  "options_in": [987],
  "options_nin": [987],
  "unit_all": ["4"],
  "unit_eq": "4",
  "unit_exists": true,
  "unit_in": [4],
  "unit_ne": 4,
  "unit_nin": [4],
  "validations_every": InputNumberValidationWhereInput,
  "validations_exists": false,
  "validations_none": InputNumberValidationWhereInput,
  "validations_some": InputNumberValidationWhereInput,
  "values_all": [123],
  "values_eq": [123],
  "values_exists": false,
  "values_in": [123],
  "values_nin": [123]
}

InputSignature

Description

Represents a InputSignature

Fields
Field NameDescription
values - [InputSignatureValue]
Example
{"values": [InputSignatureValue]}

InputSignatureCreateInput

Description

Represents a InputSignatureCreateInput

Fields
Input FieldDescription
values - [InputSignatureValueCreateInput]
Example
{"values": [InputSignatureValueCreateInput]}

InputSignatureUpdateInput

Description

Represents a InputSignatureUpdateInput

Fields
Input FieldDescription
onResponse - [InputUpdateInput]
validations - [InputUpdateInput]
values - [InputSignatureValueUpdateInput]
Example
{
  "onResponse": [InputUpdateInput],
  "validations": [InputUpdateInput],
  "values": [InputSignatureValueUpdateInput]
}

InputSignatureValue

Description

Represents a InputSignatureValue

Fields
Field NameDescription
image - File
imageId - ID
name - String!
Example
{
  "image": File,
  "imageId": "4",
  "name": "xyz789"
}

InputSignatureValueCreateInput

Description

Represents a InputSignatureValueCreateInput

Fields
Input FieldDescription
image - ID
name - String!
Example
{"image": 4, "name": "xyz789"}

InputSignatureValueUpdateInput

Description

Represents a InputSignatureValueUpdateInput

Fields
Input FieldDescription
image - ID
name - String
Example
{
  "image": "4",
  "name": "abc123"
}

InputSignatureValueWhereInput

Description

Represents a Where input for: InputSignatureValue

Fields
Input FieldDescription
image_all - [ID]Given value includes all in array
image_eq - IDField is equal to given value
image_exists - BooleanField is set and exists
image_in - [ID]Given value includes field
image_ne - IDField is not equal to given value
image_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "image_all": ["4"],
  "image_eq": "4",
  "image_exists": false,
  "image_in": ["4"],
  "image_ne": "4",
  "image_nin": [4],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

InputSignatureWhereInput

Description

Represents a Where input for: InputSignature

Fields
Input FieldDescription
values_every - InputSignatureValueWhereInput
values_exists - Boolean
values_none - InputSignatureValueWhereInput
values_some - InputSignatureValueWhereInput
Example
{
  "values_every": InputSignatureValueWhereInput,
  "values_exists": true,
  "values_none": InputSignatureValueWhereInput,
  "values_some": InputSignatureValueWhereInput
}

InputSite

Description

Represents a InputSite

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [Site]
optionsIds - [ID]
values - [Site]
valuesIds - [ID]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": [Site],
  "optionsIds": ["4"],
  "values": [Site],
  "valuesIds": ["4"]
}

InputSiteCreateInput

Description

Represents a InputSiteCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [ID]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": ["4"],
  "values": ["4"]
}

InputSiteUpdateInput

Description

Represents a InputSiteUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
onResponse - [InputUpdateInput]
options - [ID]
validations - [InputUpdateInput]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "onResponse": [InputUpdateInput],
  "options": [4],
  "validations": [InputUpdateInput],
  "values": [4]
}

InputSiteWhereInput

Description

Represents a Where input for: InputSite

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": true,
  "options_all": ["4"],
  "options_eq": ["4"],
  "options_exists": false,
  "options_in": ["4"],
  "options_nin": ["4"],
  "values_all": [4],
  "values_eq": ["4"],
  "values_exists": false,
  "values_in": ["4"],
  "values_nin": ["4"]
}

InputString

Description

Represents a InputString

Fields
Field NameDescription
failOptions - [String]
maxValues - Int
multiple - Boolean
onResponse - [InputStringOnResponse]
options - [String]
optionsWithScore - [InputStringOptionsWithScore]
preset - InputStringPreset
setValueWithQRCode - Boolean
validation - InputStringValidationvalidation turn to validations
validations - [InputStringValidation]
values - [String]
Example
{
  "failOptions": ["xyz789"],
  "maxValues": 123,
  "multiple": false,
  "onResponse": [InputStringOnResponse],
  "options": ["abc123"],
  "optionsWithScore": [InputStringOptionsWithScore],
  "preset": InputStringPreset,
  "setValueWithQRCode": false,
  "validation": InputStringValidation,
  "validations": [InputStringValidation],
  "values": ["xyz789"]
}

InputStringCreateInput

Description

Represents a InputStringCreateInput

Fields
Input FieldDescription
failOptions - [String]
maxValues - Int
multiple - Boolean
onResponse - [InputStringOnResponseCreateInput]
options - [String]
optionsWithScore - [InputStringOptionsWithScoreCreateInput]
preset - InputStringPresetCreateInput
setValueWithQRCode - Boolean
validations - [InputStringValidationCreateInput]
values - [String]
Example
{
  "failOptions": ["abc123"],
  "maxValues": 123,
  "multiple": true,
  "onResponse": [InputStringOnResponseCreateInput],
  "options": ["xyz789"],
  "optionsWithScore": [
    InputStringOptionsWithScoreCreateInput
  ],
  "preset": InputStringPresetCreateInput,
  "setValueWithQRCode": true,
  "validations": [InputStringValidationCreateInput],
  "values": ["abc123"]
}

InputStringOnResponse

Description

Represents a InputStringOnResponse

Fields
Field NameDescription
_id - ID
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
createAlert - Boolean
createTasks - Boolean
finishIssue - Boolean
ifValues - [String]
inputs - [Input!]
Example
{
  "_id": 4,
  "actionDraft": "4",
  "actionRequired": false,
  "cancelIssue": true,
  "createAlert": true,
  "createTasks": false,
  "finishIssue": true,
  "ifValues": ["xyz789"],
  "inputs": [Input]
}

InputStringOnResponseCreateInput

Description

Represents a InputStringOnResponseCreateInput

Fields
Input FieldDescription
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
createAlert - Boolean
createTasks - Boolean
finishIssue - Boolean
ifValues - [String]
inputs - [InputCreateInput!]
Example
{
  "actionDraft": 4,
  "actionRequired": true,
  "cancelIssue": false,
  "createAlert": true,
  "createTasks": true,
  "finishIssue": false,
  "ifValues": ["abc123"],
  "inputs": [InputCreateInput]
}

InputStringOnResponseUpdateInput

Description

Represents a InputStringOnResponseUpdateInput

Fields
Input FieldDescription
_id - ID
actionDraft - ID
actionRequired - Boolean
cancelIssue - Boolean
createAlert - Boolean
createTasks - Boolean
finishIssue - Boolean
ifValues - [String]
inputs - [InputUpdateInput!]
Example
{
  "_id": 4,
  "actionDraft": 4,
  "actionRequired": true,
  "cancelIssue": true,
  "createAlert": false,
  "createTasks": true,
  "finishIssue": false,
  "ifValues": ["xyz789"],
  "inputs": [InputUpdateInput]
}

InputStringOnResponseWhereInput

Description

Represents a Where input for: InputStringOnResponse

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actionDraft_all - [ID]Given value includes all in array
actionDraft_eq - IDField is equal to given value
actionDraft_exists - BooleanField is set and exists
actionDraft_in - [ID]Given value includes field
actionDraft_ne - IDField is not equal to given value
actionDraft_nin - [ID]Given value does not include field
actionRequired_eq - BooleanField is equal to given value
actionRequired_ne - BooleanField is not equal to given value
cancelIssue_eq - BooleanField is equal to given value
cancelIssue_ne - BooleanField is not equal to given value
createAlert_eq - BooleanField is equal to given value
createAlert_ne - BooleanField is not equal to given value
createTasks_eq - BooleanField is equal to given value
createTasks_ne - BooleanField is not equal to given value
finishIssue_eq - BooleanField is equal to given value
finishIssue_ne - BooleanField is not equal to given value
ifValues_all - [String]Field includes all given values.
ifValues_eq - [String]Given value is equal to field
ifValues_exists - Boolean
ifValues_in - [String]Field includes one of given value.
ifValues_nin - [String]Field does not include any of the given values.
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "actionDraft_all": ["4"],
  "actionDraft_eq": "4",
  "actionDraft_exists": false,
  "actionDraft_in": [4],
  "actionDraft_ne": "4",
  "actionDraft_nin": [4],
  "actionRequired_eq": true,
  "actionRequired_ne": true,
  "cancelIssue_eq": true,
  "cancelIssue_ne": false,
  "createAlert_eq": true,
  "createAlert_ne": true,
  "createTasks_eq": true,
  "createTasks_ne": false,
  "finishIssue_eq": true,
  "finishIssue_ne": true,
  "ifValues_all": ["xyz789"],
  "ifValues_eq": ["xyz789"],
  "ifValues_exists": true,
  "ifValues_in": ["xyz789"],
  "ifValues_nin": ["xyz789"]
}

InputStringOptionsWithScore

Description

Represents a InputStringOptionsWithScore

Fields
Field NameDescription
_id - String
option - String
score - Int
Example
{
  "_id": "xyz789",
  "option": "abc123",
  "score": 123
}

InputStringOptionsWithScoreCreateInput

Description

Represents a InputStringOptionsWithScoreCreateInput

Fields
Input FieldDescription
option - String
score - Int
Example
{"option": "xyz789", "score": 123}

InputStringOptionsWithScoreUpdateInput

Description

Represents a InputStringOptionsWithScoreUpdateInput

Fields
Input FieldDescription
option - String
score - Int
Example
{"option": "abc123", "score": 987}

InputStringOptionsWithScoreWhereInput

Description

Represents a Where input for: InputStringOptionsWithScore

Fields
Input FieldDescription
_id_contains - StringField contains given value, case-insensitive
_id_ends_with - StringField ends with given value, case-insensitive
_id_eq - StringField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [String]Given value includes field
_id_ne - StringField is not equal to given value
_id_nin - [String]Given value does not includes field
_id_not_contains - StringField does not contains given value, case-insensitive
_id_not_ends_with - StringField does not end with given value, case-insensitive
_id_not_starts_with - StringField does not start with given value, case-insensitive
_id_starts_with - StringField starts with given value, case-insensitive
option_contains - StringField contains given value, case-insensitive
option_ends_with - StringField ends with given value, case-insensitive
option_eq - StringField is equal to given value
option_exists - BooleanField is set and exists
option_in - [String]Given value includes field
option_ne - StringField is not equal to given value
option_nin - [String]Given value does not includes field
option_not_contains - StringField does not contains given value, case-insensitive
option_not_ends_with - StringField does not end with given value, case-insensitive
option_not_starts_with - StringField does not start with given value, case-insensitive
option_starts_with - StringField starts with given value, case-insensitive
score_eq - IntField is equal to given value
score_exists - BooleanField is set and exists
score_gt - IntField is greater than given value
score_gte - IntField is greater or equal than given value
score_in - [Int]Given value includes field
score_lt - IntField is lower than given value
score_lte - IntField is lower or equal than given value
score_ne - IntField is not equal to given value
score_nin - [Int]Given value does not includes field
Example
{
  "_id_contains": "abc123",
  "_id_ends_with": "xyz789",
  "_id_eq": "abc123",
  "_id_exists": true,
  "_id_in": ["xyz789"],
  "_id_ne": "xyz789",
  "_id_nin": ["abc123"],
  "_id_not_contains": "xyz789",
  "_id_not_ends_with": "xyz789",
  "_id_not_starts_with": "abc123",
  "_id_starts_with": "xyz789",
  "option_contains": "xyz789",
  "option_ends_with": "abc123",
  "option_eq": "abc123",
  "option_exists": true,
  "option_in": ["abc123"],
  "option_ne": "xyz789",
  "option_nin": ["abc123"],
  "option_not_contains": "abc123",
  "option_not_ends_with": "abc123",
  "option_not_starts_with": "abc123",
  "option_starts_with": "xyz789",
  "score_eq": 987,
  "score_exists": false,
  "score_gt": 987,
  "score_gte": 987,
  "score_in": [987],
  "score_lt": 987,
  "score_lte": 123,
  "score_ne": 123,
  "score_nin": [987]
}

InputStringPreset

Description

Represents a InputStringPreset

Fields
Field NameDescription
presetId - ID
Example
{"presetId": "4"}

InputStringPresetCreateInput

Description

Represents a InputStringPresetCreateInput

Fields
Input FieldDescription
presetId - ID
Example
{"presetId": "4"}

InputStringPresetUpdateInput

Description

Represents a InputStringPresetUpdateInput

Fields
Input FieldDescription
presetId - ID
Example
{"presetId": "4"}

InputStringPresetWhereInput

Description

Represents a Where input for: InputStringPreset

Fields
Input FieldDescription
presetId_all - [ID]Given value includes all in array
presetId_eq - IDField is equal to given value
presetId_exists - BooleanField is set and exists
presetId_in - [ID]Given value includes field
presetId_ne - IDField is not equal to given value
presetId_nin - [ID]Given value does not include field
Example
{
  "presetId_all": ["4"],
  "presetId_eq": "4",
  "presetId_exists": true,
  "presetId_in": [4],
  "presetId_ne": 4,
  "presetId_nin": ["4"]
}

InputStringUpdateInput

Description

Represents a InputStringUpdateInput

Fields
Input FieldDescription
failOptions - [String]
maxValues - Int
multiple - Boolean
onResponse - [InputStringOnResponseUpdateInput]
options - [String]
optionsWithScore - [InputStringOptionsWithScoreUpdateInput]
preset - InputStringPresetUpdateInput
setValueWithQRCode - Boolean
validations - [InputStringValidationUpdateInput]
values - [String]
Example
{
  "failOptions": ["abc123"],
  "maxValues": 987,
  "multiple": true,
  "onResponse": [InputStringOnResponseUpdateInput],
  "options": ["xyz789"],
  "optionsWithScore": [
    InputStringOptionsWithScoreUpdateInput
  ],
  "preset": InputStringPresetUpdateInput,
  "setValueWithQRCode": true,
  "validations": [InputStringValidationUpdateInput],
  "values": ["abc123"]
}

InputStringValidation

Description

Represents a InputStringValidation

Fields
Field NameDescription
inclusive - Boolean
linkWithInputInputs - [Input]Get the inputs that are linked with this validation's linkWithInputs
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
Example
{
  "inclusive": true,
  "linkWithInputInputs": [Input],
  "linkWithInputs": [4],
  "max": 987,
  "min": 123,
  "name": "abc123",
  "regex": "abc123"
}

InputStringValidationCreateInput

Description

Represents a InputStringValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
Example
{
  "inclusive": true,
  "linkWithInputs": ["4"],
  "max": 987,
  "min": 987,
  "name": "abc123",
  "regex": "abc123"
}

InputStringValidationUpdateInput

Description

Represents a InputStringValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
Example
{
  "inclusive": true,
  "linkWithInputs": [4],
  "max": 987,
  "min": 123,
  "name": "xyz789",
  "regex": "abc123"
}

InputStringValidationWhereInput

Description

Represents a Where input for: InputStringValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
linkWithInputs_all - [ID]Field includes all given values.
linkWithInputs_eq - [ID]Given value is equal to field
linkWithInputs_exists - Boolean
linkWithInputs_in - [ID]Field includes one of given value.
linkWithInputs_nin - [ID]Field does not include any of the given values.
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
regex_contains - StringField contains given value, case-insensitive
regex_ends_with - StringField ends with given value, case-insensitive
regex_eq - StringField is equal to given value
regex_exists - BooleanField is set and exists
regex_in - [String]Given value includes field
regex_ne - StringField is not equal to given value
regex_nin - [String]Given value does not includes field
regex_not_contains - StringField does not contains given value, case-insensitive
regex_not_ends_with - StringField does not end with given value, case-insensitive
regex_not_starts_with - StringField does not start with given value, case-insensitive
regex_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": true,
  "inclusive_ne": true,
  "linkWithInputs_all": [4],
  "linkWithInputs_eq": ["4"],
  "linkWithInputs_exists": false,
  "linkWithInputs_in": ["4"],
  "linkWithInputs_nin": [4],
  "max_eq": 123,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [987],
  "min_eq": 123,
  "min_exists": true,
  "min_gt": 123,
  "min_gte": 987,
  "min_in": [123],
  "min_lt": 123,
  "min_lte": 123,
  "min_ne": 123,
  "min_nin": [123],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "regex_contains": "abc123",
  "regex_ends_with": "xyz789",
  "regex_eq": "abc123",
  "regex_exists": false,
  "regex_in": ["xyz789"],
  "regex_ne": "abc123",
  "regex_nin": ["abc123"],
  "regex_not_contains": "xyz789",
  "regex_not_ends_with": "abc123",
  "regex_not_starts_with": "xyz789",
  "regex_starts_with": "abc123"
}

InputStringWhereInput

Description

Represents a Where input for: InputString

Fields
Input FieldDescription
failOptions_all - [String]Field includes all given values.
failOptions_eq - [String]Given value is equal to field
failOptions_exists - Boolean
failOptions_in - [String]Field includes one of given value.
failOptions_nin - [String]Field does not include any of the given values.
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
onResponse_every - InputStringOnResponseWhereInput
onResponse_exists - Boolean
onResponse_none - InputStringOnResponseWhereInput
onResponse_some - InputStringOnResponseWhereInput
optionsWithScore_every - InputStringOptionsWithScoreWhereInput
optionsWithScore_exists - Boolean
optionsWithScore_none - InputStringOptionsWithScoreWhereInput
optionsWithScore_some - InputStringOptionsWithScoreWhereInput
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
preset - InputStringPresetWhereInput
setValueWithQRCode_eq - BooleanField is equal to given value
setValueWithQRCode_ne - BooleanField is not equal to given value
validations_every - InputStringValidationWhereInput
validations_exists - Boolean
validations_none - InputStringValidationWhereInput
validations_some - InputStringValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "failOptions_all": ["xyz789"],
  "failOptions_eq": ["abc123"],
  "failOptions_exists": false,
  "failOptions_in": ["abc123"],
  "failOptions_nin": ["xyz789"],
  "maxValues_eq": 123,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "multiple_eq": true,
  "multiple_ne": true,
  "onResponse_every": InputStringOnResponseWhereInput,
  "onResponse_exists": true,
  "onResponse_none": InputStringOnResponseWhereInput,
  "onResponse_some": InputStringOnResponseWhereInput,
  "optionsWithScore_every": InputStringOptionsWithScoreWhereInput,
  "optionsWithScore_exists": true,
  "optionsWithScore_none": InputStringOptionsWithScoreWhereInput,
  "optionsWithScore_some": InputStringOptionsWithScoreWhereInput,
  "options_all": ["abc123"],
  "options_eq": ["abc123"],
  "options_exists": true,
  "options_in": ["xyz789"],
  "options_nin": ["xyz789"],
  "preset": InputStringPresetWhereInput,
  "setValueWithQRCode_eq": true,
  "setValueWithQRCode_ne": true,
  "validations_every": InputStringValidationWhereInput,
  "validations_exists": true,
  "validations_none": InputStringValidationWhereInput,
  "validations_some": InputStringValidationWhereInput,
  "values_all": ["abc123"],
  "values_eq": ["xyz789"],
  "values_exists": false,
  "values_in": ["abc123"],
  "values_nin": ["xyz789"]
}

InputTable

Description

Represents a InputTable

Fields
Field NameDescription
maxValues - IntMaximum number of columns
values - [InputTableValue]
Example
{"maxValues": 123, "values": [InputTableValue]}

InputTableCreateInput

Description

Represents a InputTableCreateInput

Fields
Input FieldDescription
maxValues - IntMaximum number of columns
values - [InputTableValueCreateInput]Each item on the list represents a column of the table
Example
{"maxValues": 123, "values": [InputTableValueCreateInput]}

InputTableUpdateInput

Description

Represents a InputTableUpdateInput

Fields
Input FieldDescription
maxValues - IntMaximum number of columns
onResponse - [InputUpdateInput]
validations - [InputUpdateInput]
values - [InputTableValueUpdateInput]Each item on the list represents a column of the table
Example
{
  "maxValues": 123,
  "onResponse": [InputUpdateInput],
  "validations": [InputUpdateInput],
  "values": [InputTableValueUpdateInput]
}

InputTableValue

Description

Represents a InputTableValue

Fields
Field NameDescription
name - String!
rows - InputTableValueRow
type - String!
Example
{
  "name": "abc123",
  "rows": InputTableValueRow,
  "type": "xyz789"
}

InputTableValueCreateInput

Description

Represents a InputTableValueCreateInput

Fields
Input FieldDescription
name - String!
rows - InputTableValueRowCreateInput
type - String!
Example
{
  "name": "abc123",
  "rows": InputTableValueRowCreateInput,
  "type": "xyz789"
}

InputTableValueRow

Description

Represents a InputTableValueRow

Fields
Field NameDescription
date - [Date]
datetime - [DateTime]
element - [Element]
elementIds - [ID]
file - [File]
fileIds - [ID]
labelValue - [LabelValue]
labelValueIds - [ID]
number - [Float]
string - [String]
time - [Time]
Example
{
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": [Element],
  "elementIds": ["4"],
  "file": [File],
  "fileIds": ["4"],
  "labelValue": [LabelValue],
  "labelValueIds": ["4"],
  "number": [987.65],
  "string": ["abc123"],
  "time": ["10:15:30Z"]
}

InputTableValueRowCreateInput

Description

Represents a InputTableValueRowCreateInput

Fields
Input FieldDescription
date - [Date]
datetime - [DateTime]
element - [ID]
file - [ID]
labelValue - [ID]
number - [Float]
string - [String]
time - [Time]
Example
{
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": ["4"],
  "file": ["4"],
  "labelValue": [4],
  "number": [123.45],
  "string": ["abc123"],
  "time": ["10:15:30Z"]
}

InputTableValueRowUpdateInput

Description

Represents a InputTableValueRowUpdateInput

Fields
Input FieldDescription
date - [Date]
datetime - [DateTime]
element - [ID]
file - [ID]
labelValue - [ID]
number - [Float]
string - [String]
time - [Time]
Example
{
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": [4],
  "file": [4],
  "labelValue": [4],
  "number": [123.45],
  "string": ["abc123"],
  "time": ["10:15:30Z"]
}

InputTableValueRowWhereInput

Description

Represents a Where input for: InputTableValueRow

Fields
Input FieldDescription
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
Example
{
  "date_all": ["abc123"],
  "date_eq": ["xyz789"],
  "date_exists": true,
  "date_in": ["abc123"],
  "date_nin": ["abc123"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": false,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": ["4"],
  "element_eq": ["4"],
  "element_exists": true,
  "element_in": ["4"],
  "element_nin": [4],
  "file_all": ["4"],
  "file_eq": [4],
  "file_exists": true,
  "file_in": [4],
  "file_nin": [4],
  "labelValue_all": [4],
  "labelValue_eq": ["4"],
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_nin": ["4"],
  "number_all": [987],
  "number_eq": [987],
  "number_exists": false,
  "number_in": [987],
  "number_nin": [123],
  "string_all": ["xyz789"],
  "string_eq": ["abc123"],
  "string_exists": true,
  "string_in": ["xyz789"],
  "string_nin": ["xyz789"],
  "time_all": ["xyz789"],
  "time_eq": ["abc123"],
  "time_exists": false,
  "time_in": ["abc123"],
  "time_nin": ["xyz789"]
}

InputTableValueUpdateInput

Description

Represents a InputTableValueUpdateInput

Fields
Input FieldDescription
name - String
rows - InputTableValueRowUpdateInput
type - String
Example
{
  "name": "abc123",
  "rows": InputTableValueRowUpdateInput,
  "type": "xyz789"
}

InputTableValueWhereInput

Description

Represents a Where input for: InputTableValue

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
rows - InputTableValueRowWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "rows": InputTableValueRowWhereInput,
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": true,
  "type_in": ["abc123"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "xyz789"
}

InputTableWhereInput

Description

Represents a Where input for: InputTable

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
values_every - InputTableValueWhereInput
values_exists - Boolean
values_none - InputTableValueWhereInput
values_some - InputTableValueWhereInput
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": false,
  "maxValues_gt": 123,
  "maxValues_gte": 123,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "values_every": InputTableValueWhereInput,
  "values_exists": false,
  "values_none": InputTableValueWhereInput,
  "values_some": InputTableValueWhereInput
}

InputTag

Description

Represents a InputTag

Fields
Field NameDescription
_id - ID
values - [InputTagValue]
Example
{"_id": 4, "values": [InputTagValue]}

InputTagCreateInput

Description

Represents a InputTagCreateInput

Fields
Input FieldDescription
values - [InputTagValueCreateInput]
Example
{"values": [InputTagValueCreateInput]}

InputTagUpdateInput

Description

Represents a InputTagUpdateInput

Fields
Input FieldDescription
values - [InputTagValueUpdateInput]
Example
{"values": [InputTagValueUpdateInput]}

InputTagValue

Description

Represents a InputTagValue

Fields
Field NameDescription
_id - ID
device - Device
deviceId - ID
key - String
name - String!
unit - Unit
unitId - ID
value - String
Example
{
  "_id": "4",
  "device": Device,
  "deviceId": 4,
  "key": "abc123",
  "name": "abc123",
  "unit": Unit,
  "unitId": 4,
  "value": "xyz789"
}

InputTagValueCreateInput

Description

Represents a InputTagValueCreateInput

Fields
Input FieldDescription
device - ID
key - String
name - String!
unit - ID
value - String
Example
{
  "device": "4",
  "key": "xyz789",
  "name": "abc123",
  "unit": 4,
  "value": "abc123"
}

InputTagValueUpdateInput

Description

Represents a InputTagValueUpdateInput

Fields
Input FieldDescription
device - ID
key - String
name - String
unit - ID
value - String
Example
{
  "device": 4,
  "key": "xyz789",
  "name": "abc123",
  "unit": "4",
  "value": "xyz789"
}

InputTagValueWhereInput

Description

Represents a Where input for: InputTagValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "device_all": [4],
  "device_eq": "4",
  "device_exists": true,
  "device_in": [4],
  "device_ne": 4,
  "device_nin": [4],
  "key_contains": "abc123",
  "key_ends_with": "xyz789",
  "key_eq": "abc123",
  "key_exists": true,
  "key_in": ["abc123"],
  "key_ne": "xyz789",
  "key_nin": ["abc123"],
  "key_not_contains": "abc123",
  "key_not_ends_with": "abc123",
  "key_not_starts_with": "xyz789",
  "key_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "unit_all": [4],
  "unit_eq": "4",
  "unit_exists": false,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": ["4"],
  "value_contains": "xyz789",
  "value_ends_with": "xyz789",
  "value_eq": "abc123",
  "value_exists": true,
  "value_in": ["abc123"],
  "value_ne": "abc123",
  "value_nin": ["xyz789"],
  "value_not_contains": "abc123",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "xyz789",
  "value_starts_with": "xyz789"
}

InputTagWhereInput

Description

Represents a Where input for: InputTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
values_every - InputTagValueWhereInput
values_exists - Boolean
values_none - InputTagValueWhereInput
values_some - InputTagValueWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "values_every": InputTagValueWhereInput,
  "values_exists": true,
  "values_none": InputTagValueWhereInput,
  "values_some": InputTagValueWhereInput
}

InputTime

Description

Represents a InputTime

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
options - [Time]
validation - InputTimeValidationvalidation turn to validations
validations - [InputTimeValidation]
values - [Time]
Example
{
  "maxValues": 123,
  "multiple": true,
  "options": ["10:15:30Z"],
  "validation": InputTimeValidation,
  "validations": [InputTimeValidation],
  "values": ["10:15:30Z"]
}

InputTimeCreateInput

Description

Represents a InputTimeCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [Time]
validations - [InputTimeValidationCreateInput]
values - [Time]
Example
{
  "maxValues": 987,
  "multiple": false,
  "options": ["10:15:30Z"],
  "validations": [InputTimeValidationCreateInput],
  "values": ["10:15:30Z"]
}

InputTimeUpdateInput

Description

Represents a InputTimeUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
options - [Time]
validations - [InputTimeValidationUpdateInput]
values - [Time]
Example
{
  "maxValues": 123,
  "multiple": false,
  "options": ["10:15:30Z"],
  "validations": [InputTimeValidationUpdateInput],
  "values": ["10:15:30Z"]
}

InputTimeValidation

Description

Represents a InputTimeValidation

Fields
Field NameDescription
inclusive - Boolean
max - Time
min - Time
Example
{
  "inclusive": false,
  "max": "10:15:30Z",
  "min": "10:15:30Z"
}

InputTimeValidationCreateInput

Description

Represents a InputTimeValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Time
min - Time
Example
{
  "inclusive": true,
  "max": "10:15:30Z",
  "min": "10:15:30Z"
}

InputTimeValidationUpdateInput

Description

Represents a InputTimeValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
max - Time
min - Time
Example
{
  "inclusive": false,
  "max": "10:15:30Z",
  "min": "10:15:30Z"
}

InputTimeValidationWhereInput

Description

Represents a Where input for: InputTimeValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_contains - StringField contains given value, case-insensitive
max_ends_with - StringField ends with given value, case-insensitive
max_eq - StringField is equal to given value
max_exists - BooleanField is set and exists
max_in - [String]Given value includes field
max_ne - StringField is not equal to given value
max_nin - [String]Given value does not includes field
max_not_contains - StringField does not contains given value, case-insensitive
max_not_ends_with - StringField does not end with given value, case-insensitive
max_not_starts_with - StringField does not start with given value, case-insensitive
max_starts_with - StringField starts with given value, case-insensitive
min_contains - StringField contains given value, case-insensitive
min_ends_with - StringField ends with given value, case-insensitive
min_eq - StringField is equal to given value
min_exists - BooleanField is set and exists
min_in - [String]Given value includes field
min_ne - StringField is not equal to given value
min_nin - [String]Given value does not includes field
min_not_contains - StringField does not contains given value, case-insensitive
min_not_ends_with - StringField does not end with given value, case-insensitive
min_not_starts_with - StringField does not start with given value, case-insensitive
min_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": true,
  "inclusive_ne": true,
  "max_contains": "xyz789",
  "max_ends_with": "abc123",
  "max_eq": "abc123",
  "max_exists": false,
  "max_in": ["xyz789"],
  "max_ne": "xyz789",
  "max_nin": ["xyz789"],
  "max_not_contains": "abc123",
  "max_not_ends_with": "xyz789",
  "max_not_starts_with": "xyz789",
  "max_starts_with": "abc123",
  "min_contains": "xyz789",
  "min_ends_with": "xyz789",
  "min_eq": "abc123",
  "min_exists": false,
  "min_in": ["xyz789"],
  "min_ne": "abc123",
  "min_nin": ["xyz789"],
  "min_not_contains": "abc123",
  "min_not_ends_with": "xyz789",
  "min_not_starts_with": "xyz789",
  "min_starts_with": "abc123"
}

InputTimeWhereInput

Description

Represents a Where input for: InputTime

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
validations_every - InputTimeValidationWhereInput
validations_exists - Boolean
validations_none - InputTimeValidationWhereInput
validations_some - InputTimeValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 987,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": false,
  "options_all": ["xyz789"],
  "options_eq": ["abc123"],
  "options_exists": true,
  "options_in": ["abc123"],
  "options_nin": ["abc123"],
  "validations_every": InputTimeValidationWhereInput,
  "validations_exists": false,
  "validations_none": InputTimeValidationWhereInput,
  "validations_some": InputTimeValidationWhereInput,
  "values_all": ["xyz789"],
  "values_eq": ["xyz789"],
  "values_exists": true,
  "values_in": ["abc123"],
  "values_nin": ["xyz789"]
}

InputTool

Description

Represents a InputTool

Fields
Field NameDescription
maxValues - Int
multiple - Boolean
setValueWithQRCode - Boolean
validations - [InputToolValidation]
values - [ToolItem]
valuesIds - [ID]
Example
{
  "maxValues": 123,
  "multiple": false,
  "setValueWithQRCode": true,
  "validations": [InputToolValidation],
  "values": [ToolItem],
  "valuesIds": [4]
}

InputToolCreateInput

Description

Represents a InputToolCreateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
setValueWithQRCode - Boolean
validations - [InputToolValidationCreateInput]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": false,
  "setValueWithQRCode": false,
  "validations": [InputToolValidationCreateInput],
  "values": [4]
}

InputToolUpdateInput

Description

Represents a InputToolUpdateInput

Fields
Input FieldDescription
maxValues - Int
multiple - Boolean
setValueWithQRCode - Boolean
validations - [InputToolValidationUpdateInput]
values - [ID]
Example
{
  "maxValues": 987,
  "multiple": true,
  "setValueWithQRCode": true,
  "validations": [InputToolValidationUpdateInput],
  "values": ["4"]
}

InputToolValidation

Description

Represents a InputToolValidation

Fields
Field NameDescription
inclusive - Boolean
linkWithInputInputs - [Input]Get the inputs that are linked with this validation's linkWithInputs
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
specificTool - [ID]
specificToolInput - [Input]Get the tool that is linked with this validation's specificTool
Example
{
  "inclusive": false,
  "linkWithInputInputs": [Input],
  "linkWithInputs": [4],
  "max": 123,
  "min": 987,
  "name": "xyz789",
  "regex": "abc123",
  "specificTool": [4],
  "specificToolInput": [Input]
}

InputToolValidationCreateInput

Description

Represents a InputToolValidationCreateInput

Fields
Input FieldDescription
inclusive - Boolean
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
specificTool - [ID]
Example
{
  "inclusive": true,
  "linkWithInputs": [4],
  "max": 987,
  "min": 987,
  "name": "abc123",
  "regex": "abc123",
  "specificTool": [4]
}

InputToolValidationUpdateInput

Description

Represents a InputToolValidationUpdateInput

Fields
Input FieldDescription
inclusive - Boolean
linkWithInputs - [ID]
max - Int
min - Int
name - String
regex - String
specificTool - [ID]
Example
{
  "inclusive": false,
  "linkWithInputs": ["4"],
  "max": 987,
  "min": 987,
  "name": "abc123",
  "regex": "abc123",
  "specificTool": ["4"]
}

InputToolValidationWhereInput

Description

Represents a Where input for: InputToolValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
linkWithInputs_all - [ID]Field includes all given values.
linkWithInputs_eq - [ID]Given value is equal to field
linkWithInputs_exists - Boolean
linkWithInputs_in - [ID]Field includes one of given value.
linkWithInputs_nin - [ID]Field does not include any of the given values.
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
regex_contains - StringField contains given value, case-insensitive
regex_ends_with - StringField ends with given value, case-insensitive
regex_eq - StringField is equal to given value
regex_exists - BooleanField is set and exists
regex_in - [String]Given value includes field
regex_ne - StringField is not equal to given value
regex_nin - [String]Given value does not includes field
regex_not_contains - StringField does not contains given value, case-insensitive
regex_not_ends_with - StringField does not end with given value, case-insensitive
regex_not_starts_with - StringField does not start with given value, case-insensitive
regex_starts_with - StringField starts with given value, case-insensitive
specificTool_all - [ID]Field includes all given values.
specificTool_eq - [ID]Given value is equal to field
specificTool_exists - Boolean
specificTool_in - [ID]Field includes one of given value.
specificTool_nin - [ID]Field does not include any of the given values.
Example
{
  "inclusive_eq": false,
  "inclusive_ne": false,
  "linkWithInputs_all": [4],
  "linkWithInputs_eq": [4],
  "linkWithInputs_exists": true,
  "linkWithInputs_in": [4],
  "linkWithInputs_nin": [4],
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 123,
  "max_in": [987],
  "max_lt": 123,
  "max_lte": 123,
  "max_ne": 987,
  "max_nin": [123],
  "min_eq": 987,
  "min_exists": true,
  "min_gt": 123,
  "min_gte": 123,
  "min_in": [987],
  "min_lt": 123,
  "min_lte": 987,
  "min_ne": 987,
  "min_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "regex_contains": "abc123",
  "regex_ends_with": "xyz789",
  "regex_eq": "abc123",
  "regex_exists": true,
  "regex_in": ["abc123"],
  "regex_ne": "xyz789",
  "regex_nin": ["abc123"],
  "regex_not_contains": "abc123",
  "regex_not_ends_with": "xyz789",
  "regex_not_starts_with": "xyz789",
  "regex_starts_with": "abc123",
  "specificTool_all": [4],
  "specificTool_eq": [4],
  "specificTool_exists": true,
  "specificTool_in": ["4"],
  "specificTool_nin": ["4"]
}

InputToolWhereInput

Description

Represents a Where input for: InputTool

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
setValueWithQRCode_eq - BooleanField is equal to given value
setValueWithQRCode_ne - BooleanField is not equal to given value
validations_every - InputToolValidationWhereInput
validations_exists - Boolean
validations_none - InputToolValidationWhereInput
validations_some - InputToolValidationWhereInput
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": false,
  "setValueWithQRCode_eq": true,
  "setValueWithQRCode_ne": true,
  "validations_every": InputToolValidationWhereInput,
  "validations_exists": false,
  "validations_none": InputToolValidationWhereInput,
  "validations_some": InputToolValidationWhereInput,
  "values_all": [4],
  "values_eq": [4],
  "values_exists": false,
  "values_in": ["4"],
  "values_nin": [4]
}

InputType

Values
Enum ValueDescription

date

datetime

element

file

instruction

labelValue

number

signature

site

string

table

tags

time

tool

Example
"date"

InputUpdateInput

Description

Represents a InputUpdateInput

Fields
Input FieldDescription
_id - ID
container - String
date - InputDateUpdateInput
datetime - InputDatetimeUpdateInput
description - StringThe description format is Markdown. To add files replace the url with(file_id)
element - InputElementUpdateInput
file - InputFileUpdateInput
instruction - InputInstructionUpdateInput
isMutable - Boolean
labelValue - InputLabelValueUpdateInput
name - String
note - InputNoteUpdateInput
number - InputNumberUpdateInput
order - Int
required - Boolean
signature - InputSignatureUpdateInput
site - InputSiteUpdateInput
string - InputStringUpdateInput
table - InputTableUpdateInput
tag - String
tags - InputTagUpdateInput
time - InputTimeUpdateInput
tool - InputToolUpdateInput
tooltip - String
type - InputType
Example
{
  "_id": 4,
  "container": "abc123",
  "date": InputDateUpdateInput,
  "datetime": InputDatetimeUpdateInput,
  "description": "abc123",
  "element": InputElementUpdateInput,
  "file": InputFileUpdateInput,
  "instruction": InputInstructionUpdateInput,
  "isMutable": true,
  "labelValue": InputLabelValueUpdateInput,
  "name": "abc123",
  "note": InputNoteUpdateInput,
  "number": InputNumberUpdateInput,
  "order": 123,
  "required": false,
  "signature": InputSignatureUpdateInput,
  "site": InputSiteUpdateInput,
  "string": InputStringUpdateInput,
  "table": InputTableUpdateInput,
  "tag": "abc123",
  "tags": InputTagUpdateInput,
  "time": InputTimeUpdateInput,
  "tool": InputToolUpdateInput,
  "tooltip": "abc123",
  "type": "date"
}

InputValue

InputValueUpdateInput

Fields
Input FieldDescription
_id - ID!ExecutionInput ID
date - [Date]
datetime - [DateTime]
element - [ID]
file - [ID]
labelValue - [ID]
number - [Float]
onResponsePath - [ID]On Response ID path
signature - [InputSignatureValueCreateInput]
site - [ID]
string - [String]
table - [InputTableValueCreateInput]
tags - [ElementTagCreateInput]
time - [Time]
tool - [ID]
Example
{
  "_id": 4,
  "date": ["2007-12-03"],
  "datetime": ["2007-12-03T10:15:30Z"],
  "element": [4],
  "file": ["4"],
  "labelValue": ["4"],
  "number": [123.45],
  "onResponsePath": ["4"],
  "signature": [InputSignatureValueCreateInput],
  "site": ["4"],
  "string": ["xyz789"],
  "table": [InputTableValueCreateInput],
  "tags": [ElementTagCreateInput],
  "time": ["10:15:30Z"],
  "tool": ["4"]
}

InputWhereInput

Description

Represents a Where input for: Input

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
container_contains - StringField contains given value, case-insensitive
container_ends_with - StringField ends with given value, case-insensitive
container_eq - StringField is equal to given value
container_exists - BooleanField is set and exists
container_in - [String]Given value includes field
container_ne - StringField is not equal to given value
container_nin - [String]Given value does not includes field
container_not_contains - StringField does not contains given value, case-insensitive
container_not_ends_with - StringField does not end with given value, case-insensitive
container_not_starts_with - StringField does not start with given value, case-insensitive
container_starts_with - StringField starts with given value, case-insensitive
date - InputDateWhereInput
datetime - InputDatetimeWhereInput
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
element - InputElementWhereInput
file - InputFileWhereInput
instruction - InputInstructionWhereInput
isMutable_eq - BooleanField is equal to given value
isMutable_ne - BooleanField is not equal to given value
labelValue - InputLabelValueWhereInput
log_every - InputLogWhereInput
log_exists - Boolean
log_none - InputLogWhereInput
log_some - InputLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
note - InputNoteWhereInput
number - InputNumberWhereInput
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
signature - InputSignatureWhereInput
site - InputSiteWhereInput
string - InputStringWhereInput
table - InputTableWhereInput
tag_contains - StringField contains given value, case-insensitive
tag_ends_with - StringField ends with given value, case-insensitive
tag_eq - StringField is equal to given value
tag_exists - BooleanField is set and exists
tag_in - [String]Given value includes field
tag_ne - StringField is not equal to given value
tag_nin - [String]Given value does not includes field
tag_not_contains - StringField does not contains given value, case-insensitive
tag_not_ends_with - StringField does not end with given value, case-insensitive
tag_not_starts_with - StringField does not start with given value, case-insensitive
tag_starts_with - StringField starts with given value, case-insensitive
tags - InputTagWhereInput
time - InputTimeWhereInput
tool - InputToolWhereInput
tooltip_contains - StringField contains given value, case-insensitive
tooltip_ends_with - StringField ends with given value, case-insensitive
tooltip_eq - StringField is equal to given value
tooltip_exists - BooleanField is set and exists
tooltip_in - [String]Given value includes field
tooltip_ne - StringField is not equal to given value
tooltip_nin - [String]Given value does not includes field
tooltip_not_contains - StringField does not contains given value, case-insensitive
tooltip_not_ends_with - StringField does not end with given value, case-insensitive
tooltip_not_starts_with - StringField does not start with given value, case-insensitive
tooltip_starts_with - StringField starts with given value, case-insensitive
type_eq - InputTypeField is equal to given value
type_exists - InputTypeField is set and exists
type_in - [InputType]Given value includes field
type_ne - InputTypeField is not equal to given value
type_nin - [InputType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "container_contains": "xyz789",
  "container_ends_with": "abc123",
  "container_eq": "abc123",
  "container_exists": false,
  "container_in": ["xyz789"],
  "container_ne": "abc123",
  "container_nin": ["abc123"],
  "container_not_contains": "xyz789",
  "container_not_ends_with": "xyz789",
  "container_not_starts_with": "abc123",
  "container_starts_with": "abc123",
  "date": InputDateWhereInput,
  "datetime": InputDatetimeWhereInput,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "element": InputElementWhereInput,
  "file": InputFileWhereInput,
  "instruction": InputInstructionWhereInput,
  "isMutable_eq": false,
  "isMutable_ne": false,
  "labelValue": InputLabelValueWhereInput,
  "log_every": InputLogWhereInput,
  "log_exists": false,
  "log_none": InputLogWhereInput,
  "log_some": InputLogWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "note": InputNoteWhereInput,
  "number": InputNumberWhereInput,
  "order_eq": 123,
  "order_exists": false,
  "order_gt": 123,
  "order_gte": 123,
  "order_in": [987],
  "order_lt": 123,
  "order_lte": 123,
  "order_ne": 123,
  "order_nin": [987],
  "required_eq": true,
  "required_ne": false,
  "signature": InputSignatureWhereInput,
  "site": InputSiteWhereInput,
  "string": InputStringWhereInput,
  "table": InputTableWhereInput,
  "tag_contains": "xyz789",
  "tag_ends_with": "xyz789",
  "tag_eq": "abc123",
  "tag_exists": true,
  "tag_in": ["xyz789"],
  "tag_ne": "xyz789",
  "tag_nin": ["xyz789"],
  "tag_not_contains": "abc123",
  "tag_not_ends_with": "xyz789",
  "tag_not_starts_with": "abc123",
  "tag_starts_with": "xyz789",
  "tags": InputTagWhereInput,
  "time": InputTimeWhereInput,
  "tool": InputToolWhereInput,
  "tooltip_contains": "abc123",
  "tooltip_ends_with": "xyz789",
  "tooltip_eq": "abc123",
  "tooltip_exists": false,
  "tooltip_in": ["xyz789"],
  "tooltip_ne": "abc123",
  "tooltip_nin": ["abc123"],
  "tooltip_not_contains": "abc123",
  "tooltip_not_ends_with": "xyz789",
  "tooltip_not_starts_with": "xyz789",
  "tooltip_starts_with": "abc123",
  "type_eq": "date",
  "type_exists": "date",
  "type_in": ["date"],
  "type_ne": "date",
  "type_nin": ["date"]
}

InputWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

InputsApprovalResponsibles

Fields
Input FieldDescription
accounts - [ID]
labelValues - [ID]
Example
{"accounts": [4], "labelValues": [4]}

Int

Description

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

Example
987

Invite

Description

Represents a Invite

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
extra - InviteExtra
lastSentAt - DateTime
protected - Boolean
system - Boolean
token - String
type - InviteType
updatedAt - DateTime
updatedBy - Account
updatedById - ID
validUntil - DateTime
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "extra": InviteExtra,
  "lastSentAt": "2007-12-03T10:15:30Z",
  "protected": true,
  "system": true,
  "token": "abc123",
  "type": "invite_user_to_application",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "validUntil": "2007-12-03T10:15:30Z"
}

InviteCreateInput

Description

Represents a InviteCreateInput

Fields
Input FieldDescription
extra - InviteExtraCreateInput
lastSentAt - DateTime
token - String
type - InviteType
validUntil - DateTime
Example
{
  "extra": InviteExtraCreateInput,
  "lastSentAt": "2007-12-03T10:15:30Z",
  "token": "xyz789",
  "type": "invite_user_to_application",
  "validUntil": "2007-12-03T10:15:30Z"
}

InviteEmailResponse

Fields
Field NameDescription
email - StringThe email address that was invited.
status - StringThe status of the email invitation.
Example
{
  "email": "xyz789",
  "status": "xyz789"
}

InviteExtra

Description

Represents a InviteExtra

Fields
Field NameDescription
authorizedSites - [Site!]!
authorizedSitesIds - [ID!]!
email - String
generatedPassword - String
name - String!
recoveryEmail - String
roles - [Role!]!
rolesIds - [ID!]!
username - String
Example
{
  "authorizedSites": [Site],
  "authorizedSitesIds": [4],
  "email": "xyz789",
  "generatedPassword": "abc123",
  "name": "xyz789",
  "recoveryEmail": "abc123",
  "roles": [Role],
  "rolesIds": [4],
  "username": "xyz789"
}

InviteExtraCreateInput

Description

Represents a InviteExtraCreateInput

Fields
Input FieldDescription
authorizedSites - [ID!]!
email - String
generatedPassword - String
name - String!
recoveryEmail - String
roles - [ID!]!
username - String
Example
{
  "authorizedSites": ["4"],
  "email": "abc123",
  "generatedPassword": "abc123",
  "name": "abc123",
  "recoveryEmail": "abc123",
  "roles": [4],
  "username": "xyz789"
}

InviteExtraUpdateInput

Description

Represents a InviteExtraUpdateInput

Fields
Input FieldDescription
authorizedSites - [ID]
email - String
generatedPassword - String
name - String
recoveryEmail - String
roles - [ID]
username - String
Example
{
  "authorizedSites": ["4"],
  "email": "xyz789",
  "generatedPassword": "xyz789",
  "name": "xyz789",
  "recoveryEmail": "xyz789",
  "roles": ["4"],
  "username": "xyz789"
}

InviteExtraWhereInput

Description

Represents a Where input for: InviteExtra

Fields
Input FieldDescription
authorizedSites_all - [ID]Field includes all given values.
authorizedSites_eq - [ID]Given value is equal to field
authorizedSites_exists - Boolean
authorizedSites_in - [ID]Field includes one of given value.
authorizedSites_nin - [ID]Field does not include any of the given values.
email_contains - StringField contains given value, case-insensitive
email_ends_with - StringField ends with given value, case-insensitive
email_eq - StringField is equal to given value
email_exists - BooleanField is set and exists
email_in - [String]Given value includes field
email_ne - StringField is not equal to given value
email_nin - [String]Given value does not includes field
email_not_contains - StringField does not contains given value, case-insensitive
email_not_ends_with - StringField does not end with given value, case-insensitive
email_not_starts_with - StringField does not start with given value, case-insensitive
email_starts_with - StringField starts with given value, case-insensitive
generatedPassword_contains - StringField contains given value, case-insensitive
generatedPassword_ends_with - StringField ends with given value, case-insensitive
generatedPassword_eq - StringField is equal to given value
generatedPassword_exists - BooleanField is set and exists
generatedPassword_in - [String]Given value includes field
generatedPassword_ne - StringField is not equal to given value
generatedPassword_nin - [String]Given value does not includes field
generatedPassword_not_contains - StringField does not contains given value, case-insensitive
generatedPassword_not_ends_with - StringField does not end with given value, case-insensitive
generatedPassword_not_starts_with - StringField does not start with given value, case-insensitive
generatedPassword_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
recoveryEmail_contains - StringField contains given value, case-insensitive
recoveryEmail_ends_with - StringField ends with given value, case-insensitive
recoveryEmail_eq - StringField is equal to given value
recoveryEmail_exists - BooleanField is set and exists
recoveryEmail_in - [String]Given value includes field
recoveryEmail_ne - StringField is not equal to given value
recoveryEmail_nin - [String]Given value does not includes field
recoveryEmail_not_contains - StringField does not contains given value, case-insensitive
recoveryEmail_not_ends_with - StringField does not end with given value, case-insensitive
recoveryEmail_not_starts_with - StringField does not start with given value, case-insensitive
recoveryEmail_starts_with - StringField starts with given value, case-insensitive
roles_all - [ID]Field includes all given values.
roles_eq - [ID]Given value is equal to field
roles_exists - Boolean
roles_in - [ID]Field includes one of given value.
roles_nin - [ID]Field does not include any of the given values.
username_contains - StringField contains given value, case-insensitive
username_ends_with - StringField ends with given value, case-insensitive
username_eq - StringField is equal to given value
username_exists - BooleanField is set and exists
username_in - [String]Given value includes field
username_ne - StringField is not equal to given value
username_nin - [String]Given value does not includes field
username_not_contains - StringField does not contains given value, case-insensitive
username_not_ends_with - StringField does not end with given value, case-insensitive
username_not_starts_with - StringField does not start with given value, case-insensitive
username_starts_with - StringField starts with given value, case-insensitive
Example
{
  "authorizedSites_all": [4],
  "authorizedSites_eq": ["4"],
  "authorizedSites_exists": false,
  "authorizedSites_in": ["4"],
  "authorizedSites_nin": [4],
  "email_contains": "xyz789",
  "email_ends_with": "xyz789",
  "email_eq": "abc123",
  "email_exists": false,
  "email_in": ["abc123"],
  "email_ne": "xyz789",
  "email_nin": ["abc123"],
  "email_not_contains": "xyz789",
  "email_not_ends_with": "abc123",
  "email_not_starts_with": "xyz789",
  "email_starts_with": "abc123",
  "generatedPassword_contains": "abc123",
  "generatedPassword_ends_with": "abc123",
  "generatedPassword_eq": "xyz789",
  "generatedPassword_exists": false,
  "generatedPassword_in": ["xyz789"],
  "generatedPassword_ne": "xyz789",
  "generatedPassword_nin": ["abc123"],
  "generatedPassword_not_contains": "abc123",
  "generatedPassword_not_ends_with": "abc123",
  "generatedPassword_not_starts_with": "xyz789",
  "generatedPassword_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "recoveryEmail_contains": "abc123",
  "recoveryEmail_ends_with": "xyz789",
  "recoveryEmail_eq": "abc123",
  "recoveryEmail_exists": true,
  "recoveryEmail_in": ["abc123"],
  "recoveryEmail_ne": "xyz789",
  "recoveryEmail_nin": ["xyz789"],
  "recoveryEmail_not_contains": "abc123",
  "recoveryEmail_not_ends_with": "abc123",
  "recoveryEmail_not_starts_with": "xyz789",
  "recoveryEmail_starts_with": "xyz789",
  "roles_all": [4],
  "roles_eq": ["4"],
  "roles_exists": false,
  "roles_in": ["4"],
  "roles_nin": [4],
  "username_contains": "xyz789",
  "username_ends_with": "abc123",
  "username_eq": "abc123",
  "username_exists": false,
  "username_in": ["abc123"],
  "username_ne": "xyz789",
  "username_nin": ["xyz789"],
  "username_not_contains": "xyz789",
  "username_not_ends_with": "xyz789",
  "username_not_starts_with": "xyz789",
  "username_starts_with": "xyz789"
}

InviteOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

extra_email_ASC

extra_email_DESC

extra_generatedPassword_ASC

extra_generatedPassword_DESC

extra_name_ASC

extra_name_DESC

extra_recoveryEmail_ASC

extra_recoveryEmail_DESC

extra_username_ASC

extra_username_DESC

lastSentAt_ASC

lastSentAt_DESC

token_ASC

token_DESC

type_ASC

type_DESC

updatedAt_ASC

updatedAt_DESC

validUntil_ASC

validUntil_DESC

Example
"_id_ASC"

InviteResponse

Fields
Field NameDescription
emailResponses - [InviteEmailResponse]List of email invitation responses.
smsResponses - [InviteSMSResponse]List of SMS invitation responses.
Example
{
  "emailResponses": [InviteEmailResponse],
  "smsResponses": [InviteSMSResponse]
}

InviteSMSResponse

Fields
Field NameDescription
number - StringThe phone number that was invited.
status - StringThe status of the SMS invitation.
Example
{
  "number": "abc123",
  "status": "xyz789"
}

InviteType

Values
Enum ValueDescription

invite_user_to_application

Example
"invite_user_to_application"

InviteUpdateInput

Description

Represents a InviteUpdateInput

Fields
Input FieldDescription
extra - InviteExtraUpdateInput
lastSentAt - DateTime
token - String
type - InviteType
validUntil - DateTime
Example
{
  "extra": InviteExtraUpdateInput,
  "lastSentAt": "2007-12-03T10:15:30Z",
  "token": "xyz789",
  "type": "invite_user_to_application",
  "validUntil": "2007-12-03T10:15:30Z"
}

InviteWhereInput

Description

Represents a Where input for: Invite

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
email_contains - String
extra - InviteExtraWhereInput
lastSentAt_eq - DateTimeField is equal to given value
lastSentAt_exists - BooleanField is set and exists
lastSentAt_gt - DateTimeField is greater than given value
lastSentAt_gte - DateTimeField is greater or equal than given value
lastSentAt_in - [DateTime]Given value includes field
lastSentAt_lt - DateTimeField is lower than given value
lastSentAt_lte - DateTimeField is lower or equal than given value
lastSentAt_ne - DateTimeField is not equal to given value
lastSentAt_nin - [DateTime]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
token_contains - StringField contains given value, case-insensitive
token_ends_with - StringField ends with given value, case-insensitive
token_eq - StringField is equal to given value
token_exists - BooleanField is set and exists
token_in - [String]Given value includes field
token_ne - StringField is not equal to given value
token_nin - [String]Given value does not includes field
token_not_contains - StringField does not contains given value, case-insensitive
token_not_ends_with - StringField does not end with given value, case-insensitive
token_not_starts_with - StringField does not start with given value, case-insensitive
token_starts_with - StringField starts with given value, case-insensitive
type_eq - InviteTypeField is equal to given value
type_exists - InviteTypeField is set and exists
type_in - [InviteType]Given value includes field
type_ne - InviteTypeField is not equal to given value
type_nin - [InviteType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
validUntil_eq - DateTimeField is equal to given value
validUntil_exists - BooleanField is set and exists
validUntil_gt - DateTimeField is greater than given value
validUntil_gte - DateTimeField is greater or equal than given value
validUntil_in - [DateTime]Given value includes field
validUntil_lt - DateTimeField is lower than given value
validUntil_lte - DateTimeField is lower or equal than given value
validUntil_ne - DateTimeField is not equal to given value
validUntil_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "email_contains": "abc123",
  "extra": InviteExtraWhereInput,
  "lastSentAt_eq": "2007-12-03T10:15:30Z",
  "lastSentAt_exists": true,
  "lastSentAt_gt": "2007-12-03T10:15:30Z",
  "lastSentAt_gte": "2007-12-03T10:15:30Z",
  "lastSentAt_in": ["2007-12-03T10:15:30Z"],
  "lastSentAt_lt": "2007-12-03T10:15:30Z",
  "lastSentAt_lte": "2007-12-03T10:15:30Z",
  "lastSentAt_ne": "2007-12-03T10:15:30Z",
  "lastSentAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": false,
  "token_contains": "xyz789",
  "token_ends_with": "xyz789",
  "token_eq": "abc123",
  "token_exists": false,
  "token_in": ["abc123"],
  "token_ne": "xyz789",
  "token_nin": ["abc123"],
  "token_not_contains": "abc123",
  "token_not_ends_with": "xyz789",
  "token_not_starts_with": "xyz789",
  "token_starts_with": "xyz789",
  "type_eq": "invite_user_to_application",
  "type_exists": "invite_user_to_application",
  "type_in": ["invite_user_to_application"],
  "type_ne": "invite_user_to_application",
  "type_nin": ["invite_user_to_application"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"],
  "validUntil_eq": "2007-12-03T10:15:30Z",
  "validUntil_exists": true,
  "validUntil_gt": "2007-12-03T10:15:30Z",
  "validUntil_gte": "2007-12-03T10:15:30Z",
  "validUntil_in": ["2007-12-03T10:15:30Z"],
  "validUntil_lt": "2007-12-03T10:15:30Z",
  "validUntil_lte": "2007-12-03T10:15:30Z",
  "validUntil_ne": "2007-12-03T10:15:30Z",
  "validUntil_nin": ["2007-12-03T10:15:30Z"]
}

InviteWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

IssueApprovalInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
executionDate - DateTime
observation - String
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "abc123"
}

IssueCatalog

Description

Represents a IssueCatalog

Fields
Field NameDescription
_id - ID
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogApproval
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedSkills - [IssueCatalogAssignedSkill]
conflictHandler - IssueCatalogConflictHandler!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringIssue Name
element - Element
elementId - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IssueCatalogFolderIssueCatalog Folder
folderId - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [Input]
isActive - Boolean
labelValues - [LabelValue]
labelValuesIds - [ID]
materialLegendAndComments - Boolean
name - String!Issue Name
needsApproval - Boolean
paperForm - IssueCatalogPaperForm
protected - Boolean
remarksOnTasks - Boolean
report - IssueCatalogReport
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogScheduler]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - Site
siteId - ID
stateMachine - StateMachineThis Issue State-Machine
stateMachineId - IDThis Issue State-Machine
system - Boolean
taskMappings - [TaskMapping]
tasksFallbackStateMachine - StateMachine!This Issue task fallback State-Machine
tasksFallbackStateMachineId - ID!This Issue task fallback State-Machine
template - IssueTemplate!If this Issue Template
templateId - ID!If this Issue Template
toolLegendAndComments - Boolean
totalExecutionInstances - Int
updateLog - [IssueCatalogUpdateLog]
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "acknowledgeRequired": true,
  "allowTracking": false,
  "approval": IssueCatalogApproval,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedSkills": [IssueCatalogAssignedSkill],
  "conflictHandler": "keepBoth",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "element": Element,
  "elementId": "4",
  "emailsToSendReport": ["xyz789"],
  "filterTasksByLabels": true,
  "folder": IssueCatalogFolder,
  "folderId": 4,
  "glarPrefix": "xyz789",
  "inputs": [Input],
  "isActive": false,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "materialLegendAndComments": true,
  "name": "xyz789",
  "needsApproval": false,
  "paperForm": IssueCatalogPaperForm,
  "protected": false,
  "remarksOnTasks": false,
  "report": IssueCatalogReport,
  "requestDescription": true,
  "scheduleTasks": false,
  "scheduler": [IssueCatalogScheduler],
  "scoreInputs": true,
  "sequential": false,
  "site": Site,
  "siteId": 4,
  "stateMachine": StateMachine,
  "stateMachineId": "4",
  "system": true,
  "taskMappings": [TaskMapping],
  "tasksFallbackStateMachine": StateMachine,
  "tasksFallbackStateMachineId": 4,
  "template": IssueTemplate,
  "templateId": 4,
  "toolLegendAndComments": true,
  "totalExecutionInstances": 987,
  "updateLog": [IssueCatalogUpdateLog],
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

IssueCatalogApproval

Description

Represents a IssueCatalogApproval

Fields
Field NameDescription
_id - ID
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
approvedBy - [Account]
approvedByIds - [ID]
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogApprovalLevel]
log - [IssueCatalogApprovalLog]
Example
{
  "_id": 4,
  "approvalsCount": 987,
  "approvalsNeeded": 987,
  "approved": false,
  "approvedBy": [Account],
  "approvedByIds": ["4"],
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": true,
  "levels": [IssueCatalogApprovalLevel],
  "log": [IssueCatalogApprovalLog]
}

IssueCatalogApprovalCreateInput

Description

Represents a IssueCatalogApprovalCreateInput

Fields
Input FieldDescription
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogApprovalLevelCreateInput]
Example
{
  "approvalsCount": 123,
  "approvalsNeeded": 987,
  "approved": true,
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": false,
  "levels": [IssueCatalogApprovalLevelCreateInput]
}

IssueCatalogApprovalLevel

Description

Represents a IssueCatalogApprovalLevel

Fields
Field NameDescription
_id - ID
accounts - [Account]
accountsIds - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogApprovalLevelLabelValue]
Example
{
  "_id": 4,
  "accounts": [Account],
  "accountsIds": ["4"],
  "approved": false,
  "approvedOnce": false,
  "labelValues": [IssueCatalogApprovalLevelLabelValue]
}

IssueCatalogApprovalLevelCreateInput

Description

Represents a IssueCatalogApprovalLevelCreateInput

Fields
Input FieldDescription
accounts - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogApprovalLevelLabelValueCreateInput]
Example
{
  "accounts": ["4"],
  "approved": false,
  "approvedOnce": true,
  "labelValues": [
    IssueCatalogApprovalLevelLabelValueCreateInput
  ]
}

IssueCatalogApprovalLevelLabelValue

Description

Represents a IssueCatalogApprovalLevelLabelValue

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!
labelValueId - ID!
requiredApprovals - Int
Example
{
  "_id": 4,
  "labelValue": LabelValue,
  "labelValueId": "4",
  "requiredApprovals": 987
}

IssueCatalogApprovalLevelLabelValueCreateInput

Description

Represents a IssueCatalogApprovalLevelLabelValueCreateInput

Fields
Input FieldDescription
labelValue - ID!
requiredApprovals - Int
Example
{
  "labelValue": "4",
  "requiredApprovals": 123
}

IssueCatalogApprovalLevelLabelValueUpdateInput

Description

Represents a IssueCatalogApprovalLevelLabelValueUpdateInput

Fields
Input FieldDescription
labelValue - ID
requiredApprovals - Int
Example
{
  "labelValue": "4",
  "requiredApprovals": 987
}

IssueCatalogApprovalLevelLabelValueWhereInput

Description

Represents a Where input for: IssueCatalogApprovalLevelLabelValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
requiredApprovals_eq - IntField is equal to given value
requiredApprovals_exists - BooleanField is set and exists
requiredApprovals_gt - IntField is greater than given value
requiredApprovals_gte - IntField is greater or equal than given value
requiredApprovals_in - [Int]Given value includes field
requiredApprovals_lt - IntField is lower than given value
requiredApprovals_lte - IntField is lower or equal than given value
requiredApprovals_ne - IntField is not equal to given value
requiredApprovals_nin - [Int]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": [4],
  "labelValue_ne": "4",
  "labelValue_nin": ["4"],
  "requiredApprovals_eq": 987,
  "requiredApprovals_exists": false,
  "requiredApprovals_gt": 123,
  "requiredApprovals_gte": 987,
  "requiredApprovals_in": [123],
  "requiredApprovals_lt": 987,
  "requiredApprovals_lte": 987,
  "requiredApprovals_ne": 123,
  "requiredApprovals_nin": [987]
}

IssueCatalogApprovalLevelUpdateInput

Description

Represents a IssueCatalogApprovalLevelUpdateInput

Fields
Input FieldDescription
accounts - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogApprovalLevelLabelValueUpdateInput]
Example
{
  "accounts": [4],
  "approved": false,
  "approvedOnce": false,
  "labelValues": [
    IssueCatalogApprovalLevelLabelValueUpdateInput
  ]
}

IssueCatalogApprovalLevelWhereInput

Description

Represents a Where input for: IssueCatalogApprovalLevel

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
accounts_all - [ID]Field includes all given values.
accounts_eq - [ID]Given value is equal to field
accounts_exists - Boolean
accounts_in - [ID]Field includes one of given value.
accounts_nin - [ID]Field does not include any of the given values.
approvedOnce_eq - BooleanField is equal to given value
approvedOnce_ne - BooleanField is not equal to given value
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
labelValues_every - IssueCatalogApprovalLevelLabelValueWhereInput
labelValues_exists - Boolean
labelValues_none - IssueCatalogApprovalLevelLabelValueWhereInput
labelValues_some - IssueCatalogApprovalLevelLabelValueWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "accounts_all": [4],
  "accounts_eq": ["4"],
  "accounts_exists": true,
  "accounts_in": [4],
  "accounts_nin": ["4"],
  "approvedOnce_eq": true,
  "approvedOnce_ne": false,
  "approved_eq": false,
  "approved_ne": false,
  "labelValues_every": IssueCatalogApprovalLevelLabelValueWhereInput,
  "labelValues_exists": true,
  "labelValues_none": IssueCatalogApprovalLevelLabelValueWhereInput,
  "labelValues_some": IssueCatalogApprovalLevelLabelValueWhereInput
}

IssueCatalogApprovalLog

Description

Represents a IssueCatalogApprovalLog

Fields
Field NameDescription
_id - ID
by - Account!
byId - ID!
createdAt - DateTime
executionDate - DateTime!Proposed execution date
observation - String
type - IssueCatalogApprovalLogType!
updatedAt - DateTime
Example
{
  "_id": 4,
  "by": Account,
  "byId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "xyz789",
  "type": "APPROVE",
  "updatedAt": "2007-12-03T10:15:30Z"
}

IssueCatalogApprovalLogType

Values
Enum ValueDescription

APPROVE

CHANGE

REJECT

Example
"APPROVE"

IssueCatalogApprovalLogWhereInput

Description

Represents a Where input for: IssueCatalogApprovalLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
observation_contains - StringField contains given value, case-insensitive
observation_ends_with - StringField ends with given value, case-insensitive
observation_eq - StringField is equal to given value
observation_exists - BooleanField is set and exists
observation_in - [String]Given value includes field
observation_ne - StringField is not equal to given value
observation_nin - [String]Given value does not includes field
observation_not_contains - StringField does not contains given value, case-insensitive
observation_not_ends_with - StringField does not end with given value, case-insensitive
observation_not_starts_with - StringField does not start with given value, case-insensitive
observation_starts_with - StringField starts with given value, case-insensitive
type_eq - IssueCatalogApprovalLogTypeField is equal to given value
type_exists - IssueCatalogApprovalLogTypeField is set and exists
type_in - [IssueCatalogApprovalLogType]Given value includes field
type_ne - IssueCatalogApprovalLogTypeField is not equal to given value
type_nin - [IssueCatalogApprovalLogType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_all": [4],
  "by_eq": "4",
  "by_exists": false,
  "by_in": [4],
  "by_ne": 4,
  "by_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": false,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "observation_contains": "abc123",
  "observation_ends_with": "abc123",
  "observation_eq": "abc123",
  "observation_exists": true,
  "observation_in": ["abc123"],
  "observation_ne": "xyz789",
  "observation_nin": ["abc123"],
  "observation_not_contains": "abc123",
  "observation_not_ends_with": "xyz789",
  "observation_not_starts_with": "abc123",
  "observation_starts_with": "abc123",
  "type_eq": "APPROVE",
  "type_exists": "APPROVE",
  "type_in": ["APPROVE"],
  "type_ne": "APPROVE",
  "type_nin": ["APPROVE"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"]
}

IssueCatalogApprovalUpdateInput

Description

Represents a IssueCatalogApprovalUpdateInput

Fields
Input FieldDescription
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogApprovalLevelUpdateInput]
Example
{
  "approvalsCount": 987,
  "approvalsNeeded": 987,
  "approved": false,
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": true,
  "levels": [IssueCatalogApprovalLevelUpdateInput]
}

IssueCatalogApprovalWhereInput

Description

Represents a Where input for: IssueCatalogApproval

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
approvalsCount_eq - IntField is equal to given value
approvalsCount_exists - BooleanField is set and exists
approvalsCount_gt - IntField is greater than given value
approvalsCount_gte - IntField is greater or equal than given value
approvalsCount_in - [Int]Given value includes field
approvalsCount_lt - IntField is lower than given value
approvalsCount_lte - IntField is lower or equal than given value
approvalsCount_ne - IntField is not equal to given value
approvalsCount_nin - [Int]Given value does not includes field
approvalsNeeded_eq - IntField is equal to given value
approvalsNeeded_exists - BooleanField is set and exists
approvalsNeeded_gt - IntField is greater than given value
approvalsNeeded_gte - IntField is greater or equal than given value
approvalsNeeded_in - [Int]Given value includes field
approvalsNeeded_lt - IntField is lower than given value
approvalsNeeded_lte - IntField is lower or equal than given value
approvalsNeeded_ne - IntField is not equal to given value
approvalsNeeded_nin - [Int]Given value does not includes field
approvedBy_all - [ID]Field includes all given values.
approvedBy_eq - [ID]Given value is equal to field
approvedBy_exists - Boolean
approvedBy_in - [ID]Field includes one of given value.
approvedBy_nin - [ID]Field does not include any of the given values.
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
followHierarchy_eq - BooleanField is equal to given value
followHierarchy_ne - BooleanField is not equal to given value
levels_every - IssueCatalogApprovalLevelWhereInput
levels_exists - Boolean
levels_none - IssueCatalogApprovalLevelWhereInput
levels_some - IssueCatalogApprovalLevelWhereInput
log_every - IssueCatalogApprovalLogWhereInput
log_exists - Boolean
log_none - IssueCatalogApprovalLogWhereInput
log_some - IssueCatalogApprovalLogWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "approvalsCount_eq": 123,
  "approvalsCount_exists": false,
  "approvalsCount_gt": 987,
  "approvalsCount_gte": 987,
  "approvalsCount_in": [987],
  "approvalsCount_lt": 987,
  "approvalsCount_lte": 123,
  "approvalsCount_ne": 987,
  "approvalsCount_nin": [987],
  "approvalsNeeded_eq": 123,
  "approvalsNeeded_exists": false,
  "approvalsNeeded_gt": 987,
  "approvalsNeeded_gte": 123,
  "approvalsNeeded_in": [123],
  "approvalsNeeded_lt": 987,
  "approvalsNeeded_lte": 123,
  "approvalsNeeded_ne": 987,
  "approvalsNeeded_nin": [987],
  "approvedBy_all": [4],
  "approvedBy_eq": [4],
  "approvedBy_exists": false,
  "approvedBy_in": ["4"],
  "approvedBy_nin": [4],
  "approved_eq": true,
  "approved_ne": false,
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": true,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "followHierarchy_eq": true,
  "followHierarchy_ne": true,
  "levels_every": IssueCatalogApprovalLevelWhereInput,
  "levels_exists": true,
  "levels_none": IssueCatalogApprovalLevelWhereInput,
  "levels_some": IssueCatalogApprovalLevelWhereInput,
  "log_every": IssueCatalogApprovalLogWhereInput,
  "log_exists": false,
  "log_none": IssueCatalogApprovalLogWhereInput,
  "log_some": IssueCatalogApprovalLogWhereInput
}

IssueCatalogAssignedSkill

Description

Represents a IssueCatalogAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "abc123",
  "skillname": "xyz789"
}

IssueCatalogAssignedSkillCreateInput

Description

Represents a IssueCatalogAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "abc123",
  "skillname": "abc123"
}

IssueCatalogAssignedSkillUpdateInput

Description

Represents a IssueCatalogAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "xyz789"
}

IssueCatalogAssignedSkillWhereInput

Description

Represents a Where input for: IssueCatalogAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "abc123",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["abc123"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": ["4"],
  "id_eq": 4,
  "id_exists": false,
  "id_in": ["4"],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "abc123",
  "level_eq": "abc123",
  "level_exists": true,
  "level_in": ["xyz789"],
  "level_ne": "xyz789",
  "level_nin": ["abc123"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "abc123",
  "level_starts_with": "abc123",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "xyz789",
  "skillname_eq": "xyz789",
  "skillname_exists": true,
  "skillname_in": ["xyz789"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "xyz789",
  "skillname_not_ends_with": "abc123",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "abc123"
}

IssueCatalogConflictHandler

Values
Enum ValueDescription

keepBoth

keepNew

keepOld

Example
"keepBoth"

IssueCatalogCreateInput

Description

Represents a IssueCatalogCreateInput

Fields
Input FieldDescription
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogApprovalCreateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogAssignedSkillCreateInput]
conflictHandler - IssueCatalogConflictHandler!
description - StringIssue Name
element - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [InputCreateInput]
isActive - Boolean
labelValues - [ID]
materialLegendAndComments - Boolean
name - String!Issue Name
paperForm - IssueCatalogPaperFormCreateInput
remarksOnTasks - Boolean
report - IssueCatalogReportCreateInput
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogSchedulerCreateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - ID
stateMachine - IDThis Issue State-Machine
tasksFallbackStateMachine - ID!This Issue task fallback State-Machine
template - ID!If this Issue Template
toolLegendAndComments - Boolean
Example
{
  "acknowledgeRequired": true,
  "allowTracking": false,
  "approval": IssueCatalogApprovalCreateInput,
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "assignedSkills": [
    IssueCatalogAssignedSkillCreateInput
  ],
  "conflictHandler": "keepBoth",
  "description": "xyz789",
  "element": 4,
  "emailsToSendReport": ["abc123"],
  "filterTasksByLabels": false,
  "folder": "4",
  "glarPrefix": "xyz789",
  "inputs": [InputCreateInput],
  "isActive": false,
  "labelValues": ["4"],
  "materialLegendAndComments": true,
  "name": "xyz789",
  "paperForm": IssueCatalogPaperFormCreateInput,
  "remarksOnTasks": true,
  "report": IssueCatalogReportCreateInput,
  "requestDescription": true,
  "scheduleTasks": false,
  "scheduler": [IssueCatalogSchedulerCreateInput],
  "scoreInputs": false,
  "sequential": false,
  "site": 4,
  "stateMachine": 4,
  "tasksFallbackStateMachine": 4,
  "template": 4,
  "toolLegendAndComments": true
}

IssueCatalogDistinctValues

Fields
Field NameDescription
author - [Account]
element - [Element]
labels - [LabelValue]
name - [String]
site - [Site]
updateLog - [Account]
Example
{
  "author": [Account],
  "element": [Element],
  "labels": [LabelValue],
  "name": ["abc123"],
  "site": [Site],
  "updateLog": [Account]
}

IssueCatalogDraft

Description

Represents a IssueCatalogDraft

Fields
Field NameDescription
_id - ID
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogDraftApproval
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedSkills - [IssueCatalogDraftAssignedSkill]
conflictHandler - IssueCatalogDraftConflictHandler!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringIssue Name
element - Element
elementId - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IssueCatalogFolderIssueCatalog Folder
folderId - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [Input]
isActive - Boolean
labelValues - [LabelValue]
labelValuesIds - [ID]
materialLegendAndComments - Boolean
name - String!Issue Name
needsApproval - Boolean
paperForm - IssueCatalogDraftPaperForm
protected - Boolean
remarksOnTasks - Boolean
report - IssueCatalogDraftReport
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogDraftScheduler]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - Site
siteId - ID
stateMachine - StateMachineThis Issue State-Machine
stateMachineId - IDThis Issue State-Machine
system - Boolean
taskMappings - [IssueCatalogDraftTaskMapping]
tasksFallbackStateMachine - StateMachineThis Issue task fallback State-Machine
tasksFallbackStateMachineId - IDThis Issue task fallback State-Machine
template - IssueTemplateIf this Issue Template
templateId - IDIf this Issue Template
toolLegendAndComments - Boolean
updateCatalog - IssueCatalogIssueCatalog to update
updateCatalogId - IDIssueCatalog to update
updateLog - [IssueCatalogDraftUpdateLog]
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "acknowledgeRequired": false,
  "allowTracking": false,
  "approval": IssueCatalogDraftApproval,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "assignedSkills": [IssueCatalogDraftAssignedSkill],
  "conflictHandler": "keepBoth",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "element": Element,
  "elementId": "4",
  "emailsToSendReport": ["abc123"],
  "filterTasksByLabels": false,
  "folder": IssueCatalogFolder,
  "folderId": "4",
  "glarPrefix": "abc123",
  "inputs": [Input],
  "isActive": false,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "materialLegendAndComments": false,
  "name": "abc123",
  "needsApproval": true,
  "paperForm": IssueCatalogDraftPaperForm,
  "protected": false,
  "remarksOnTasks": false,
  "report": IssueCatalogDraftReport,
  "requestDescription": true,
  "scheduleTasks": true,
  "scheduler": [IssueCatalogDraftScheduler],
  "scoreInputs": false,
  "sequential": false,
  "site": Site,
  "siteId": "4",
  "stateMachine": StateMachine,
  "stateMachineId": "4",
  "system": true,
  "taskMappings": [IssueCatalogDraftTaskMapping],
  "tasksFallbackStateMachine": StateMachine,
  "tasksFallbackStateMachineId": "4",
  "template": IssueTemplate,
  "templateId": "4",
  "toolLegendAndComments": true,
  "updateCatalog": IssueCatalog,
  "updateCatalogId": "4",
  "updateLog": [IssueCatalogDraftUpdateLog],
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

IssueCatalogDraftApproval

Description

Represents a IssueCatalogDraftApproval

Fields
Field NameDescription
_id - ID
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
approvedBy - [Account]
approvedByIds - [ID]
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogDraftApprovalLevel]
log - [IssueCatalogDraftApprovalLog]
Example
{
  "_id": 4,
  "approvalsCount": 987,
  "approvalsNeeded": 123,
  "approved": false,
  "approvedBy": [Account],
  "approvedByIds": [4],
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": true,
  "levels": [IssueCatalogDraftApprovalLevel],
  "log": [IssueCatalogDraftApprovalLog]
}

IssueCatalogDraftApprovalCreateInput

Description

Represents a IssueCatalogDraftApprovalCreateInput

Fields
Input FieldDescription
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogDraftApprovalLevelCreateInput]
Example
{
  "approvalsCount": 123,
  "approvalsNeeded": 987,
  "approved": true,
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": true,
  "levels": [IssueCatalogDraftApprovalLevelCreateInput]
}

IssueCatalogDraftApprovalLevel

Description

Represents a IssueCatalogDraftApprovalLevel

Fields
Field NameDescription
_id - ID
accounts - [Account]
accountsIds - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogDraftApprovalLevelLabelValue]
Example
{
  "_id": "4",
  "accounts": [Account],
  "accountsIds": [4],
  "approved": true,
  "approvedOnce": true,
  "labelValues": [
    IssueCatalogDraftApprovalLevelLabelValue
  ]
}

IssueCatalogDraftApprovalLevelCreateInput

Description

Represents a IssueCatalogDraftApprovalLevelCreateInput

Fields
Input FieldDescription
accounts - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogDraftApprovalLevelLabelValueCreateInput]
Example
{
  "accounts": ["4"],
  "approved": false,
  "approvedOnce": false,
  "labelValues": [
    IssueCatalogDraftApprovalLevelLabelValueCreateInput
  ]
}

IssueCatalogDraftApprovalLevelLabelValue

Description

Represents a IssueCatalogDraftApprovalLevelLabelValue

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!
labelValueId - ID!
requiredApprovals - Int
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": 4,
  "requiredApprovals": 123
}

IssueCatalogDraftApprovalLevelLabelValueCreateInput

Description

Represents a IssueCatalogDraftApprovalLevelLabelValueCreateInput

Fields
Input FieldDescription
labelValue - ID!
requiredApprovals - Int
Example
{
  "labelValue": "4",
  "requiredApprovals": 987
}

IssueCatalogDraftApprovalLevelLabelValueUpdateInput

Description

Represents a IssueCatalogDraftApprovalLevelLabelValueUpdateInput

Fields
Input FieldDescription
labelValue - ID
requiredApprovals - Int
Example
{"labelValue": 4, "requiredApprovals": 123}

IssueCatalogDraftApprovalLevelLabelValueWhereInput

Description

Represents a Where input for: IssueCatalogDraftApprovalLevelLabelValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
requiredApprovals_eq - IntField is equal to given value
requiredApprovals_exists - BooleanField is set and exists
requiredApprovals_gt - IntField is greater than given value
requiredApprovals_gte - IntField is greater or equal than given value
requiredApprovals_in - [Int]Given value includes field
requiredApprovals_lt - IntField is lower than given value
requiredApprovals_lte - IntField is lower or equal than given value
requiredApprovals_ne - IntField is not equal to given value
requiredApprovals_nin - [Int]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": [4],
  "labelValue_ne": 4,
  "labelValue_nin": ["4"],
  "requiredApprovals_eq": 987,
  "requiredApprovals_exists": false,
  "requiredApprovals_gt": 987,
  "requiredApprovals_gte": 987,
  "requiredApprovals_in": [987],
  "requiredApprovals_lt": 123,
  "requiredApprovals_lte": 123,
  "requiredApprovals_ne": 987,
  "requiredApprovals_nin": [987]
}

IssueCatalogDraftApprovalLevelUpdateInput

Description

Represents a IssueCatalogDraftApprovalLevelUpdateInput

Fields
Input FieldDescription
accounts - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueCatalogDraftApprovalLevelLabelValueUpdateInput]
Example
{
  "accounts": [4],
  "approved": true,
  "approvedOnce": false,
  "labelValues": [
    IssueCatalogDraftApprovalLevelLabelValueUpdateInput
  ]
}

IssueCatalogDraftApprovalLevelWhereInput

Description

Represents a Where input for: IssueCatalogDraftApprovalLevel

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
accounts_all - [ID]Field includes all given values.
accounts_eq - [ID]Given value is equal to field
accounts_exists - Boolean
accounts_in - [ID]Field includes one of given value.
accounts_nin - [ID]Field does not include any of the given values.
approvedOnce_eq - BooleanField is equal to given value
approvedOnce_ne - BooleanField is not equal to given value
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
labelValues_every - IssueCatalogDraftApprovalLevelLabelValueWhereInput
labelValues_exists - Boolean
labelValues_none - IssueCatalogDraftApprovalLevelLabelValueWhereInput
labelValues_some - IssueCatalogDraftApprovalLevelLabelValueWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "accounts_all": [4],
  "accounts_eq": [4],
  "accounts_exists": true,
  "accounts_in": [4],
  "accounts_nin": [4],
  "approvedOnce_eq": true,
  "approvedOnce_ne": false,
  "approved_eq": true,
  "approved_ne": false,
  "labelValues_every": IssueCatalogDraftApprovalLevelLabelValueWhereInput,
  "labelValues_exists": true,
  "labelValues_none": IssueCatalogDraftApprovalLevelLabelValueWhereInput,
  "labelValues_some": IssueCatalogDraftApprovalLevelLabelValueWhereInput
}

IssueCatalogDraftApprovalLog

Description

Represents a IssueCatalogDraftApprovalLog

Fields
Field NameDescription
_id - ID
by - Account!
byId - ID!
createdAt - DateTime
executionDate - DateTime!Proposed execution date
observation - String
type - IssueCatalogDraftApprovalLogType!
updatedAt - DateTime
Example
{
  "_id": "4",
  "by": Account,
  "byId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "xyz789",
  "type": "APPROVE",
  "updatedAt": "2007-12-03T10:15:30Z"
}

IssueCatalogDraftApprovalLogType

Values
Enum ValueDescription

APPROVE

CHANGE

REJECT

Example
"APPROVE"

IssueCatalogDraftApprovalLogWhereInput

Description

Represents a Where input for: IssueCatalogDraftApprovalLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
observation_contains - StringField contains given value, case-insensitive
observation_ends_with - StringField ends with given value, case-insensitive
observation_eq - StringField is equal to given value
observation_exists - BooleanField is set and exists
observation_in - [String]Given value includes field
observation_ne - StringField is not equal to given value
observation_nin - [String]Given value does not includes field
observation_not_contains - StringField does not contains given value, case-insensitive
observation_not_ends_with - StringField does not end with given value, case-insensitive
observation_not_starts_with - StringField does not start with given value, case-insensitive
observation_starts_with - StringField starts with given value, case-insensitive
type_eq - IssueCatalogDraftApprovalLogTypeField is equal to given value
type_exists - IssueCatalogDraftApprovalLogTypeField is set and exists
type_in - [IssueCatalogDraftApprovalLogType]Given value includes field
type_ne - IssueCatalogDraftApprovalLogTypeField is not equal to given value
type_nin - [IssueCatalogDraftApprovalLogType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": false,
  "by_in": ["4"],
  "by_ne": 4,
  "by_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": false,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "observation_contains": "xyz789",
  "observation_ends_with": "abc123",
  "observation_eq": "xyz789",
  "observation_exists": true,
  "observation_in": ["xyz789"],
  "observation_ne": "xyz789",
  "observation_nin": ["abc123"],
  "observation_not_contains": "abc123",
  "observation_not_ends_with": "abc123",
  "observation_not_starts_with": "abc123",
  "observation_starts_with": "abc123",
  "type_eq": "APPROVE",
  "type_exists": "APPROVE",
  "type_in": ["APPROVE"],
  "type_ne": "APPROVE",
  "type_nin": ["APPROVE"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"]
}

IssueCatalogDraftApprovalUpdateInput

Description

Represents a IssueCatalogDraftApprovalUpdateInput

Fields
Input FieldDescription
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueCatalogDraftApprovalLevelUpdateInput]
Example
{
  "approvalsCount": 123,
  "approvalsNeeded": 123,
  "approved": true,
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": false,
  "levels": [IssueCatalogDraftApprovalLevelUpdateInput]
}

IssueCatalogDraftApprovalWhereInput

Description

Represents a Where input for: IssueCatalogDraftApproval

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
approvalsCount_eq - IntField is equal to given value
approvalsCount_exists - BooleanField is set and exists
approvalsCount_gt - IntField is greater than given value
approvalsCount_gte - IntField is greater or equal than given value
approvalsCount_in - [Int]Given value includes field
approvalsCount_lt - IntField is lower than given value
approvalsCount_lte - IntField is lower or equal than given value
approvalsCount_ne - IntField is not equal to given value
approvalsCount_nin - [Int]Given value does not includes field
approvalsNeeded_eq - IntField is equal to given value
approvalsNeeded_exists - BooleanField is set and exists
approvalsNeeded_gt - IntField is greater than given value
approvalsNeeded_gte - IntField is greater or equal than given value
approvalsNeeded_in - [Int]Given value includes field
approvalsNeeded_lt - IntField is lower than given value
approvalsNeeded_lte - IntField is lower or equal than given value
approvalsNeeded_ne - IntField is not equal to given value
approvalsNeeded_nin - [Int]Given value does not includes field
approvedBy_all - [ID]Field includes all given values.
approvedBy_eq - [ID]Given value is equal to field
approvedBy_exists - Boolean
approvedBy_in - [ID]Field includes one of given value.
approvedBy_nin - [ID]Field does not include any of the given values.
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
followHierarchy_eq - BooleanField is equal to given value
followHierarchy_ne - BooleanField is not equal to given value
levels_every - IssueCatalogDraftApprovalLevelWhereInput
levels_exists - Boolean
levels_none - IssueCatalogDraftApprovalLevelWhereInput
levels_some - IssueCatalogDraftApprovalLevelWhereInput
log_every - IssueCatalogDraftApprovalLogWhereInput
log_exists - Boolean
log_none - IssueCatalogDraftApprovalLogWhereInput
log_some - IssueCatalogDraftApprovalLogWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "approvalsCount_eq": 123,
  "approvalsCount_exists": false,
  "approvalsCount_gt": 987,
  "approvalsCount_gte": 987,
  "approvalsCount_in": [123],
  "approvalsCount_lt": 123,
  "approvalsCount_lte": 123,
  "approvalsCount_ne": 987,
  "approvalsCount_nin": [123],
  "approvalsNeeded_eq": 123,
  "approvalsNeeded_exists": false,
  "approvalsNeeded_gt": 987,
  "approvalsNeeded_gte": 123,
  "approvalsNeeded_in": [123],
  "approvalsNeeded_lt": 987,
  "approvalsNeeded_lte": 987,
  "approvalsNeeded_ne": 123,
  "approvalsNeeded_nin": [123],
  "approvedBy_all": [4],
  "approvedBy_eq": ["4"],
  "approvedBy_exists": false,
  "approvedBy_in": ["4"],
  "approvedBy_nin": ["4"],
  "approved_eq": false,
  "approved_ne": false,
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": false,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "followHierarchy_eq": false,
  "followHierarchy_ne": true,
  "levels_every": IssueCatalogDraftApprovalLevelWhereInput,
  "levels_exists": false,
  "levels_none": IssueCatalogDraftApprovalLevelWhereInput,
  "levels_some": IssueCatalogDraftApprovalLevelWhereInput,
  "log_every": IssueCatalogDraftApprovalLogWhereInput,
  "log_exists": true,
  "log_none": IssueCatalogDraftApprovalLogWhereInput,
  "log_some": IssueCatalogDraftApprovalLogWhereInput
}

IssueCatalogDraftAssignedSkill

Description

Represents a IssueCatalogDraftAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "abc123"
}

IssueCatalogDraftAssignedSkillCreateInput

Description

Represents a IssueCatalogDraftAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "abc123",
  "skillname": "abc123"
}

IssueCatalogDraftAssignedSkillUpdateInput

Description

Represents a IssueCatalogDraftAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "abc123",
  "skillname": "xyz789"
}

IssueCatalogDraftAssignedSkillWhereInput

Description

Represents a Where input for: IssueCatalogDraftAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "xyz789",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": ["4"],
  "id_eq": "4",
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "abc123",
  "level_eq": "abc123",
  "level_exists": true,
  "level_in": ["abc123"],
  "level_ne": "xyz789",
  "level_nin": ["abc123"],
  "level_not_contains": "xyz789",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "abc123",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "xyz789",
  "skillname_eq": "abc123",
  "skillname_exists": true,
  "skillname_in": ["xyz789"],
  "skillname_ne": "abc123",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "abc123",
  "skillname_starts_with": "xyz789"
}

IssueCatalogDraftConflictHandler

Values
Enum ValueDescription

keepBoth

keepNew

keepOld

Example
"keepBoth"

IssueCatalogDraftCreateInput

Description

Represents a IssueCatalogDraftCreateInput

Fields
Input FieldDescription
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogDraftApprovalCreateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogDraftAssignedSkillCreateInput]
conflictHandler - IssueCatalogDraftConflictHandler!
description - StringIssue Name
element - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [InputCreateInput]
isActive - Boolean
labelValues - [ID]
materialLegendAndComments - Boolean
name - String!Issue Name
paperForm - IssueCatalogDraftPaperFormCreateInput
remarksOnTasks - Boolean
report - IssueCatalogDraftReportCreateInput
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogDraftSchedulerCreateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - ID
stateMachine - IDThis Issue State-Machine
taskMappings - [IssueCatalogDraftTaskMappingCreateInput]
tasksFallbackStateMachine - IDThis Issue task fallback State-Machine
template - IDIf this Issue Template
toolLegendAndComments - Boolean
Example
{
  "acknowledgeRequired": false,
  "allowTracking": false,
  "approval": IssueCatalogDraftApprovalCreateInput,
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "assignedSkills": [
    IssueCatalogDraftAssignedSkillCreateInput
  ],
  "conflictHandler": "keepBoth",
  "description": "abc123",
  "element": "4",
  "emailsToSendReport": ["xyz789"],
  "filterTasksByLabels": true,
  "folder": "4",
  "glarPrefix": "xyz789",
  "inputs": [InputCreateInput],
  "isActive": true,
  "labelValues": ["4"],
  "materialLegendAndComments": false,
  "name": "abc123",
  "paperForm": IssueCatalogDraftPaperFormCreateInput,
  "remarksOnTasks": true,
  "report": IssueCatalogDraftReportCreateInput,
  "requestDescription": false,
  "scheduleTasks": true,
  "scheduler": [IssueCatalogDraftSchedulerCreateInput],
  "scoreInputs": false,
  "sequential": false,
  "site": "4",
  "stateMachine": "4",
  "taskMappings": [
    IssueCatalogDraftTaskMappingCreateInput
  ],
  "tasksFallbackStateMachine": 4,
  "template": "4",
  "toolLegendAndComments": false
}

IssueCatalogDraftOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

approval_approvalsCount_ASC

approval_approvalsCount_DESC

approval_approvalsNeeded_ASC

approval_approvalsNeeded_DESC

approval_executionDate_ASC

approval_executionDate_DESC

conflictHandler_ASC

conflictHandler_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

glarPrefix_ASC

glarPrefix_DESC

name_ASC

name_DESC

paperForm_codedTemplate_ASC

paperForm_codedTemplate_DESC

paperForm_defaultTemplate_ASC

paperForm_defaultTemplate_DESC

paperForm_type_ASC

paperForm_type_DESC

report_codedTemplate_ASC

report_codedTemplate_DESC

report_defaultTemplate_ASC

report_defaultTemplate_DESC

report_type_ASC

report_type_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueCatalogDraftPaperForm

Description

Represents a IssueCatalogDraftPaperForm

Fields
Field NameDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "abc123",
  "type": "abc123"
}

IssueCatalogDraftPaperFormCreateInput

Description

Represents a IssueCatalogDraftPaperFormCreateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "xyz789",
  "type": "xyz789"
}

IssueCatalogDraftPaperFormUpdateInput

Description

Represents a IssueCatalogDraftPaperFormUpdateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "xyz789",
  "type": "xyz789"
}

IssueCatalogDraftPaperFormWhereInput

Description

Represents a Where input for: IssueCatalogDraftPaperForm

Fields
Input FieldDescription
codedTemplate_contains - StringField contains given value, case-insensitive
codedTemplate_ends_with - StringField ends with given value, case-insensitive
codedTemplate_eq - StringField is equal to given value
codedTemplate_exists - BooleanField is set and exists
codedTemplate_in - [String]Given value includes field
codedTemplate_ne - StringField is not equal to given value
codedTemplate_nin - [String]Given value does not includes field
codedTemplate_not_contains - StringField does not contains given value, case-insensitive
codedTemplate_not_ends_with - StringField does not end with given value, case-insensitive
codedTemplate_not_starts_with - StringField does not start with given value, case-insensitive
codedTemplate_starts_with - StringField starts with given value, case-insensitive
defaultTemplate_contains - StringField contains given value, case-insensitive
defaultTemplate_ends_with - StringField ends with given value, case-insensitive
defaultTemplate_eq - StringField is equal to given value
defaultTemplate_exists - BooleanField is set and exists
defaultTemplate_in - [String]Given value includes field
defaultTemplate_ne - StringField is not equal to given value
defaultTemplate_nin - [String]Given value does not includes field
defaultTemplate_not_contains - StringField does not contains given value, case-insensitive
defaultTemplate_not_ends_with - StringField does not end with given value, case-insensitive
defaultTemplate_not_starts_with - StringField does not start with given value, case-insensitive
defaultTemplate_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "codedTemplate_contains": "xyz789",
  "codedTemplate_ends_with": "abc123",
  "codedTemplate_eq": "abc123",
  "codedTemplate_exists": true,
  "codedTemplate_in": ["abc123"],
  "codedTemplate_ne": "xyz789",
  "codedTemplate_nin": ["xyz789"],
  "codedTemplate_not_contains": "xyz789",
  "codedTemplate_not_ends_with": "xyz789",
  "codedTemplate_not_starts_with": "xyz789",
  "codedTemplate_starts_with": "abc123",
  "defaultTemplate_contains": "xyz789",
  "defaultTemplate_ends_with": "abc123",
  "defaultTemplate_eq": "abc123",
  "defaultTemplate_exists": true,
  "defaultTemplate_in": ["abc123"],
  "defaultTemplate_ne": "abc123",
  "defaultTemplate_nin": ["xyz789"],
  "defaultTemplate_not_contains": "abc123",
  "defaultTemplate_not_ends_with": "xyz789",
  "defaultTemplate_not_starts_with": "xyz789",
  "defaultTemplate_starts_with": "xyz789",
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": true,
  "type_in": ["abc123"],
  "type_ne": "xyz789",
  "type_nin": ["abc123"],
  "type_not_contains": "abc123",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "abc123",
  "type_starts_with": "xyz789"
}

IssueCatalogDraftReport

Description

Represents a IssueCatalogDraftReport

Fields
Field NameDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogDraftReportDefaultTemplateOption
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "abc123",
  "defaultTemplateOptions": IssueCatalogDraftReportDefaultTemplateOption,
  "type": "abc123"
}

IssueCatalogDraftReportCreateInput

Description

Represents a IssueCatalogDraftReportCreateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogDraftReportDefaultTemplateOptionCreateInput
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "xyz789",
  "defaultTemplateOptions": IssueCatalogDraftReportDefaultTemplateOptionCreateInput,
  "type": "xyz789"
}

IssueCatalogDraftReportDefaultTemplateOption

Description

Represents a IssueCatalogDraftReportDefaultTemplateOption

Fields
Field NameDescription
actionsFilesNotes - Boolean
alternativeLogo - File
alternativeLogoId - ID
attachments - IssueCatalogDraftReportDefaultTemplateOptionAttachment
fontSize - String
footer - IssueCatalogDraftReportDefaultTemplateOptionFooter
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogDraftReportDefaultTemplateOptionTaskHeader
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeader
Example
{
  "actionsFilesNotes": true,
  "alternativeLogo": File,
  "alternativeLogoId": "4",
  "attachments": IssueCatalogDraftReportDefaultTemplateOptionAttachment,
  "fontSize": "abc123",
  "footer": IssueCatalogDraftReportDefaultTemplateOptionFooter,
  "materialsTools": false,
  "notAnsweredQuestions": false,
  "results": false,
  "scores": false,
  "taskHeader": IssueCatalogDraftReportDefaultTemplateOptionTaskHeader,
  "taskSpace": 123,
  "thumbnailSize": "abc123",
  "timesheets": true,
  "workOrderHeader": IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeader
}

IssueCatalogDraftReportDefaultTemplateOptionAttachment

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionAttachment

Fields
Field NameDescription
active - Boolean
size - String
Example
{"active": true, "size": "abc123"}

IssueCatalogDraftReportDefaultTemplateOptionAttachmentCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionAttachmentCreateInput

Fields
Input FieldDescription
active - Boolean
size - String
Example
{"active": false, "size": "xyz789"}

IssueCatalogDraftReportDefaultTemplateOptionAttachmentUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionAttachmentUpdateInput

Fields
Input FieldDescription
active - Boolean
size - String
Example
{"active": true, "size": "xyz789"}

IssueCatalogDraftReportDefaultTemplateOptionAttachmentWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOptionAttachment

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
size_contains - StringField contains given value, case-insensitive
size_ends_with - StringField ends with given value, case-insensitive
size_eq - StringField is equal to given value
size_exists - BooleanField is set and exists
size_in - [String]Given value includes field
size_ne - StringField is not equal to given value
size_nin - [String]Given value does not includes field
size_not_contains - StringField does not contains given value, case-insensitive
size_not_ends_with - StringField does not end with given value, case-insensitive
size_not_starts_with - StringField does not start with given value, case-insensitive
size_starts_with - StringField starts with given value, case-insensitive
Example
{
  "active_eq": true,
  "active_ne": true,
  "size_contains": "abc123",
  "size_ends_with": "abc123",
  "size_eq": "xyz789",
  "size_exists": true,
  "size_in": ["xyz789"],
  "size_ne": "xyz789",
  "size_nin": ["xyz789"],
  "size_not_contains": "abc123",
  "size_not_ends_with": "xyz789",
  "size_not_starts_with": "abc123",
  "size_starts_with": "xyz789"
}

IssueCatalogDraftReportDefaultTemplateOptionCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionCreateInput

Fields
Input FieldDescription
actionsFilesNotes - Boolean
alternativeLogo - ID
attachments - IssueCatalogDraftReportDefaultTemplateOptionAttachmentCreateInput
fontSize - String
footer - IssueCatalogDraftReportDefaultTemplateOptionFooterCreateInput
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderCreateInput
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderCreateInput
Example
{
  "actionsFilesNotes": true,
  "alternativeLogo": "4",
  "attachments": IssueCatalogDraftReportDefaultTemplateOptionAttachmentCreateInput,
  "fontSize": "xyz789",
  "footer": IssueCatalogDraftReportDefaultTemplateOptionFooterCreateInput,
  "materialsTools": true,
  "notAnsweredQuestions": true,
  "results": true,
  "scores": false,
  "taskHeader": IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderCreateInput,
  "taskSpace": 987,
  "thumbnailSize": "xyz789",
  "timesheets": true,
  "workOrderHeader": IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderCreateInput
}

IssueCatalogDraftReportDefaultTemplateOptionFooter

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooter

Fields
Field NameDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooter
user - Boolean
Example
{
  "active": true,
  "date": true,
  "hour": true,
  "personalizedFooter": IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooter,
  "user": true
}

IssueCatalogDraftReportDefaultTemplateOptionFooterCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooterCreateInput

Fields
Input FieldDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput
user - Boolean
Example
{
  "active": true,
  "date": true,
  "hour": true,
  "personalizedFooter": IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput,
  "user": false
}

IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooter

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooter

Fields
Field NameDescription
active - Boolean
text - String
Example
{"active": false, "text": "xyz789"}

IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput

Fields
Input FieldDescription
active - Boolean
text - String
Example
{"active": false, "text": "xyz789"}

IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput

Fields
Input FieldDescription
active - Boolean
text - String
Example
{"active": true, "text": "xyz789"}

IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooter

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "active_eq": true,
  "active_ne": true,
  "text_contains": "abc123",
  "text_ends_with": "abc123",
  "text_eq": "xyz789",
  "text_exists": true,
  "text_in": ["xyz789"],
  "text_ne": "xyz789",
  "text_nin": ["abc123"],
  "text_not_contains": "xyz789",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "abc123",
  "text_starts_with": "xyz789"
}

IssueCatalogDraftReportDefaultTemplateOptionFooterUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionFooterUpdateInput

Fields
Input FieldDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput
user - Boolean
Example
{
  "active": true,
  "date": false,
  "hour": false,
  "personalizedFooter": IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput,
  "user": false
}

IssueCatalogDraftReportDefaultTemplateOptionFooterWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOptionFooter

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
date_eq - BooleanField is equal to given value
date_ne - BooleanField is not equal to given value
hour_eq - BooleanField is equal to given value
hour_ne - BooleanField is not equal to given value
personalizedFooter - IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput
user_eq - BooleanField is equal to given value
user_ne - BooleanField is not equal to given value
Example
{
  "active_eq": true,
  "active_ne": false,
  "date_eq": true,
  "date_ne": false,
  "hour_eq": true,
  "hour_ne": false,
  "personalizedFooter": IssueCatalogDraftReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput,
  "user_eq": true,
  "user_ne": false
}

IssueCatalogDraftReportDefaultTemplateOptionTaskHeader

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionTaskHeader

Fields
Field NameDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": true,
  "fields": ["xyz789"],
  "showAllRemarks": false
}

IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderCreateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": true,
  "fields": ["xyz789"],
  "showAllRemarks": false
}

IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderUpdateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": false,
  "fields": ["xyz789"],
  "showAllRemarks": true
}

IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOptionTaskHeader

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
fields_all - [String]Field includes all given values.
fields_eq - [String]Given value is equal to field
fields_exists - Boolean
fields_in - [String]Field includes one of given value.
fields_nin - [String]Field does not include any of the given values.
showAllRemarks_eq - BooleanField is equal to given value
showAllRemarks_ne - BooleanField is not equal to given value
Example
{
  "active_eq": true,
  "active_ne": false,
  "fields_all": ["xyz789"],
  "fields_eq": ["abc123"],
  "fields_exists": false,
  "fields_in": ["xyz789"],
  "fields_nin": ["xyz789"],
  "showAllRemarks_eq": true,
  "showAllRemarks_ne": true
}

IssueCatalogDraftReportDefaultTemplateOptionUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionUpdateInput

Fields
Input FieldDescription
actionsFilesNotes - Boolean
alternativeLogo - ID
attachments - IssueCatalogDraftReportDefaultTemplateOptionAttachmentUpdateInput
fontSize - String
footer - IssueCatalogDraftReportDefaultTemplateOptionFooterUpdateInput
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderUpdateInput
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderUpdateInput
Example
{
  "actionsFilesNotes": false,
  "alternativeLogo": 4,
  "attachments": IssueCatalogDraftReportDefaultTemplateOptionAttachmentUpdateInput,
  "fontSize": "xyz789",
  "footer": IssueCatalogDraftReportDefaultTemplateOptionFooterUpdateInput,
  "materialsTools": false,
  "notAnsweredQuestions": true,
  "results": true,
  "scores": true,
  "taskHeader": IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderUpdateInput,
  "taskSpace": 987,
  "thumbnailSize": "xyz789",
  "timesheets": false,
  "workOrderHeader": IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderUpdateInput
}

IssueCatalogDraftReportDefaultTemplateOptionWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOption

Fields
Input FieldDescription
actionsFilesNotes_eq - BooleanField is equal to given value
actionsFilesNotes_ne - BooleanField is not equal to given value
alternativeLogo_all - [ID]Given value includes all in array
alternativeLogo_eq - IDField is equal to given value
alternativeLogo_exists - BooleanField is set and exists
alternativeLogo_in - [ID]Given value includes field
alternativeLogo_ne - IDField is not equal to given value
alternativeLogo_nin - [ID]Given value does not include field
attachments - IssueCatalogDraftReportDefaultTemplateOptionAttachmentWhereInput
fontSize_contains - StringField contains given value, case-insensitive
fontSize_ends_with - StringField ends with given value, case-insensitive
fontSize_eq - StringField is equal to given value
fontSize_exists - BooleanField is set and exists
fontSize_in - [String]Given value includes field
fontSize_ne - StringField is not equal to given value
fontSize_nin - [String]Given value does not includes field
fontSize_not_contains - StringField does not contains given value, case-insensitive
fontSize_not_ends_with - StringField does not end with given value, case-insensitive
fontSize_not_starts_with - StringField does not start with given value, case-insensitive
fontSize_starts_with - StringField starts with given value, case-insensitive
footer - IssueCatalogDraftReportDefaultTemplateOptionFooterWhereInput
materialsTools_eq - BooleanField is equal to given value
materialsTools_ne - BooleanField is not equal to given value
notAnsweredQuestions_eq - BooleanField is equal to given value
notAnsweredQuestions_ne - BooleanField is not equal to given value
results_eq - BooleanField is equal to given value
results_ne - BooleanField is not equal to given value
scores_eq - BooleanField is equal to given value
scores_ne - BooleanField is not equal to given value
taskHeader - IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderWhereInput
taskSpace_eq - IntField is equal to given value
taskSpace_exists - BooleanField is set and exists
taskSpace_gt - IntField is greater than given value
taskSpace_gte - IntField is greater or equal than given value
taskSpace_in - [Int]Given value includes field
taskSpace_lt - IntField is lower than given value
taskSpace_lte - IntField is lower or equal than given value
taskSpace_ne - IntField is not equal to given value
taskSpace_nin - [Int]Given value does not includes field
thumbnailSize_contains - StringField contains given value, case-insensitive
thumbnailSize_ends_with - StringField ends with given value, case-insensitive
thumbnailSize_eq - StringField is equal to given value
thumbnailSize_exists - BooleanField is set and exists
thumbnailSize_in - [String]Given value includes field
thumbnailSize_ne - StringField is not equal to given value
thumbnailSize_nin - [String]Given value does not includes field
thumbnailSize_not_contains - StringField does not contains given value, case-insensitive
thumbnailSize_not_ends_with - StringField does not end with given value, case-insensitive
thumbnailSize_not_starts_with - StringField does not start with given value, case-insensitive
thumbnailSize_starts_with - StringField starts with given value, case-insensitive
timesheets_eq - BooleanField is equal to given value
timesheets_ne - BooleanField is not equal to given value
workOrderHeader - IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderWhereInput
Example
{
  "actionsFilesNotes_eq": true,
  "actionsFilesNotes_ne": false,
  "alternativeLogo_all": ["4"],
  "alternativeLogo_eq": "4",
  "alternativeLogo_exists": true,
  "alternativeLogo_in": ["4"],
  "alternativeLogo_ne": 4,
  "alternativeLogo_nin": [4],
  "attachments": IssueCatalogDraftReportDefaultTemplateOptionAttachmentWhereInput,
  "fontSize_contains": "abc123",
  "fontSize_ends_with": "xyz789",
  "fontSize_eq": "xyz789",
  "fontSize_exists": false,
  "fontSize_in": ["xyz789"],
  "fontSize_ne": "abc123",
  "fontSize_nin": ["abc123"],
  "fontSize_not_contains": "xyz789",
  "fontSize_not_ends_with": "xyz789",
  "fontSize_not_starts_with": "abc123",
  "fontSize_starts_with": "xyz789",
  "footer": IssueCatalogDraftReportDefaultTemplateOptionFooterWhereInput,
  "materialsTools_eq": false,
  "materialsTools_ne": false,
  "notAnsweredQuestions_eq": false,
  "notAnsweredQuestions_ne": true,
  "results_eq": false,
  "results_ne": true,
  "scores_eq": true,
  "scores_ne": false,
  "taskHeader": IssueCatalogDraftReportDefaultTemplateOptionTaskHeaderWhereInput,
  "taskSpace_eq": 123,
  "taskSpace_exists": false,
  "taskSpace_gt": 123,
  "taskSpace_gte": 123,
  "taskSpace_in": [123],
  "taskSpace_lt": 987,
  "taskSpace_lte": 123,
  "taskSpace_ne": 123,
  "taskSpace_nin": [123],
  "thumbnailSize_contains": "xyz789",
  "thumbnailSize_ends_with": "xyz789",
  "thumbnailSize_eq": "xyz789",
  "thumbnailSize_exists": true,
  "thumbnailSize_in": ["xyz789"],
  "thumbnailSize_ne": "xyz789",
  "thumbnailSize_nin": ["abc123"],
  "thumbnailSize_not_contains": "abc123",
  "thumbnailSize_not_ends_with": "abc123",
  "thumbnailSize_not_starts_with": "abc123",
  "thumbnailSize_starts_with": "abc123",
  "timesheets_eq": false,
  "timesheets_ne": false,
  "workOrderHeader": IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderWhereInput
}

IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeader

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeader

Fields
Field NameDescription
active - Boolean
fields - [String]
Example
{"active": true, "fields": ["xyz789"]}

IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderCreateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderCreateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
Example
{"active": true, "fields": ["xyz789"]}

IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderUpdateInput

Description

Represents a IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderUpdateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
Example
{"active": false, "fields": ["abc123"]}

IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeaderWhereInput

Description

Represents a Where input for: IssueCatalogDraftReportDefaultTemplateOptionWorkOrderHeader

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
fields_all - [String]Field includes all given values.
fields_eq - [String]Given value is equal to field
fields_exists - Boolean
fields_in - [String]Field includes one of given value.
fields_nin - [String]Field does not include any of the given values.
Example
{
  "active_eq": true,
  "active_ne": false,
  "fields_all": ["xyz789"],
  "fields_eq": ["abc123"],
  "fields_exists": true,
  "fields_in": ["abc123"],
  "fields_nin": ["abc123"]
}

IssueCatalogDraftReportUpdateInput

Description

Represents a IssueCatalogDraftReportUpdateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogDraftReportDefaultTemplateOptionUpdateInput
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "xyz789",
  "defaultTemplateOptions": IssueCatalogDraftReportDefaultTemplateOptionUpdateInput,
  "type": "abc123"
}

IssueCatalogDraftReportWhereInput

Description

Represents a Where input for: IssueCatalogDraftReport

Fields
Input FieldDescription
codedTemplate_contains - StringField contains given value, case-insensitive
codedTemplate_ends_with - StringField ends with given value, case-insensitive
codedTemplate_eq - StringField is equal to given value
codedTemplate_exists - BooleanField is set and exists
codedTemplate_in - [String]Given value includes field
codedTemplate_ne - StringField is not equal to given value
codedTemplate_nin - [String]Given value does not includes field
codedTemplate_not_contains - StringField does not contains given value, case-insensitive
codedTemplate_not_ends_with - StringField does not end with given value, case-insensitive
codedTemplate_not_starts_with - StringField does not start with given value, case-insensitive
codedTemplate_starts_with - StringField starts with given value, case-insensitive
defaultTemplateOptions - IssueCatalogDraftReportDefaultTemplateOptionWhereInput
defaultTemplate_contains - StringField contains given value, case-insensitive
defaultTemplate_ends_with - StringField ends with given value, case-insensitive
defaultTemplate_eq - StringField is equal to given value
defaultTemplate_exists - BooleanField is set and exists
defaultTemplate_in - [String]Given value includes field
defaultTemplate_ne - StringField is not equal to given value
defaultTemplate_nin - [String]Given value does not includes field
defaultTemplate_not_contains - StringField does not contains given value, case-insensitive
defaultTemplate_not_ends_with - StringField does not end with given value, case-insensitive
defaultTemplate_not_starts_with - StringField does not start with given value, case-insensitive
defaultTemplate_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "codedTemplate_contains": "abc123",
  "codedTemplate_ends_with": "abc123",
  "codedTemplate_eq": "abc123",
  "codedTemplate_exists": true,
  "codedTemplate_in": ["abc123"],
  "codedTemplate_ne": "xyz789",
  "codedTemplate_nin": ["abc123"],
  "codedTemplate_not_contains": "abc123",
  "codedTemplate_not_ends_with": "abc123",
  "codedTemplate_not_starts_with": "xyz789",
  "codedTemplate_starts_with": "abc123",
  "defaultTemplateOptions": IssueCatalogDraftReportDefaultTemplateOptionWhereInput,
  "defaultTemplate_contains": "abc123",
  "defaultTemplate_ends_with": "xyz789",
  "defaultTemplate_eq": "abc123",
  "defaultTemplate_exists": true,
  "defaultTemplate_in": ["xyz789"],
  "defaultTemplate_ne": "xyz789",
  "defaultTemplate_nin": ["xyz789"],
  "defaultTemplate_not_contains": "abc123",
  "defaultTemplate_not_ends_with": "abc123",
  "defaultTemplate_not_starts_with": "xyz789",
  "defaultTemplate_starts_with": "abc123",
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": true,
  "type_in": ["abc123"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "abc123",
  "type_starts_with": "abc123"
}

IssueCatalogDraftScheduler

Description

Represents a IssueCatalogDraftScheduler

Fields
Field NameDescription
amount - Int
dueDate - IssueCatalogDraftSchedulerDueDate
element - LeanElement
name - String
scheduleSettings - [IssueCatalogDraftSchedulerScheduleSetting]
shifts - IssueCatalogDraftSchedulerShift
site - LeanSite
taskIds - [ID]
timeUnit - IssueCatalogDraftSchedulerTimeUnit
Example
{
  "amount": 987,
  "dueDate": IssueCatalogDraftSchedulerDueDate,
  "element": LeanElement,
  "name": "xyz789",
  "scheduleSettings": [
    IssueCatalogDraftSchedulerScheduleSetting
  ],
  "shifts": IssueCatalogDraftSchedulerShift,
  "site": LeanSite,
  "taskIds": ["4"],
  "timeUnit": "days"
}

IssueCatalogDraftSchedulerCreateInput

Description

Represents a IssueCatalogDraftSchedulerCreateInput

Example
{
  "amount": 123,
  "dueDate": IssueCatalogDraftSchedulerDueDateCreateInput,
  "name": "xyz789",
  "scheduleSettings": [
    IssueCatalogDraftSchedulerScheduleSettingCreateInput
  ],
  "shifts": IssueCatalogDraftSchedulerShiftCreateInput,
  "taskIds": ["4"],
  "timeUnit": "days"
}

IssueCatalogDraftSchedulerDueDate

Description

Represents a IssueCatalogDraftSchedulerDueDate

Fields
Field NameDescription
_id - ID
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "_id": 4,
  "allowPast": false,
  "distance": 987,
  "timeUnit": "xyz789"
}

IssueCatalogDraftSchedulerDueDateCreateInput

Description

Represents a IssueCatalogDraftSchedulerDueDateCreateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": true,
  "distance": 987,
  "timeUnit": "abc123"
}

IssueCatalogDraftSchedulerDueDateUpdateInput

Description

Represents a IssueCatalogDraftSchedulerDueDateUpdateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": false,
  "distance": 123,
  "timeUnit": "abc123"
}

IssueCatalogDraftSchedulerDueDateWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerDueDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
allowPast_eq - BooleanField is equal to given value
allowPast_ne - BooleanField is not equal to given value
distance_eq - IntField is equal to given value
distance_exists - BooleanField is set and exists
distance_gt - IntField is greater than given value
distance_gte - IntField is greater or equal than given value
distance_in - [Int]Given value includes field
distance_lt - IntField is lower than given value
distance_lte - IntField is lower or equal than given value
distance_ne - IntField is not equal to given value
distance_nin - [Int]Given value does not includes field
timeUnit_contains - StringField contains given value, case-insensitive
timeUnit_ends_with - StringField ends with given value, case-insensitive
timeUnit_eq - StringField is equal to given value
timeUnit_exists - BooleanField is set and exists
timeUnit_in - [String]Given value includes field
timeUnit_ne - StringField is not equal to given value
timeUnit_nin - [String]Given value does not includes field
timeUnit_not_contains - StringField does not contains given value, case-insensitive
timeUnit_not_ends_with - StringField does not end with given value, case-insensitive
timeUnit_not_starts_with - StringField does not start with given value, case-insensitive
timeUnit_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "allowPast_eq": true,
  "allowPast_ne": true,
  "distance_eq": 123,
  "distance_exists": true,
  "distance_gt": 987,
  "distance_gte": 123,
  "distance_in": [123],
  "distance_lt": 987,
  "distance_lte": 123,
  "distance_ne": 987,
  "distance_nin": [123],
  "timeUnit_contains": "xyz789",
  "timeUnit_ends_with": "xyz789",
  "timeUnit_eq": "xyz789",
  "timeUnit_exists": true,
  "timeUnit_in": ["abc123"],
  "timeUnit_ne": "abc123",
  "timeUnit_nin": ["xyz789"],
  "timeUnit_not_contains": "xyz789",
  "timeUnit_not_ends_with": "xyz789",
  "timeUnit_not_starts_with": "xyz789",
  "timeUnit_starts_with": "abc123"
}

IssueCatalogDraftSchedulerScheduleSetting

Description

Represents a IssueCatalogDraftSchedulerScheduleSetting

Fields
Field NameDescription
_id - ID
dueDate - IssueCatalogDraftSchedulerScheduleSettingDueDate
element - Element
elementId - ID
initialDate - DateTime
site - Site
siteId - ID
Example
{
  "_id": 4,
  "dueDate": IssueCatalogDraftSchedulerScheduleSettingDueDate,
  "element": Element,
  "elementId": "4",
  "initialDate": "2007-12-03T10:15:30Z",
  "site": Site,
  "siteId": "4"
}

IssueCatalogDraftSchedulerScheduleSettingCreateInput

Description

Represents a IssueCatalogDraftSchedulerScheduleSettingCreateInput

Fields
Input FieldDescription
dueDate - IssueCatalogDraftSchedulerScheduleSettingDueDateCreateInput
element - ID
initialDate - DateTime
site - ID
Example
{
  "dueDate": IssueCatalogDraftSchedulerScheduleSettingDueDateCreateInput,
  "element": "4",
  "initialDate": "2007-12-03T10:15:30Z",
  "site": 4
}

IssueCatalogDraftSchedulerScheduleSettingDueDate

Description

Represents a IssueCatalogDraftSchedulerScheduleSettingDueDate

Fields
Field NameDescription
_id - ID
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "_id": "4",
  "allowPast": true,
  "distance": 987,
  "timeUnit": "abc123"
}

IssueCatalogDraftSchedulerScheduleSettingDueDateCreateInput

Description

Represents a IssueCatalogDraftSchedulerScheduleSettingDueDateCreateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": false,
  "distance": 987,
  "timeUnit": "xyz789"
}

IssueCatalogDraftSchedulerScheduleSettingDueDateUpdateInput

Description

Represents a IssueCatalogDraftSchedulerScheduleSettingDueDateUpdateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": true,
  "distance": 987,
  "timeUnit": "abc123"
}

IssueCatalogDraftSchedulerScheduleSettingDueDateWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerScheduleSettingDueDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
allowPast_eq - BooleanField is equal to given value
allowPast_ne - BooleanField is not equal to given value
distance_eq - IntField is equal to given value
distance_exists - BooleanField is set and exists
distance_gt - IntField is greater than given value
distance_gte - IntField is greater or equal than given value
distance_in - [Int]Given value includes field
distance_lt - IntField is lower than given value
distance_lte - IntField is lower or equal than given value
distance_ne - IntField is not equal to given value
distance_nin - [Int]Given value does not includes field
timeUnit_contains - StringField contains given value, case-insensitive
timeUnit_ends_with - StringField ends with given value, case-insensitive
timeUnit_eq - StringField is equal to given value
timeUnit_exists - BooleanField is set and exists
timeUnit_in - [String]Given value includes field
timeUnit_ne - StringField is not equal to given value
timeUnit_nin - [String]Given value does not includes field
timeUnit_not_contains - StringField does not contains given value, case-insensitive
timeUnit_not_ends_with - StringField does not end with given value, case-insensitive
timeUnit_not_starts_with - StringField does not start with given value, case-insensitive
timeUnit_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "allowPast_eq": false,
  "allowPast_ne": true,
  "distance_eq": 987,
  "distance_exists": true,
  "distance_gt": 987,
  "distance_gte": 123,
  "distance_in": [987],
  "distance_lt": 987,
  "distance_lte": 123,
  "distance_ne": 123,
  "distance_nin": [987],
  "timeUnit_contains": "xyz789",
  "timeUnit_ends_with": "xyz789",
  "timeUnit_eq": "xyz789",
  "timeUnit_exists": true,
  "timeUnit_in": ["abc123"],
  "timeUnit_ne": "abc123",
  "timeUnit_nin": ["abc123"],
  "timeUnit_not_contains": "xyz789",
  "timeUnit_not_ends_with": "abc123",
  "timeUnit_not_starts_with": "abc123",
  "timeUnit_starts_with": "abc123"
}

IssueCatalogDraftSchedulerScheduleSettingUpdateInput

Description

Represents a IssueCatalogDraftSchedulerScheduleSettingUpdateInput

Fields
Input FieldDescription
dueDate - IssueCatalogDraftSchedulerScheduleSettingDueDateUpdateInput
element - ID
initialDate - DateTime
site - ID
Example
{
  "dueDate": IssueCatalogDraftSchedulerScheduleSettingDueDateUpdateInput,
  "element": 4,
  "initialDate": "2007-12-03T10:15:30Z",
  "site": 4
}

IssueCatalogDraftSchedulerScheduleSettingWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerScheduleSetting

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
dueDate - IssueCatalogDraftSchedulerScheduleSettingDueDateWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
initialDate_eq - DateTimeField is equal to given value
initialDate_exists - BooleanField is set and exists
initialDate_gt - DateTimeField is greater than given value
initialDate_gte - DateTimeField is greater or equal than given value
initialDate_in - [DateTime]Given value includes field
initialDate_lt - DateTimeField is lower than given value
initialDate_lte - DateTimeField is lower or equal than given value
initialDate_ne - DateTimeField is not equal to given value
initialDate_nin - [DateTime]Given value does not includes field
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "dueDate": IssueCatalogDraftSchedulerScheduleSettingDueDateWhereInput,
  "element_all": [4],
  "element_eq": 4,
  "element_exists": true,
  "element_in": ["4"],
  "element_ne": 4,
  "element_nin": ["4"],
  "initialDate_eq": "2007-12-03T10:15:30Z",
  "initialDate_exists": true,
  "initialDate_gt": "2007-12-03T10:15:30Z",
  "initialDate_gte": "2007-12-03T10:15:30Z",
  "initialDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "initialDate_lt": "2007-12-03T10:15:30Z",
  "initialDate_lte": "2007-12-03T10:15:30Z",
  "initialDate_ne": "2007-12-03T10:15:30Z",
  "initialDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "site_all": [4],
  "site_eq": 4,
  "site_exists": false,
  "site_in": [4],
  "site_ne": 4,
  "site_nin": [4]
}

IssueCatalogDraftSchedulerShift

Example
{
  "friday": [IssueCatalogDraftSchedulerShiftFriday],
  "monday": [IssueCatalogDraftSchedulerShiftMonday],
  "saturday": [IssueCatalogDraftSchedulerShiftSaturday],
  "sunday": [IssueCatalogDraftSchedulerShiftSunday],
  "thursday": [IssueCatalogDraftSchedulerShiftThursday],
  "tuesday": [IssueCatalogDraftSchedulerShiftTuesday],
  "wednesday": [IssueCatalogDraftSchedulerShiftWednesday]
}

IssueCatalogDraftSchedulerShiftCreateInput

Example
{
  "friday": [
    IssueCatalogDraftSchedulerShiftFridayCreateInput
  ],
  "monday": [
    IssueCatalogDraftSchedulerShiftMondayCreateInput
  ],
  "saturday": [
    IssueCatalogDraftSchedulerShiftSaturdayCreateInput
  ],
  "sunday": [
    IssueCatalogDraftSchedulerShiftSundayCreateInput
  ],
  "thursday": [
    IssueCatalogDraftSchedulerShiftThursdayCreateInput
  ],
  "tuesday": [
    IssueCatalogDraftSchedulerShiftTuesdayCreateInput
  ],
  "wednesday": [
    IssueCatalogDraftSchedulerShiftWednesdayCreateInput
  ]
}

IssueCatalogDraftSchedulerShiftFriday

Description

Represents a IssueCatalogDraftSchedulerShiftFriday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftFridayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftFridayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogDraftSchedulerShiftFridayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftFridayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 987}

IssueCatalogDraftSchedulerShiftFridayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftFriday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": true,
  "hour_gt": 987,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 987,
  "hour_lte": 123,
  "hour_ne": 987,
  "hour_nin": [123],
  "minutes_eq": 987,
  "minutes_exists": false,
  "minutes_gt": 987,
  "minutes_gte": 987,
  "minutes_in": [987],
  "minutes_lt": 123,
  "minutes_lte": 123,
  "minutes_ne": 123,
  "minutes_nin": [123]
}

IssueCatalogDraftSchedulerShiftMonday

Description

Represents a IssueCatalogDraftSchedulerShiftMonday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftMondayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftMondayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogDraftSchedulerShiftMondayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftMondayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 987}

IssueCatalogDraftSchedulerShiftMondayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftMonday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": true,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [987],
  "hour_lt": 123,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [123],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 123,
  "minutes_gte": 987,
  "minutes_in": [987],
  "minutes_lt": 123,
  "minutes_lte": 123,
  "minutes_ne": 123,
  "minutes_nin": [987]
}

IssueCatalogDraftSchedulerShiftSaturday

Description

Represents a IssueCatalogDraftSchedulerShiftSaturday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogDraftSchedulerShiftSaturdayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftSaturdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogDraftSchedulerShiftSaturdayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftSaturdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 123}

IssueCatalogDraftSchedulerShiftSaturdayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftSaturday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": false,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 987,
  "hour_lte": 987,
  "hour_ne": 123,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 123,
  "minutes_gte": 123,
  "minutes_in": [123],
  "minutes_lt": 987,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [123]
}

IssueCatalogDraftSchedulerShiftSunday

Description

Represents a IssueCatalogDraftSchedulerShiftSunday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftSundayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftSundayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogDraftSchedulerShiftSundayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftSundayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftSundayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftSunday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 123,
  "hour_lte": 987,
  "hour_ne": 123,
  "hour_nin": [123],
  "minutes_eq": 123,
  "minutes_exists": false,
  "minutes_gt": 987,
  "minutes_gte": 123,
  "minutes_in": [987],
  "minutes_lt": 123,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [987]
}

IssueCatalogDraftSchedulerShiftThursday

Description

Represents a IssueCatalogDraftSchedulerShiftThursday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogDraftSchedulerShiftThursdayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftThursdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftThursdayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftThursdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 987}

IssueCatalogDraftSchedulerShiftThursdayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftThursday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": true,
  "hour_gt": 123,
  "hour_gte": 987,
  "hour_in": [987],
  "hour_lt": 123,
  "hour_lte": 123,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": false,
  "minutes_gt": 123,
  "minutes_gte": 987,
  "minutes_in": [987],
  "minutes_lt": 987,
  "minutes_lte": 123,
  "minutes_ne": 987,
  "minutes_nin": [987]
}

IssueCatalogDraftSchedulerShiftTuesday

Description

Represents a IssueCatalogDraftSchedulerShiftTuesday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogDraftSchedulerShiftTuesdayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftTuesdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftTuesdayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftTuesdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftTuesdayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftTuesday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 987,
  "hour_gte": 987,
  "hour_in": [123],
  "hour_lt": 987,
  "hour_lte": 123,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 123,
  "minutes_gte": 987,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [987]
}

IssueCatalogDraftSchedulerShiftUpdateInput

Example
{
  "friday": [
    IssueCatalogDraftSchedulerShiftFridayUpdateInput
  ],
  "monday": [
    IssueCatalogDraftSchedulerShiftMondayUpdateInput
  ],
  "saturday": [
    IssueCatalogDraftSchedulerShiftSaturdayUpdateInput
  ],
  "sunday": [
    IssueCatalogDraftSchedulerShiftSundayUpdateInput
  ],
  "thursday": [
    IssueCatalogDraftSchedulerShiftThursdayUpdateInput
  ],
  "tuesday": [
    IssueCatalogDraftSchedulerShiftTuesdayUpdateInput
  ],
  "wednesday": [
    IssueCatalogDraftSchedulerShiftWednesdayUpdateInput
  ]
}

IssueCatalogDraftSchedulerShiftWednesday

Description

Represents a IssueCatalogDraftSchedulerShiftWednesday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogDraftSchedulerShiftWednesdayCreateInput

Description

Represents a IssueCatalogDraftSchedulerShiftWednesdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogDraftSchedulerShiftWednesdayUpdateInput

Description

Represents a IssueCatalogDraftSchedulerShiftWednesdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 987}

IssueCatalogDraftSchedulerShiftWednesdayWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShiftWednesday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 123,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 123,
  "minutes_exists": true,
  "minutes_gt": 123,
  "minutes_gte": 987,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 123,
  "minutes_ne": 123,
  "minutes_nin": [123]
}

IssueCatalogDraftSchedulerShiftWhereInput

Description

Represents a Where input for: IssueCatalogDraftSchedulerShift

Fields
Input FieldDescription
friday_every - IssueCatalogDraftSchedulerShiftFridayWhereInput
friday_exists - Boolean
friday_none - IssueCatalogDraftSchedulerShiftFridayWhereInput
friday_some - IssueCatalogDraftSchedulerShiftFridayWhereInput
monday_every - IssueCatalogDraftSchedulerShiftMondayWhereInput
monday_exists - Boolean
monday_none - IssueCatalogDraftSchedulerShiftMondayWhereInput
monday_some - IssueCatalogDraftSchedulerShiftMondayWhereInput
saturday_every - IssueCatalogDraftSchedulerShiftSaturdayWhereInput
saturday_exists - Boolean
saturday_none - IssueCatalogDraftSchedulerShiftSaturdayWhereInput
saturday_some - IssueCatalogDraftSchedulerShiftSaturdayWhereInput
sunday_every - IssueCatalogDraftSchedulerShiftSundayWhereInput
sunday_exists - Boolean
sunday_none - IssueCatalogDraftSchedulerShiftSundayWhereInput
sunday_some - IssueCatalogDraftSchedulerShiftSundayWhereInput
thursday_every - IssueCatalogDraftSchedulerShiftThursdayWhereInput
thursday_exists - Boolean
thursday_none - IssueCatalogDraftSchedulerShiftThursdayWhereInput
thursday_some - IssueCatalogDraftSchedulerShiftThursdayWhereInput
tuesday_every - IssueCatalogDraftSchedulerShiftTuesdayWhereInput
tuesday_exists - Boolean
tuesday_none - IssueCatalogDraftSchedulerShiftTuesdayWhereInput
tuesday_some - IssueCatalogDraftSchedulerShiftTuesdayWhereInput
wednesday_every - IssueCatalogDraftSchedulerShiftWednesdayWhereInput
wednesday_exists - Boolean
wednesday_none - IssueCatalogDraftSchedulerShiftWednesdayWhereInput
wednesday_some - IssueCatalogDraftSchedulerShiftWednesdayWhereInput
Example
{
  "friday_every": IssueCatalogDraftSchedulerShiftFridayWhereInput,
  "friday_exists": false,
  "friday_none": IssueCatalogDraftSchedulerShiftFridayWhereInput,
  "friday_some": IssueCatalogDraftSchedulerShiftFridayWhereInput,
  "monday_every": IssueCatalogDraftSchedulerShiftMondayWhereInput,
  "monday_exists": true,
  "monday_none": IssueCatalogDraftSchedulerShiftMondayWhereInput,
  "monday_some": IssueCatalogDraftSchedulerShiftMondayWhereInput,
  "saturday_every": IssueCatalogDraftSchedulerShiftSaturdayWhereInput,
  "saturday_exists": false,
  "saturday_none": IssueCatalogDraftSchedulerShiftSaturdayWhereInput,
  "saturday_some": IssueCatalogDraftSchedulerShiftSaturdayWhereInput,
  "sunday_every": IssueCatalogDraftSchedulerShiftSundayWhereInput,
  "sunday_exists": true,
  "sunday_none": IssueCatalogDraftSchedulerShiftSundayWhereInput,
  "sunday_some": IssueCatalogDraftSchedulerShiftSundayWhereInput,
  "thursday_every": IssueCatalogDraftSchedulerShiftThursdayWhereInput,
  "thursday_exists": false,
  "thursday_none": IssueCatalogDraftSchedulerShiftThursdayWhereInput,
  "thursday_some": IssueCatalogDraftSchedulerShiftThursdayWhereInput,
  "tuesday_every": IssueCatalogDraftSchedulerShiftTuesdayWhereInput,
  "tuesday_exists": false,
  "tuesday_none": IssueCatalogDraftSchedulerShiftTuesdayWhereInput,
  "tuesday_some": IssueCatalogDraftSchedulerShiftTuesdayWhereInput,
  "wednesday_every": IssueCatalogDraftSchedulerShiftWednesdayWhereInput,
  "wednesday_exists": true,
  "wednesday_none": IssueCatalogDraftSchedulerShiftWednesdayWhereInput,
  "wednesday_some": IssueCatalogDraftSchedulerShiftWednesdayWhereInput
}

IssueCatalogDraftSchedulerTimeUnit

Values
Enum ValueDescription

days

hours

months

shifts

specific

weeks

years

Example
"days"

IssueCatalogDraftSchedulerUpdateInput

Description

Represents a IssueCatalogDraftSchedulerUpdateInput

Example
{
  "amount": 123,
  "dueDate": IssueCatalogDraftSchedulerDueDateUpdateInput,
  "name": "abc123",
  "scheduleSettings": [
    IssueCatalogDraftSchedulerScheduleSettingUpdateInput
  ],
  "shifts": IssueCatalogDraftSchedulerShiftUpdateInput,
  "taskIds": [4],
  "timeUnit": "days"
}

IssueCatalogDraftSchedulerWhereInput

Description

Represents a Where input for: IssueCatalogDraftScheduler

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
dueDate - IssueCatalogDraftSchedulerDueDateWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
scheduleSettings_every - IssueCatalogDraftSchedulerScheduleSettingWhereInput
scheduleSettings_exists - Boolean
scheduleSettings_none - IssueCatalogDraftSchedulerScheduleSettingWhereInput
scheduleSettings_some - IssueCatalogDraftSchedulerScheduleSettingWhereInput
shifts - IssueCatalogDraftSchedulerShiftWhereInput
taskIds_all - [ID]Field includes all given values.
taskIds_eq - [ID]Given value is equal to field
taskIds_exists - Boolean
taskIds_in - [ID]Field includes one of given value.
taskIds_nin - [ID]Field does not include any of the given values.
timeUnit_eq - IssueCatalogDraftSchedulerTimeUnitField is equal to given value
timeUnit_exists - IssueCatalogDraftSchedulerTimeUnitField is set and exists
timeUnit_in - [IssueCatalogDraftSchedulerTimeUnit]Given value includes field
timeUnit_ne - IssueCatalogDraftSchedulerTimeUnitField is not equal to given value
timeUnit_nin - [IssueCatalogDraftSchedulerTimeUnit]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": false,
  "amount_gt": 987,
  "amount_gte": 987,
  "amount_in": [987],
  "amount_lt": 123,
  "amount_lte": 987,
  "amount_ne": 123,
  "amount_nin": [987],
  "dueDate": IssueCatalogDraftSchedulerDueDateWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "scheduleSettings_every": IssueCatalogDraftSchedulerScheduleSettingWhereInput,
  "scheduleSettings_exists": true,
  "scheduleSettings_none": IssueCatalogDraftSchedulerScheduleSettingWhereInput,
  "scheduleSettings_some": IssueCatalogDraftSchedulerScheduleSettingWhereInput,
  "shifts": IssueCatalogDraftSchedulerShiftWhereInput,
  "taskIds_all": ["4"],
  "taskIds_eq": ["4"],
  "taskIds_exists": false,
  "taskIds_in": ["4"],
  "taskIds_nin": ["4"],
  "timeUnit_eq": "days",
  "timeUnit_exists": "days",
  "timeUnit_in": ["days"],
  "timeUnit_ne": "days",
  "timeUnit_nin": ["days"]
}

IssueCatalogDraftTaskMapping

Description

Represents a IssueCatalogDraftTaskMapping

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedSkills - [IssueCatalogDraftTaskMappingAssignedSkill]
element - Element
elementId - ID
site - SiteThis Task site
siteId - IDThis Task site
stateMachine - StateMachine
stateMachineId - ID
taskTemplate - TaskTemplateTaskTemplate to map
taskTemplateId - IDTaskTemplate to map
Example
{
  "_id": 4,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "assignedSkills": [
    IssueCatalogDraftTaskMappingAssignedSkill
  ],
  "element": Element,
  "elementId": 4,
  "site": Site,
  "siteId": 4,
  "stateMachine": StateMachine,
  "stateMachineId": "4",
  "taskTemplate": TaskTemplate,
  "taskTemplateId": 4
}

IssueCatalogDraftTaskMappingAssignedSkill

Description

Represents a IssueCatalogDraftTaskMappingAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "xyz789",
  "skillname": "xyz789"
}

IssueCatalogDraftTaskMappingAssignedSkillCreateInput

Description

Represents a IssueCatalogDraftTaskMappingAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "abc123"
}

IssueCatalogDraftTaskMappingAssignedSkillUpdateInput

Description

Represents a IssueCatalogDraftTaskMappingAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

IssueCatalogDraftTaskMappingAssignedSkillWhereInput

Description

Represents a Where input for: IssueCatalogDraftTaskMappingAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "abc123",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": [4],
  "id_eq": 4,
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "xyz789",
  "level_ends_with": "xyz789",
  "level_eq": "abc123",
  "level_exists": false,
  "level_in": ["xyz789"],
  "level_ne": "abc123",
  "level_nin": ["xyz789"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "abc123",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "abc123",
  "skillname_eq": "xyz789",
  "skillname_exists": false,
  "skillname_in": ["abc123"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "abc123",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "xyz789"
}

IssueCatalogDraftTaskMappingCreateInput

Description

Represents a IssueCatalogDraftTaskMappingCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogDraftTaskMappingAssignedSkillCreateInput]
element - ID
site - IDThis Task site
stateMachine - ID
taskTemplate - IDTaskTemplate to map
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "assignedSkills": [
    IssueCatalogDraftTaskMappingAssignedSkillCreateInput
  ],
  "element": "4",
  "site": 4,
  "stateMachine": 4,
  "taskTemplate": 4
}

IssueCatalogDraftTaskMappingUpdateInput

Description

Represents a IssueCatalogDraftTaskMappingUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogDraftTaskMappingAssignedSkillUpdateInput]
element - ID
site - IDThis Task site
stateMachine - ID
taskTemplate - IDTaskTemplate to map
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "assignedSkills": [
    IssueCatalogDraftTaskMappingAssignedSkillUpdateInput
  ],
  "element": "4",
  "site": "4",
  "stateMachine": 4,
  "taskTemplate": "4"
}

IssueCatalogDraftTaskMappingWhereInput

Description

Represents a Where input for: IssueCatalogDraftTaskMapping

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedSkills_every - IssueCatalogDraftTaskMappingAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueCatalogDraftTaskMappingAssignedSkillWhereInput
assignedSkills_some - IssueCatalogDraftTaskMappingAssignedSkillWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
stateMachine_all - [ID]Given value includes all in array
stateMachine_eq - IDField is equal to given value
stateMachine_exists - BooleanField is set and exists
stateMachine_in - [ID]Given value includes field
stateMachine_ne - IDField is not equal to given value
stateMachine_nin - [ID]Given value does not include field
taskTemplate_all - [ID]Given value includes all in array
taskTemplate_eq - IDField is equal to given value
taskTemplate_exists - BooleanField is set and exists
taskTemplate_in - [ID]Given value includes field
taskTemplate_ne - IDField is not equal to given value
taskTemplate_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": ["4"],
  "assignedSkills_every": IssueCatalogDraftTaskMappingAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": IssueCatalogDraftTaskMappingAssignedSkillWhereInput,
  "assignedSkills_some": IssueCatalogDraftTaskMappingAssignedSkillWhereInput,
  "element_all": ["4"],
  "element_eq": "4",
  "element_exists": true,
  "element_in": [4],
  "element_ne": 4,
  "element_nin": ["4"],
  "site_all": ["4"],
  "site_eq": 4,
  "site_exists": true,
  "site_in": ["4"],
  "site_ne": 4,
  "site_nin": ["4"],
  "stateMachine_all": ["4"],
  "stateMachine_eq": 4,
  "stateMachine_exists": true,
  "stateMachine_in": ["4"],
  "stateMachine_ne": 4,
  "stateMachine_nin": ["4"],
  "taskTemplate_all": ["4"],
  "taskTemplate_eq": "4",
  "taskTemplate_exists": true,
  "taskTemplate_in": [4],
  "taskTemplate_ne": 4,
  "taskTemplate_nin": [4]
}

IssueCatalogDraftUpdateInput

Description

Represents a IssueCatalogDraftUpdateInput

Fields
Input FieldDescription
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogDraftApprovalUpdateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogDraftAssignedSkillUpdateInput]
conflictHandler - IssueCatalogDraftConflictHandler
description - StringIssue Name
element - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [InputUpdateInput]
isActive - Boolean
labelValues - [ID]
materialLegendAndComments - Boolean
name - StringIssue Name
paperForm - IssueCatalogDraftPaperFormUpdateInput
remarksOnTasks - Boolean
report - IssueCatalogDraftReportUpdateInput
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogDraftSchedulerUpdateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - ID
stateMachine - IDThis Issue State-Machine
taskMappings - [IssueCatalogDraftTaskMappingUpdateInput]
tasksFallbackStateMachine - IDThis Issue task fallback State-Machine
template - IDIf this Issue Template
toolLegendAndComments - Boolean
Example
{
  "acknowledgeRequired": false,
  "allowTracking": false,
  "approval": IssueCatalogDraftApprovalUpdateInput,
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "assignedSkills": [
    IssueCatalogDraftAssignedSkillUpdateInput
  ],
  "conflictHandler": "keepBoth",
  "description": "xyz789",
  "element": "4",
  "emailsToSendReport": ["abc123"],
  "filterTasksByLabels": false,
  "folder": "4",
  "glarPrefix": "abc123",
  "inputs": [InputUpdateInput],
  "isActive": true,
  "labelValues": [4],
  "materialLegendAndComments": false,
  "name": "abc123",
  "paperForm": IssueCatalogDraftPaperFormUpdateInput,
  "remarksOnTasks": true,
  "report": IssueCatalogDraftReportUpdateInput,
  "requestDescription": false,
  "scheduleTasks": true,
  "scheduler": [IssueCatalogDraftSchedulerUpdateInput],
  "scoreInputs": true,
  "sequential": true,
  "site": "4",
  "stateMachine": 4,
  "taskMappings": [
    IssueCatalogDraftTaskMappingUpdateInput
  ],
  "tasksFallbackStateMachine": "4",
  "template": "4",
  "toolLegendAndComments": true
}

IssueCatalogDraftUpdateLog

Description

Represents a IssueCatalogDraftUpdateLog

Fields
Field NameDescription
at - DateTime
by - Account
byId - ID
Example
{
  "at": "2007-12-03T10:15:30Z",
  "by": Account,
  "byId": 4
}

IssueCatalogDraftUpdateLogWhereInput

Description

Represents a Where input for: IssueCatalogDraftUpdateLog

Fields
Input FieldDescription
at_eq - DateTimeField is equal to given value
at_exists - BooleanField is set and exists
at_gt - DateTimeField is greater than given value
at_gte - DateTimeField is greater or equal than given value
at_in - [DateTime]Given value includes field
at_lt - DateTimeField is lower than given value
at_lte - DateTimeField is lower or equal than given value
at_ne - DateTimeField is not equal to given value
at_nin - [DateTime]Given value does not includes field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
Example
{
  "at_eq": "2007-12-03T10:15:30Z",
  "at_exists": false,
  "at_gt": "2007-12-03T10:15:30Z",
  "at_gte": "2007-12-03T10:15:30Z",
  "at_in": ["2007-12-03T10:15:30Z"],
  "at_lt": "2007-12-03T10:15:30Z",
  "at_lte": "2007-12-03T10:15:30Z",
  "at_ne": "2007-12-03T10:15:30Z",
  "at_nin": ["2007-12-03T10:15:30Z"],
  "by_all": [4],
  "by_eq": "4",
  "by_exists": false,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": ["4"]
}

IssueCatalogDraftWhereInput

Description

Represents a Where input for: IssueCatalogDraft

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
acknowledgeRequired_eq - BooleanField is equal to given value
acknowledgeRequired_ne - BooleanField is not equal to given value
allowTracking_eq - BooleanField is equal to given value
allowTracking_ne - BooleanField is not equal to given value
approval - IssueCatalogDraftApprovalWhereInput
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedSkills_every - IssueCatalogDraftAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueCatalogDraftAssignedSkillWhereInput
assignedSkills_some - IssueCatalogDraftAssignedSkillWhereInput
conflictHandler_eq - IssueCatalogDraftConflictHandlerField is equal to given value
conflictHandler_exists - IssueCatalogDraftConflictHandlerField is set and exists
conflictHandler_in - [IssueCatalogDraftConflictHandler]Given value includes field
conflictHandler_ne - IssueCatalogDraftConflictHandlerField is not equal to given value
conflictHandler_nin - [IssueCatalogDraftConflictHandler]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
emailsToSendReport_all - [String]Field includes all given values.
emailsToSendReport_eq - [String]Given value is equal to field
emailsToSendReport_exists - Boolean
emailsToSendReport_in - [String]Field includes one of given value.
emailsToSendReport_nin - [String]Field does not include any of the given values.
filterTasksByLabels_eq - BooleanField is equal to given value
filterTasksByLabels_ne - BooleanField is not equal to given value
glarPrefix_contains - StringField contains given value, case-insensitive
glarPrefix_ends_with - StringField ends with given value, case-insensitive
glarPrefix_eq - StringField is equal to given value
glarPrefix_exists - BooleanField is set and exists
glarPrefix_in - [String]Given value includes field
glarPrefix_ne - StringField is not equal to given value
glarPrefix_nin - [String]Given value does not includes field
glarPrefix_not_contains - StringField does not contains given value, case-insensitive
glarPrefix_not_ends_with - StringField does not end with given value, case-insensitive
glarPrefix_not_starts_with - StringField does not start with given value, case-insensitive
glarPrefix_starts_with - StringField starts with given value, case-insensitive
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
isActive_eq - BooleanField is equal to given value
isActive_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
materialLegendAndComments_eq - BooleanField is equal to given value
materialLegendAndComments_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
needsApproval_eq - BooleanField is equal to given value
needsApproval_ne - BooleanField is not equal to given value
paperForm - IssueCatalogDraftPaperFormWhereInput
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
remarksOnTasks_eq - BooleanField is equal to given value
remarksOnTasks_ne - BooleanField is not equal to given value
report - IssueCatalogDraftReportWhereInput
requestDescription_eq - BooleanField is equal to given value
requestDescription_ne - BooleanField is not equal to given value
scheduleTasks_eq - BooleanField is equal to given value
scheduleTasks_ne - BooleanField is not equal to given value
scheduler_every - IssueCatalogDraftSchedulerWhereInput
scheduler_exists - Boolean
scheduler_none - IssueCatalogDraftSchedulerWhereInput
scheduler_some - IssueCatalogDraftSchedulerWhereInput
scoreInputs_eq - BooleanField is equal to given value
scoreInputs_ne - BooleanField is not equal to given value
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
stateMachine_all - [ID]Given value includes all in array
stateMachine_eq - IDField is equal to given value
stateMachine_exists - BooleanField is set and exists
stateMachine_in - [ID]Given value includes field
stateMachine_ne - IDField is not equal to given value
stateMachine_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskMappings_every - IssueCatalogDraftTaskMappingWhereInput
taskMappings_exists - Boolean
taskMappings_none - IssueCatalogDraftTaskMappingWhereInput
taskMappings_some - IssueCatalogDraftTaskMappingWhereInput
tasksFallbackStateMachine_all - [ID]Given value includes all in array
tasksFallbackStateMachine_eq - IDField is equal to given value
tasksFallbackStateMachine_exists - BooleanField is set and exists
tasksFallbackStateMachine_in - [ID]Given value includes field
tasksFallbackStateMachine_ne - IDField is not equal to given value
tasksFallbackStateMachine_nin - [ID]Given value does not include field
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
toolLegendAndComments_eq - BooleanField is equal to given value
toolLegendAndComments_ne - BooleanField is not equal to given value
updateCatalog_all - [ID]Given value includes all in array
updateCatalog_eq - IDField is equal to given value
updateCatalog_exists - BooleanField is set and exists
updateCatalog_in - [ID]Given value includes field
updateCatalog_ne - IDField is not equal to given value
updateCatalog_nin - [ID]Given value does not include field
updateLog_every - IssueCatalogDraftUpdateLogWhereInput
updateLog_exists - Boolean
updateLog_none - IssueCatalogDraftUpdateLogWhereInput
updateLog_some - IssueCatalogDraftUpdateLogWhereInput
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "acknowledgeRequired_eq": false,
  "acknowledgeRequired_ne": true,
  "allowTracking_eq": false,
  "allowTracking_ne": false,
  "approval": IssueCatalogDraftApprovalWhereInput,
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": ["4"],
  "assignedSkills_every": IssueCatalogDraftAssignedSkillWhereInput,
  "assignedSkills_exists": true,
  "assignedSkills_none": IssueCatalogDraftAssignedSkillWhereInput,
  "assignedSkills_some": IssueCatalogDraftAssignedSkillWhereInput,
  "conflictHandler_eq": "keepBoth",
  "conflictHandler_exists": "keepBoth",
  "conflictHandler_in": ["keepBoth"],
  "conflictHandler_ne": "keepBoth",
  "conflictHandler_nin": ["keepBoth"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "element_all": ["4"],
  "element_eq": "4",
  "element_exists": true,
  "element_in": [4],
  "element_ne": 4,
  "element_nin": ["4"],
  "emailsToSendReport_all": ["abc123"],
  "emailsToSendReport_eq": ["abc123"],
  "emailsToSendReport_exists": false,
  "emailsToSendReport_in": ["abc123"],
  "emailsToSendReport_nin": ["xyz789"],
  "filterTasksByLabels_eq": false,
  "filterTasksByLabels_ne": true,
  "glarPrefix_contains": "abc123",
  "glarPrefix_ends_with": "abc123",
  "glarPrefix_eq": "xyz789",
  "glarPrefix_exists": false,
  "glarPrefix_in": ["abc123"],
  "glarPrefix_ne": "abc123",
  "glarPrefix_nin": ["abc123"],
  "glarPrefix_not_contains": "xyz789",
  "glarPrefix_not_ends_with": "xyz789",
  "glarPrefix_not_starts_with": "xyz789",
  "glarPrefix_starts_with": "xyz789",
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "isActive_eq": false,
  "isActive_ne": true,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "materialLegendAndComments_eq": true,
  "materialLegendAndComments_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "needsApproval_eq": false,
  "needsApproval_ne": true,
  "paperForm": IssueCatalogDraftPaperFormWhereInput,
  "protected_eq": false,
  "protected_ne": true,
  "remarksOnTasks_eq": false,
  "remarksOnTasks_ne": true,
  "report": IssueCatalogDraftReportWhereInput,
  "requestDescription_eq": true,
  "requestDescription_ne": true,
  "scheduleTasks_eq": false,
  "scheduleTasks_ne": true,
  "scheduler_every": IssueCatalogDraftSchedulerWhereInput,
  "scheduler_exists": false,
  "scheduler_none": IssueCatalogDraftSchedulerWhereInput,
  "scheduler_some": IssueCatalogDraftSchedulerWhereInput,
  "scoreInputs_eq": false,
  "scoreInputs_ne": false,
  "sequential_eq": true,
  "sequential_ne": true,
  "site_all": [4],
  "site_eq": "4",
  "site_exists": false,
  "site_in": [4],
  "site_ne": "4",
  "site_nin": ["4"],
  "stateMachine_all": ["4"],
  "stateMachine_eq": 4,
  "stateMachine_exists": true,
  "stateMachine_in": [4],
  "stateMachine_ne": "4",
  "stateMachine_nin": ["4"],
  "system_eq": true,
  "system_ne": false,
  "taskMappings_every": IssueCatalogDraftTaskMappingWhereInput,
  "taskMappings_exists": false,
  "taskMappings_none": IssueCatalogDraftTaskMappingWhereInput,
  "taskMappings_some": IssueCatalogDraftTaskMappingWhereInput,
  "tasksFallbackStateMachine_all": ["4"],
  "tasksFallbackStateMachine_eq": "4",
  "tasksFallbackStateMachine_exists": false,
  "tasksFallbackStateMachine_in": ["4"],
  "tasksFallbackStateMachine_ne": "4",
  "tasksFallbackStateMachine_nin": ["4"],
  "template_all": ["4"],
  "template_eq": 4,
  "template_exists": true,
  "template_in": ["4"],
  "template_ne": "4",
  "template_nin": [4],
  "toolLegendAndComments_eq": false,
  "toolLegendAndComments_ne": true,
  "updateCatalog_all": ["4"],
  "updateCatalog_eq": 4,
  "updateCatalog_exists": false,
  "updateCatalog_in": [4],
  "updateCatalog_ne": 4,
  "updateCatalog_nin": ["4"],
  "updateLog_every": IssueCatalogDraftUpdateLogWhereInput,
  "updateLog_exists": true,
  "updateLog_none": IssueCatalogDraftUpdateLogWhereInput,
  "updateLog_some": IssueCatalogDraftUpdateLogWhereInput,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

IssueCatalogDraftWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueCatalogFolder

Description

Represents a IssueCatalogFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueCatalogFoldersCount - Int
issueCatalogsCount - Int
name - String!
parent - IssueCatalogFolderIssueCatalogFolder Parent
parentId - IDIssueCatalogFolder Parent
parentsTree - [IssueCatalogFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "issueCatalogFoldersCount": 123,
  "issueCatalogsCount": 987,
  "name": "abc123",
  "parent": IssueCatalogFolder,
  "parentId": "4",
  "parentsTree": [IssueCatalogFolder],
  "parentsTreeIds": [4],
  "protected": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

IssueCatalogFolderCreateInput

Description

Represents a IssueCatalogFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDIssueCatalogFolder Parent
Example
{
  "context": "xyz789",
  "name": "abc123",
  "parent": 4
}

IssueCatalogFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueCatalogFolderUpdateInput

Description

Represents a IssueCatalogFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDIssueCatalogFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": 4
}

IssueCatalogFolderWhereInput

Description

Represents a Where input for: IssueCatalogFolder

Fields
Input FieldDescription
OR - [OrIssueCatalogFolderWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrIssueCatalogFolderWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "context_contains": "xyz789",
  "context_ends_with": "abc123",
  "context_eq": "xyz789",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": false,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

IssueCatalogFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

IssueCatalogOrFolder

Example
IssueCatalog

IssueCatalogOrderByEnum

Values
Enum ValueDescription

_id_ASC

_id_DESC

approval_approvalsCount_ASC

approval_approvalsCount_DESC

approval_approvalsNeeded_ASC

approval_approvalsNeeded_DESC

approval_executionDate_ASC

approval_executionDate_DESC

archivedAt_ASC

archivedAt_DESC

conflictHandler_ASC

conflictHandler_DESC

createdAt_ASC

createdAt_DESC

createdBy_name_ASC

createdBy_name_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

element_name_ASC

element_name_DESC

glarPrefix_ASC

glarPrefix_DESC

labelValues_value_ASC

labelValues_value_DESC

name_ASC

name_DESC

site_name_ASC

site_name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueCatalogOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

approval_approvalsCount_ASC

approval_approvalsCount_DESC

approval_approvalsNeeded_ASC

approval_approvalsNeeded_DESC

approval_executionDate_ASC

approval_executionDate_DESC

conflictHandler_ASC

conflictHandler_DESC

createdAt_ASC

createdAt_DESC

createdBy_name_ASC

createdBy_name_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

element_name_ASC

element_name_DESC

glarPrefix_ASC

glarPrefix_DESC

name_ASC

name_DESC

paperForm_codedTemplate_ASC

paperForm_codedTemplate_DESC

paperForm_defaultTemplate_ASC

paperForm_defaultTemplate_DESC

paperForm_type_ASC

paperForm_type_DESC

report_codedTemplate_ASC

report_codedTemplate_DESC

report_defaultTemplate_ASC

report_defaultTemplate_DESC

report_type_ASC

report_type_DESC

site_name_ASC

site_name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueCatalogPaperForm

Description

Represents a IssueCatalogPaperForm

Fields
Field NameDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "abc123",
  "type": "abc123"
}

IssueCatalogPaperFormCreateInput

Description

Represents a IssueCatalogPaperFormCreateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "abc123",
  "type": "abc123"
}

IssueCatalogPaperFormUpdateInput

Description

Represents a IssueCatalogPaperFormUpdateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "abc123",
  "type": "xyz789"
}

IssueCatalogPaperFormWhereInput

Description

Represents a Where input for: IssueCatalogPaperForm

Fields
Input FieldDescription
codedTemplate_contains - StringField contains given value, case-insensitive
codedTemplate_ends_with - StringField ends with given value, case-insensitive
codedTemplate_eq - StringField is equal to given value
codedTemplate_exists - BooleanField is set and exists
codedTemplate_in - [String]Given value includes field
codedTemplate_ne - StringField is not equal to given value
codedTemplate_nin - [String]Given value does not includes field
codedTemplate_not_contains - StringField does not contains given value, case-insensitive
codedTemplate_not_ends_with - StringField does not end with given value, case-insensitive
codedTemplate_not_starts_with - StringField does not start with given value, case-insensitive
codedTemplate_starts_with - StringField starts with given value, case-insensitive
defaultTemplate_contains - StringField contains given value, case-insensitive
defaultTemplate_ends_with - StringField ends with given value, case-insensitive
defaultTemplate_eq - StringField is equal to given value
defaultTemplate_exists - BooleanField is set and exists
defaultTemplate_in - [String]Given value includes field
defaultTemplate_ne - StringField is not equal to given value
defaultTemplate_nin - [String]Given value does not includes field
defaultTemplate_not_contains - StringField does not contains given value, case-insensitive
defaultTemplate_not_ends_with - StringField does not end with given value, case-insensitive
defaultTemplate_not_starts_with - StringField does not start with given value, case-insensitive
defaultTemplate_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "codedTemplate_contains": "abc123",
  "codedTemplate_ends_with": "abc123",
  "codedTemplate_eq": "xyz789",
  "codedTemplate_exists": false,
  "codedTemplate_in": ["abc123"],
  "codedTemplate_ne": "xyz789",
  "codedTemplate_nin": ["xyz789"],
  "codedTemplate_not_contains": "abc123",
  "codedTemplate_not_ends_with": "abc123",
  "codedTemplate_not_starts_with": "xyz789",
  "codedTemplate_starts_with": "abc123",
  "defaultTemplate_contains": "xyz789",
  "defaultTemplate_ends_with": "xyz789",
  "defaultTemplate_eq": "abc123",
  "defaultTemplate_exists": false,
  "defaultTemplate_in": ["abc123"],
  "defaultTemplate_ne": "abc123",
  "defaultTemplate_nin": ["abc123"],
  "defaultTemplate_not_contains": "xyz789",
  "defaultTemplate_not_ends_with": "xyz789",
  "defaultTemplate_not_starts_with": "xyz789",
  "defaultTemplate_starts_with": "abc123",
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": false,
  "type_in": ["xyz789"],
  "type_ne": "xyz789",
  "type_nin": ["abc123"],
  "type_not_contains": "abc123",
  "type_not_ends_with": "xyz789",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "abc123"
}

IssueCatalogReport

Description

Represents a IssueCatalogReport

Fields
Field NameDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogReportDefaultTemplateOption
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "xyz789",
  "defaultTemplateOptions": IssueCatalogReportDefaultTemplateOption,
  "type": "abc123"
}

IssueCatalogReportCreateInput

Description

Represents a IssueCatalogReportCreateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogReportDefaultTemplateOptionCreateInput
type - String
Example
{
  "codedTemplate": "xyz789",
  "defaultTemplate": "xyz789",
  "defaultTemplateOptions": IssueCatalogReportDefaultTemplateOptionCreateInput,
  "type": "abc123"
}

IssueCatalogReportDefaultTemplateOption

Description

Represents a IssueCatalogReportDefaultTemplateOption

Fields
Field NameDescription
actionsFilesNotes - Boolean
alternativeLogo - File
alternativeLogoId - ID
attachments - IssueCatalogReportDefaultTemplateOptionAttachment
fontSize - String
footer - IssueCatalogReportDefaultTemplateOptionFooter
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogReportDefaultTemplateOptionTaskHeader
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogReportDefaultTemplateOptionWorkOrderHeader
Example
{
  "actionsFilesNotes": false,
  "alternativeLogo": File,
  "alternativeLogoId": 4,
  "attachments": IssueCatalogReportDefaultTemplateOptionAttachment,
  "fontSize": "abc123",
  "footer": IssueCatalogReportDefaultTemplateOptionFooter,
  "materialsTools": true,
  "notAnsweredQuestions": false,
  "results": false,
  "scores": true,
  "taskHeader": IssueCatalogReportDefaultTemplateOptionTaskHeader,
  "taskSpace": 987,
  "thumbnailSize": "abc123",
  "timesheets": true,
  "workOrderHeader": IssueCatalogReportDefaultTemplateOptionWorkOrderHeader
}

IssueCatalogReportDefaultTemplateOptionAttachment

Description

Represents a IssueCatalogReportDefaultTemplateOptionAttachment

Fields
Field NameDescription
active - Boolean
size - String
Example
{"active": false, "size": "xyz789"}

IssueCatalogReportDefaultTemplateOptionAttachmentCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionAttachmentCreateInput

Fields
Input FieldDescription
active - Boolean
size - String
Example
{"active": false, "size": "xyz789"}

IssueCatalogReportDefaultTemplateOptionAttachmentUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionAttachmentUpdateInput

Fields
Input FieldDescription
active - Boolean
size - String
Example
{"active": false, "size": "abc123"}

IssueCatalogReportDefaultTemplateOptionAttachmentWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOptionAttachment

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
size_contains - StringField contains given value, case-insensitive
size_ends_with - StringField ends with given value, case-insensitive
size_eq - StringField is equal to given value
size_exists - BooleanField is set and exists
size_in - [String]Given value includes field
size_ne - StringField is not equal to given value
size_nin - [String]Given value does not includes field
size_not_contains - StringField does not contains given value, case-insensitive
size_not_ends_with - StringField does not end with given value, case-insensitive
size_not_starts_with - StringField does not start with given value, case-insensitive
size_starts_with - StringField starts with given value, case-insensitive
Example
{
  "active_eq": false,
  "active_ne": false,
  "size_contains": "abc123",
  "size_ends_with": "abc123",
  "size_eq": "abc123",
  "size_exists": false,
  "size_in": ["abc123"],
  "size_ne": "xyz789",
  "size_nin": ["abc123"],
  "size_not_contains": "abc123",
  "size_not_ends_with": "xyz789",
  "size_not_starts_with": "abc123",
  "size_starts_with": "xyz789"
}

IssueCatalogReportDefaultTemplateOptionCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionCreateInput

Fields
Input FieldDescription
actionsFilesNotes - Boolean
alternativeLogo - ID
attachments - IssueCatalogReportDefaultTemplateOptionAttachmentCreateInput
fontSize - String
footer - IssueCatalogReportDefaultTemplateOptionFooterCreateInput
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogReportDefaultTemplateOptionTaskHeaderCreateInput
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderCreateInput
Example
{
  "actionsFilesNotes": false,
  "alternativeLogo": 4,
  "attachments": IssueCatalogReportDefaultTemplateOptionAttachmentCreateInput,
  "fontSize": "xyz789",
  "footer": IssueCatalogReportDefaultTemplateOptionFooterCreateInput,
  "materialsTools": false,
  "notAnsweredQuestions": true,
  "results": false,
  "scores": false,
  "taskHeader": IssueCatalogReportDefaultTemplateOptionTaskHeaderCreateInput,
  "taskSpace": 123,
  "thumbnailSize": "xyz789",
  "timesheets": false,
  "workOrderHeader": IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderCreateInput
}

IssueCatalogReportDefaultTemplateOptionFooter

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooter

Fields
Field NameDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooter
user - Boolean
Example
{
  "active": true,
  "date": false,
  "hour": true,
  "personalizedFooter": IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooter,
  "user": false
}

IssueCatalogReportDefaultTemplateOptionFooterCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooterCreateInput

Fields
Input FieldDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput
user - Boolean
Example
{
  "active": false,
  "date": false,
  "hour": true,
  "personalizedFooter": IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput,
  "user": true
}

IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooter

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooter

Fields
Field NameDescription
active - Boolean
text - String
Example
{"active": false, "text": "xyz789"}

IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterCreateInput

Fields
Input FieldDescription
active - Boolean
text - String
Example
{"active": false, "text": "xyz789"}

IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput

Fields
Input FieldDescription
active - Boolean
text - String
Example
{"active": true, "text": "abc123"}

IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooter

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "active_eq": false,
  "active_ne": false,
  "text_contains": "xyz789",
  "text_ends_with": "xyz789",
  "text_eq": "xyz789",
  "text_exists": false,
  "text_in": ["abc123"],
  "text_ne": "abc123",
  "text_nin": ["abc123"],
  "text_not_contains": "abc123",
  "text_not_ends_with": "xyz789",
  "text_not_starts_with": "xyz789",
  "text_starts_with": "xyz789"
}

IssueCatalogReportDefaultTemplateOptionFooterUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionFooterUpdateInput

Fields
Input FieldDescription
active - Boolean
date - Boolean
hour - Boolean
personalizedFooter - IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput
user - Boolean
Example
{
  "active": true,
  "date": true,
  "hour": false,
  "personalizedFooter": IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterUpdateInput,
  "user": false
}

IssueCatalogReportDefaultTemplateOptionFooterWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOptionFooter

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
date_eq - BooleanField is equal to given value
date_ne - BooleanField is not equal to given value
hour_eq - BooleanField is equal to given value
hour_ne - BooleanField is not equal to given value
personalizedFooter - IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput
user_eq - BooleanField is equal to given value
user_ne - BooleanField is not equal to given value
Example
{
  "active_eq": false,
  "active_ne": false,
  "date_eq": true,
  "date_ne": false,
  "hour_eq": false,
  "hour_ne": false,
  "personalizedFooter": IssueCatalogReportDefaultTemplateOptionFooterPersonalizedFooterWhereInput,
  "user_eq": false,
  "user_ne": false
}

IssueCatalogReportDefaultTemplateOptionTaskHeader

Description

Represents a IssueCatalogReportDefaultTemplateOptionTaskHeader

Fields
Field NameDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": true,
  "fields": ["xyz789"],
  "showAllRemarks": false
}

IssueCatalogReportDefaultTemplateOptionTaskHeaderCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionTaskHeaderCreateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": false,
  "fields": ["xyz789"],
  "showAllRemarks": false
}

IssueCatalogReportDefaultTemplateOptionTaskHeaderUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionTaskHeaderUpdateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
showAllRemarks - Boolean
Example
{
  "active": false,
  "fields": ["abc123"],
  "showAllRemarks": false
}

IssueCatalogReportDefaultTemplateOptionTaskHeaderWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOptionTaskHeader

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
fields_all - [String]Field includes all given values.
fields_eq - [String]Given value is equal to field
fields_exists - Boolean
fields_in - [String]Field includes one of given value.
fields_nin - [String]Field does not include any of the given values.
showAllRemarks_eq - BooleanField is equal to given value
showAllRemarks_ne - BooleanField is not equal to given value
Example
{
  "active_eq": true,
  "active_ne": false,
  "fields_all": ["xyz789"],
  "fields_eq": ["abc123"],
  "fields_exists": true,
  "fields_in": ["abc123"],
  "fields_nin": ["abc123"],
  "showAllRemarks_eq": true,
  "showAllRemarks_ne": true
}

IssueCatalogReportDefaultTemplateOptionUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionUpdateInput

Fields
Input FieldDescription
actionsFilesNotes - Boolean
alternativeLogo - ID
attachments - IssueCatalogReportDefaultTemplateOptionAttachmentUpdateInput
fontSize - String
footer - IssueCatalogReportDefaultTemplateOptionFooterUpdateInput
materialsTools - Boolean
notAnsweredQuestions - Boolean
results - Boolean
scores - Boolean
taskHeader - IssueCatalogReportDefaultTemplateOptionTaskHeaderUpdateInput
taskSpace - Int
thumbnailSize - String
timesheets - Boolean
workOrderHeader - IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderUpdateInput
Example
{
  "actionsFilesNotes": false,
  "alternativeLogo": 4,
  "attachments": IssueCatalogReportDefaultTemplateOptionAttachmentUpdateInput,
  "fontSize": "xyz789",
  "footer": IssueCatalogReportDefaultTemplateOptionFooterUpdateInput,
  "materialsTools": true,
  "notAnsweredQuestions": false,
  "results": true,
  "scores": false,
  "taskHeader": IssueCatalogReportDefaultTemplateOptionTaskHeaderUpdateInput,
  "taskSpace": 987,
  "thumbnailSize": "xyz789",
  "timesheets": false,
  "workOrderHeader": IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderUpdateInput
}

IssueCatalogReportDefaultTemplateOptionWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOption

Fields
Input FieldDescription
actionsFilesNotes_eq - BooleanField is equal to given value
actionsFilesNotes_ne - BooleanField is not equal to given value
alternativeLogo_all - [ID]Given value includes all in array
alternativeLogo_eq - IDField is equal to given value
alternativeLogo_exists - BooleanField is set and exists
alternativeLogo_in - [ID]Given value includes field
alternativeLogo_ne - IDField is not equal to given value
alternativeLogo_nin - [ID]Given value does not include field
attachments - IssueCatalogReportDefaultTemplateOptionAttachmentWhereInput
fontSize_contains - StringField contains given value, case-insensitive
fontSize_ends_with - StringField ends with given value, case-insensitive
fontSize_eq - StringField is equal to given value
fontSize_exists - BooleanField is set and exists
fontSize_in - [String]Given value includes field
fontSize_ne - StringField is not equal to given value
fontSize_nin - [String]Given value does not includes field
fontSize_not_contains - StringField does not contains given value, case-insensitive
fontSize_not_ends_with - StringField does not end with given value, case-insensitive
fontSize_not_starts_with - StringField does not start with given value, case-insensitive
fontSize_starts_with - StringField starts with given value, case-insensitive
footer - IssueCatalogReportDefaultTemplateOptionFooterWhereInput
materialsTools_eq - BooleanField is equal to given value
materialsTools_ne - BooleanField is not equal to given value
notAnsweredQuestions_eq - BooleanField is equal to given value
notAnsweredQuestions_ne - BooleanField is not equal to given value
results_eq - BooleanField is equal to given value
results_ne - BooleanField is not equal to given value
scores_eq - BooleanField is equal to given value
scores_ne - BooleanField is not equal to given value
taskHeader - IssueCatalogReportDefaultTemplateOptionTaskHeaderWhereInput
taskSpace_eq - IntField is equal to given value
taskSpace_exists - BooleanField is set and exists
taskSpace_gt - IntField is greater than given value
taskSpace_gte - IntField is greater or equal than given value
taskSpace_in - [Int]Given value includes field
taskSpace_lt - IntField is lower than given value
taskSpace_lte - IntField is lower or equal than given value
taskSpace_ne - IntField is not equal to given value
taskSpace_nin - [Int]Given value does not includes field
thumbnailSize_contains - StringField contains given value, case-insensitive
thumbnailSize_ends_with - StringField ends with given value, case-insensitive
thumbnailSize_eq - StringField is equal to given value
thumbnailSize_exists - BooleanField is set and exists
thumbnailSize_in - [String]Given value includes field
thumbnailSize_ne - StringField is not equal to given value
thumbnailSize_nin - [String]Given value does not includes field
thumbnailSize_not_contains - StringField does not contains given value, case-insensitive
thumbnailSize_not_ends_with - StringField does not end with given value, case-insensitive
thumbnailSize_not_starts_with - StringField does not start with given value, case-insensitive
thumbnailSize_starts_with - StringField starts with given value, case-insensitive
timesheets_eq - BooleanField is equal to given value
timesheets_ne - BooleanField is not equal to given value
workOrderHeader - IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderWhereInput
Example
{
  "actionsFilesNotes_eq": false,
  "actionsFilesNotes_ne": false,
  "alternativeLogo_all": ["4"],
  "alternativeLogo_eq": "4",
  "alternativeLogo_exists": false,
  "alternativeLogo_in": ["4"],
  "alternativeLogo_ne": 4,
  "alternativeLogo_nin": ["4"],
  "attachments": IssueCatalogReportDefaultTemplateOptionAttachmentWhereInput,
  "fontSize_contains": "xyz789",
  "fontSize_ends_with": "xyz789",
  "fontSize_eq": "abc123",
  "fontSize_exists": true,
  "fontSize_in": ["abc123"],
  "fontSize_ne": "xyz789",
  "fontSize_nin": ["abc123"],
  "fontSize_not_contains": "xyz789",
  "fontSize_not_ends_with": "xyz789",
  "fontSize_not_starts_with": "abc123",
  "fontSize_starts_with": "abc123",
  "footer": IssueCatalogReportDefaultTemplateOptionFooterWhereInput,
  "materialsTools_eq": false,
  "materialsTools_ne": false,
  "notAnsweredQuestions_eq": false,
  "notAnsweredQuestions_ne": false,
  "results_eq": false,
  "results_ne": false,
  "scores_eq": false,
  "scores_ne": true,
  "taskHeader": IssueCatalogReportDefaultTemplateOptionTaskHeaderWhereInput,
  "taskSpace_eq": 123,
  "taskSpace_exists": false,
  "taskSpace_gt": 987,
  "taskSpace_gte": 123,
  "taskSpace_in": [987],
  "taskSpace_lt": 123,
  "taskSpace_lte": 123,
  "taskSpace_ne": 123,
  "taskSpace_nin": [123],
  "thumbnailSize_contains": "xyz789",
  "thumbnailSize_ends_with": "xyz789",
  "thumbnailSize_eq": "abc123",
  "thumbnailSize_exists": true,
  "thumbnailSize_in": ["abc123"],
  "thumbnailSize_ne": "abc123",
  "thumbnailSize_nin": ["xyz789"],
  "thumbnailSize_not_contains": "xyz789",
  "thumbnailSize_not_ends_with": "abc123",
  "thumbnailSize_not_starts_with": "xyz789",
  "thumbnailSize_starts_with": "xyz789",
  "timesheets_eq": false,
  "timesheets_ne": false,
  "workOrderHeader": IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderWhereInput
}

IssueCatalogReportDefaultTemplateOptionWorkOrderHeader

Description

Represents a IssueCatalogReportDefaultTemplateOptionWorkOrderHeader

Fields
Field NameDescription
active - Boolean
fields - [String]
Example
{"active": false, "fields": ["abc123"]}

IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderCreateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderCreateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
Example
{"active": true, "fields": ["xyz789"]}

IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderUpdateInput

Description

Represents a IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderUpdateInput

Fields
Input FieldDescription
active - Boolean
fields - [String]
Example
{"active": false, "fields": ["abc123"]}

IssueCatalogReportDefaultTemplateOptionWorkOrderHeaderWhereInput

Description

Represents a Where input for: IssueCatalogReportDefaultTemplateOptionWorkOrderHeader

Fields
Input FieldDescription
active_eq - BooleanField is equal to given value
active_ne - BooleanField is not equal to given value
fields_all - [String]Field includes all given values.
fields_eq - [String]Given value is equal to field
fields_exists - Boolean
fields_in - [String]Field includes one of given value.
fields_nin - [String]Field does not include any of the given values.
Example
{
  "active_eq": true,
  "active_ne": false,
  "fields_all": ["xyz789"],
  "fields_eq": ["xyz789"],
  "fields_exists": false,
  "fields_in": ["abc123"],
  "fields_nin": ["xyz789"]
}

IssueCatalogReportUpdateInput

Description

Represents a IssueCatalogReportUpdateInput

Fields
Input FieldDescription
codedTemplate - String
defaultTemplate - String
defaultTemplateOptions - IssueCatalogReportDefaultTemplateOptionUpdateInput
type - String
Example
{
  "codedTemplate": "abc123",
  "defaultTemplate": "xyz789",
  "defaultTemplateOptions": IssueCatalogReportDefaultTemplateOptionUpdateInput,
  "type": "abc123"
}

IssueCatalogReportWhereInput

Description

Represents a Where input for: IssueCatalogReport

Fields
Input FieldDescription
codedTemplate_contains - StringField contains given value, case-insensitive
codedTemplate_ends_with - StringField ends with given value, case-insensitive
codedTemplate_eq - StringField is equal to given value
codedTemplate_exists - BooleanField is set and exists
codedTemplate_in - [String]Given value includes field
codedTemplate_ne - StringField is not equal to given value
codedTemplate_nin - [String]Given value does not includes field
codedTemplate_not_contains - StringField does not contains given value, case-insensitive
codedTemplate_not_ends_with - StringField does not end with given value, case-insensitive
codedTemplate_not_starts_with - StringField does not start with given value, case-insensitive
codedTemplate_starts_with - StringField starts with given value, case-insensitive
defaultTemplateOptions - IssueCatalogReportDefaultTemplateOptionWhereInput
defaultTemplate_contains - StringField contains given value, case-insensitive
defaultTemplate_ends_with - StringField ends with given value, case-insensitive
defaultTemplate_eq - StringField is equal to given value
defaultTemplate_exists - BooleanField is set and exists
defaultTemplate_in - [String]Given value includes field
defaultTemplate_ne - StringField is not equal to given value
defaultTemplate_nin - [String]Given value does not includes field
defaultTemplate_not_contains - StringField does not contains given value, case-insensitive
defaultTemplate_not_ends_with - StringField does not end with given value, case-insensitive
defaultTemplate_not_starts_with - StringField does not start with given value, case-insensitive
defaultTemplate_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "codedTemplate_contains": "abc123",
  "codedTemplate_ends_with": "xyz789",
  "codedTemplate_eq": "xyz789",
  "codedTemplate_exists": true,
  "codedTemplate_in": ["abc123"],
  "codedTemplate_ne": "abc123",
  "codedTemplate_nin": ["xyz789"],
  "codedTemplate_not_contains": "abc123",
  "codedTemplate_not_ends_with": "abc123",
  "codedTemplate_not_starts_with": "abc123",
  "codedTemplate_starts_with": "xyz789",
  "defaultTemplateOptions": IssueCatalogReportDefaultTemplateOptionWhereInput,
  "defaultTemplate_contains": "abc123",
  "defaultTemplate_ends_with": "xyz789",
  "defaultTemplate_eq": "xyz789",
  "defaultTemplate_exists": false,
  "defaultTemplate_in": ["xyz789"],
  "defaultTemplate_ne": "xyz789",
  "defaultTemplate_nin": ["abc123"],
  "defaultTemplate_not_contains": "abc123",
  "defaultTemplate_not_ends_with": "xyz789",
  "defaultTemplate_not_starts_with": "xyz789",
  "defaultTemplate_starts_with": "xyz789",
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": false,
  "type_in": ["abc123"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "xyz789",
  "type_not_starts_with": "abc123",
  "type_starts_with": "xyz789"
}

IssueCatalogScheduler

Description

Represents a IssueCatalogScheduler

Fields
Field NameDescription
amount - Int
dueDate - IssueCatalogSchedulerDueDate
name - String
scheduleSettings - [IssueCatalogSchedulerScheduleSetting]
shifts - IssueCatalogSchedulerShift
taskIds - [ID]
timeUnit - IssueCatalogSchedulerTimeUnit
Example
{
  "amount": 987,
  "dueDate": IssueCatalogSchedulerDueDate,
  "name": "abc123",
  "scheduleSettings": [
    IssueCatalogSchedulerScheduleSetting
  ],
  "shifts": IssueCatalogSchedulerShift,
  "taskIds": ["4"],
  "timeUnit": "days"
}

IssueCatalogSchedulerCreateInput

Description

Represents a IssueCatalogSchedulerCreateInput

Example
{
  "amount": 987,
  "dueDate": IssueCatalogSchedulerDueDateCreateInput,
  "name": "xyz789",
  "scheduleSettings": [
    IssueCatalogSchedulerScheduleSettingCreateInput
  ],
  "shifts": IssueCatalogSchedulerShiftCreateInput,
  "taskIds": [4],
  "timeUnit": "days"
}

IssueCatalogSchedulerDueDate

Description

Represents a IssueCatalogSchedulerDueDate

Fields
Field NameDescription
_id - ID
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "_id": "4",
  "allowPast": false,
  "distance": 987,
  "timeUnit": "xyz789"
}

IssueCatalogSchedulerDueDateCreateInput

Description

Represents a IssueCatalogSchedulerDueDateCreateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": true,
  "distance": 123,
  "timeUnit": "xyz789"
}

IssueCatalogSchedulerDueDateUpdateInput

Description

Represents a IssueCatalogSchedulerDueDateUpdateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": false,
  "distance": 987,
  "timeUnit": "xyz789"
}

IssueCatalogSchedulerDueDateWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerDueDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
allowPast_eq - BooleanField is equal to given value
allowPast_ne - BooleanField is not equal to given value
distance_eq - IntField is equal to given value
distance_exists - BooleanField is set and exists
distance_gt - IntField is greater than given value
distance_gte - IntField is greater or equal than given value
distance_in - [Int]Given value includes field
distance_lt - IntField is lower than given value
distance_lte - IntField is lower or equal than given value
distance_ne - IntField is not equal to given value
distance_nin - [Int]Given value does not includes field
timeUnit_contains - StringField contains given value, case-insensitive
timeUnit_ends_with - StringField ends with given value, case-insensitive
timeUnit_eq - StringField is equal to given value
timeUnit_exists - BooleanField is set and exists
timeUnit_in - [String]Given value includes field
timeUnit_ne - StringField is not equal to given value
timeUnit_nin - [String]Given value does not includes field
timeUnit_not_contains - StringField does not contains given value, case-insensitive
timeUnit_not_ends_with - StringField does not end with given value, case-insensitive
timeUnit_not_starts_with - StringField does not start with given value, case-insensitive
timeUnit_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "allowPast_eq": true,
  "allowPast_ne": true,
  "distance_eq": 123,
  "distance_exists": false,
  "distance_gt": 123,
  "distance_gte": 987,
  "distance_in": [123],
  "distance_lt": 123,
  "distance_lte": 987,
  "distance_ne": 987,
  "distance_nin": [123],
  "timeUnit_contains": "xyz789",
  "timeUnit_ends_with": "xyz789",
  "timeUnit_eq": "abc123",
  "timeUnit_exists": false,
  "timeUnit_in": ["xyz789"],
  "timeUnit_ne": "xyz789",
  "timeUnit_nin": ["xyz789"],
  "timeUnit_not_contains": "abc123",
  "timeUnit_not_ends_with": "xyz789",
  "timeUnit_not_starts_with": "xyz789",
  "timeUnit_starts_with": "xyz789"
}

IssueCatalogSchedulerScheduleSetting

Description

Represents a IssueCatalogSchedulerScheduleSetting

Fields
Field NameDescription
_id - ID
dueDate - IssueCatalogSchedulerScheduleSettingDueDate
element - Element
elementId - ID
initialDate - DateTime
site - Site
siteId - ID
Example
{
  "_id": 4,
  "dueDate": IssueCatalogSchedulerScheduleSettingDueDate,
  "element": Element,
  "elementId": "4",
  "initialDate": "2007-12-03T10:15:30Z",
  "site": Site,
  "siteId": 4
}

IssueCatalogSchedulerScheduleSettingCreateInput

Description

Represents a IssueCatalogSchedulerScheduleSettingCreateInput

Fields
Input FieldDescription
dueDate - IssueCatalogSchedulerScheduleSettingDueDateCreateInput
element - ID
initialDate - DateTime
site - ID
Example
{
  "dueDate": IssueCatalogSchedulerScheduleSettingDueDateCreateInput,
  "element": "4",
  "initialDate": "2007-12-03T10:15:30Z",
  "site": 4
}

IssueCatalogSchedulerScheduleSettingDueDate

Description

Represents a IssueCatalogSchedulerScheduleSettingDueDate

Fields
Field NameDescription
_id - ID
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "_id": 4,
  "allowPast": false,
  "distance": 123,
  "timeUnit": "xyz789"
}

IssueCatalogSchedulerScheduleSettingDueDateCreateInput

Description

Represents a IssueCatalogSchedulerScheduleSettingDueDateCreateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": true,
  "distance": 123,
  "timeUnit": "abc123"
}

IssueCatalogSchedulerScheduleSettingDueDateUpdateInput

Description

Represents a IssueCatalogSchedulerScheduleSettingDueDateUpdateInput

Fields
Input FieldDescription
allowPast - Boolean
distance - Int
timeUnit - String
Example
{
  "allowPast": false,
  "distance": 987,
  "timeUnit": "abc123"
}

IssueCatalogSchedulerScheduleSettingDueDateWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerScheduleSettingDueDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
allowPast_eq - BooleanField is equal to given value
allowPast_ne - BooleanField is not equal to given value
distance_eq - IntField is equal to given value
distance_exists - BooleanField is set and exists
distance_gt - IntField is greater than given value
distance_gte - IntField is greater or equal than given value
distance_in - [Int]Given value includes field
distance_lt - IntField is lower than given value
distance_lte - IntField is lower or equal than given value
distance_ne - IntField is not equal to given value
distance_nin - [Int]Given value does not includes field
timeUnit_contains - StringField contains given value, case-insensitive
timeUnit_ends_with - StringField ends with given value, case-insensitive
timeUnit_eq - StringField is equal to given value
timeUnit_exists - BooleanField is set and exists
timeUnit_in - [String]Given value includes field
timeUnit_ne - StringField is not equal to given value
timeUnit_nin - [String]Given value does not includes field
timeUnit_not_contains - StringField does not contains given value, case-insensitive
timeUnit_not_ends_with - StringField does not end with given value, case-insensitive
timeUnit_not_starts_with - StringField does not start with given value, case-insensitive
timeUnit_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "allowPast_eq": false,
  "allowPast_ne": true,
  "distance_eq": 987,
  "distance_exists": false,
  "distance_gt": 123,
  "distance_gte": 987,
  "distance_in": [987],
  "distance_lt": 123,
  "distance_lte": 123,
  "distance_ne": 123,
  "distance_nin": [123],
  "timeUnit_contains": "xyz789",
  "timeUnit_ends_with": "xyz789",
  "timeUnit_eq": "xyz789",
  "timeUnit_exists": false,
  "timeUnit_in": ["xyz789"],
  "timeUnit_ne": "xyz789",
  "timeUnit_nin": ["abc123"],
  "timeUnit_not_contains": "xyz789",
  "timeUnit_not_ends_with": "xyz789",
  "timeUnit_not_starts_with": "abc123",
  "timeUnit_starts_with": "abc123"
}

IssueCatalogSchedulerScheduleSettingUpdateInput

Description

Represents a IssueCatalogSchedulerScheduleSettingUpdateInput

Fields
Input FieldDescription
dueDate - IssueCatalogSchedulerScheduleSettingDueDateUpdateInput
element - ID
initialDate - DateTime
site - ID
Example
{
  "dueDate": IssueCatalogSchedulerScheduleSettingDueDateUpdateInput,
  "element": 4,
  "initialDate": "2007-12-03T10:15:30Z",
  "site": 4
}

IssueCatalogSchedulerScheduleSettingWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerScheduleSetting

Fields
Input FieldDescription
OR - [OrIssueCatalogSchedulerScheduleSettingWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
dueDate - IssueCatalogSchedulerScheduleSettingDueDateWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
initialDate_eq - DateTimeField is equal to given value
initialDate_exists - BooleanField is set and exists
initialDate_gt - DateTimeField is greater than given value
initialDate_gte - DateTimeField is greater or equal than given value
initialDate_in - [DateTime]Given value includes field
initialDate_lt - DateTimeField is lower than given value
initialDate_lte - DateTimeField is lower or equal than given value
initialDate_ne - DateTimeField is not equal to given value
initialDate_nin - [DateTime]Given value does not includes field
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
Example
{
  "OR": [
    OrIssueCatalogSchedulerScheduleSettingWhereInput
  ],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "dueDate": IssueCatalogSchedulerScheduleSettingDueDateWhereInput,
  "element_all": ["4"],
  "element_eq": 4,
  "element_exists": true,
  "element_in": [4],
  "element_ne": 4,
  "element_nin": [4],
  "initialDate_eq": "2007-12-03T10:15:30Z",
  "initialDate_exists": false,
  "initialDate_gt": "2007-12-03T10:15:30Z",
  "initialDate_gte": "2007-12-03T10:15:30Z",
  "initialDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "initialDate_lt": "2007-12-03T10:15:30Z",
  "initialDate_lte": "2007-12-03T10:15:30Z",
  "initialDate_ne": "2007-12-03T10:15:30Z",
  "initialDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "site_all": ["4"],
  "site_eq": 4,
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": 4,
  "site_nin": ["4"]
}

IssueCatalogSchedulerShift

Example
{
  "friday": [IssueCatalogSchedulerShiftFriday],
  "monday": [IssueCatalogSchedulerShiftMonday],
  "saturday": [IssueCatalogSchedulerShiftSaturday],
  "sunday": [IssueCatalogSchedulerShiftSunday],
  "thursday": [IssueCatalogSchedulerShiftThursday],
  "tuesday": [IssueCatalogSchedulerShiftTuesday],
  "wednesday": [IssueCatalogSchedulerShiftWednesday]
}

IssueCatalogSchedulerShiftCreateInput

Example
{
  "friday": [IssueCatalogSchedulerShiftFridayCreateInput],
  "monday": [IssueCatalogSchedulerShiftMondayCreateInput],
  "saturday": [
    IssueCatalogSchedulerShiftSaturdayCreateInput
  ],
  "sunday": [IssueCatalogSchedulerShiftSundayCreateInput],
  "thursday": [
    IssueCatalogSchedulerShiftThursdayCreateInput
  ],
  "tuesday": [
    IssueCatalogSchedulerShiftTuesdayCreateInput
  ],
  "wednesday": [
    IssueCatalogSchedulerShiftWednesdayCreateInput
  ]
}

IssueCatalogSchedulerShiftFriday

Description

Represents a IssueCatalogSchedulerShiftFriday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftFridayCreateInput

Description

Represents a IssueCatalogSchedulerShiftFridayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftFridayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftFridayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 123}

IssueCatalogSchedulerShiftFridayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftFriday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 987,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 987,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [123],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 987,
  "minutes_gte": 987,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [123]
}

IssueCatalogSchedulerShiftMonday

Description

Represents a IssueCatalogSchedulerShiftMonday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogSchedulerShiftMondayCreateInput

Description

Represents a IssueCatalogSchedulerShiftMondayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftMondayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftMondayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftMondayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftMonday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": true,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [987],
  "hour_lt": 987,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 987,
  "minutes_gte": 123,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 123,
  "minutes_ne": 123,
  "minutes_nin": [123]
}

IssueCatalogSchedulerShiftSaturday

Description

Represents a IssueCatalogSchedulerShiftSaturday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogSchedulerShiftSaturdayCreateInput

Description

Represents a IssueCatalogSchedulerShiftSaturdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogSchedulerShiftSaturdayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftSaturdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftSaturdayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftSaturday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": true,
  "hour_gt": 987,
  "hour_gte": 123,
  "hour_in": [123],
  "hour_lt": 123,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [123],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 987,
  "minutes_gte": 987,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 987,
  "minutes_ne": 123,
  "minutes_nin": [123]
}

IssueCatalogSchedulerShiftSunday

Description

Represents a IssueCatalogSchedulerShiftSunday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 987}

IssueCatalogSchedulerShiftSundayCreateInput

Description

Represents a IssueCatalogSchedulerShiftSundayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftSundayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftSundayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 987}

IssueCatalogSchedulerShiftSundayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftSunday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 987,
  "hour_gte": 987,
  "hour_in": [123],
  "hour_lt": 123,
  "hour_lte": 123,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": false,
  "minutes_gt": 987,
  "minutes_gte": 123,
  "minutes_in": [123],
  "minutes_lt": 123,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [123]
}

IssueCatalogSchedulerShiftThursday

Description

Represents a IssueCatalogSchedulerShiftThursday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftThursdayCreateInput

Description

Represents a IssueCatalogSchedulerShiftThursdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 123, "minutes": 123}

IssueCatalogSchedulerShiftThursdayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftThursdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 987}

IssueCatalogSchedulerShiftThursdayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftThursday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": true,
  "hour_gt": 987,
  "hour_gte": 987,
  "hour_in": [987],
  "hour_lt": 987,
  "hour_lte": 987,
  "hour_ne": 987,
  "hour_nin": [987],
  "minutes_eq": 987,
  "minutes_exists": true,
  "minutes_gt": 123,
  "minutes_gte": 123,
  "minutes_in": [987],
  "minutes_lt": 987,
  "minutes_lte": 987,
  "minutes_ne": 123,
  "minutes_nin": [987]
}

IssueCatalogSchedulerShiftTuesday

Description

Represents a IssueCatalogSchedulerShiftTuesday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftTuesdayCreateInput

Description

Represents a IssueCatalogSchedulerShiftTuesdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftTuesdayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftTuesdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 123, "minutes": 123}

IssueCatalogSchedulerShiftTuesdayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftTuesday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 123,
  "hour_exists": false,
  "hour_gt": 987,
  "hour_gte": 123,
  "hour_in": [987],
  "hour_lt": 987,
  "hour_lte": 123,
  "hour_ne": 987,
  "hour_nin": [123],
  "minutes_eq": 123,
  "minutes_exists": false,
  "minutes_gt": 123,
  "minutes_gte": 123,
  "minutes_in": [987],
  "minutes_lt": 123,
  "minutes_lte": 123,
  "minutes_ne": 987,
  "minutes_nin": [987]
}

IssueCatalogSchedulerShiftUpdateInput

Example
{
  "friday": [IssueCatalogSchedulerShiftFridayUpdateInput],
  "monday": [IssueCatalogSchedulerShiftMondayUpdateInput],
  "saturday": [
    IssueCatalogSchedulerShiftSaturdayUpdateInput
  ],
  "sunday": [IssueCatalogSchedulerShiftSundayUpdateInput],
  "thursday": [
    IssueCatalogSchedulerShiftThursdayUpdateInput
  ],
  "tuesday": [
    IssueCatalogSchedulerShiftTuesdayUpdateInput
  ],
  "wednesday": [
    IssueCatalogSchedulerShiftWednesdayUpdateInput
  ]
}

IssueCatalogSchedulerShiftWednesday

Description

Represents a IssueCatalogSchedulerShiftWednesday

Fields
Field NameDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 123}

IssueCatalogSchedulerShiftWednesdayCreateInput

Description

Represents a IssueCatalogSchedulerShiftWednesdayCreateInput

Fields
Input FieldDescription
hour - Int!
minutes - Int!
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftWednesdayUpdateInput

Description

Represents a IssueCatalogSchedulerShiftWednesdayUpdateInput

Fields
Input FieldDescription
hour - Int
minutes - Int
Example
{"hour": 987, "minutes": 987}

IssueCatalogSchedulerShiftWednesdayWhereInput

Description

Represents a Where input for: IssueCatalogSchedulerShiftWednesday

Fields
Input FieldDescription
hour_eq - IntField is equal to given value
hour_exists - BooleanField is set and exists
hour_gt - IntField is greater than given value
hour_gte - IntField is greater or equal than given value
hour_in - [Int]Given value includes field
hour_lt - IntField is lower than given value
hour_lte - IntField is lower or equal than given value
hour_ne - IntField is not equal to given value
hour_nin - [Int]Given value does not includes field
minutes_eq - IntField is equal to given value
minutes_exists - BooleanField is set and exists
minutes_gt - IntField is greater than given value
minutes_gte - IntField is greater or equal than given value
minutes_in - [Int]Given value includes field
minutes_lt - IntField is lower than given value
minutes_lte - IntField is lower or equal than given value
minutes_ne - IntField is not equal to given value
minutes_nin - [Int]Given value does not includes field
Example
{
  "hour_eq": 987,
  "hour_exists": false,
  "hour_gt": 123,
  "hour_gte": 123,
  "hour_in": [987],
  "hour_lt": 123,
  "hour_lte": 987,
  "hour_ne": 123,
  "hour_nin": [987],
  "minutes_eq": 123,
  "minutes_exists": false,
  "minutes_gt": 123,
  "minutes_gte": 123,
  "minutes_in": [987],
  "minutes_lt": 987,
  "minutes_lte": 987,
  "minutes_ne": 987,
  "minutes_nin": [987]
}

IssueCatalogSchedulerShiftWhereInput

Example
{
  "friday_every": IssueCatalogSchedulerShiftFridayWhereInput,
  "friday_exists": false,
  "friday_none": IssueCatalogSchedulerShiftFridayWhereInput,
  "friday_some": IssueCatalogSchedulerShiftFridayWhereInput,
  "monday_every": IssueCatalogSchedulerShiftMondayWhereInput,
  "monday_exists": true,
  "monday_none": IssueCatalogSchedulerShiftMondayWhereInput,
  "monday_some": IssueCatalogSchedulerShiftMondayWhereInput,
  "saturday_every": IssueCatalogSchedulerShiftSaturdayWhereInput,
  "saturday_exists": false,
  "saturday_none": IssueCatalogSchedulerShiftSaturdayWhereInput,
  "saturday_some": IssueCatalogSchedulerShiftSaturdayWhereInput,
  "sunday_every": IssueCatalogSchedulerShiftSundayWhereInput,
  "sunday_exists": false,
  "sunday_none": IssueCatalogSchedulerShiftSundayWhereInput,
  "sunday_some": IssueCatalogSchedulerShiftSundayWhereInput,
  "thursday_every": IssueCatalogSchedulerShiftThursdayWhereInput,
  "thursday_exists": false,
  "thursday_none": IssueCatalogSchedulerShiftThursdayWhereInput,
  "thursday_some": IssueCatalogSchedulerShiftThursdayWhereInput,
  "tuesday_every": IssueCatalogSchedulerShiftTuesdayWhereInput,
  "tuesday_exists": false,
  "tuesday_none": IssueCatalogSchedulerShiftTuesdayWhereInput,
  "tuesday_some": IssueCatalogSchedulerShiftTuesdayWhereInput,
  "wednesday_every": IssueCatalogSchedulerShiftWednesdayWhereInput,
  "wednesday_exists": false,
  "wednesday_none": IssueCatalogSchedulerShiftWednesdayWhereInput,
  "wednesday_some": IssueCatalogSchedulerShiftWednesdayWhereInput
}

IssueCatalogSchedulerTimeUnit

Values
Enum ValueDescription

days

hours

months

shifts

specific

weeks

years

Example
"days"

IssueCatalogSchedulerType

Fields
Input FieldDescription
amount - Int
name - String
scheduleSettings - [IssueCatalogSchedulerScheduleSettingCreateInput]
shifts - IssueCatalogSchedulerShiftCreateInput
taskIds - [ID]
timeUnit - IssueCatalogSchedulerTimeUnit
Example
{
  "amount": 123,
  "name": "abc123",
  "scheduleSettings": [
    IssueCatalogSchedulerScheduleSettingCreateInput
  ],
  "shifts": IssueCatalogSchedulerShiftCreateInput,
  "taskIds": ["4"],
  "timeUnit": "days"
}

IssueCatalogSchedulerUpdateInput

Description

Represents a IssueCatalogSchedulerUpdateInput

Example
{
  "amount": 987,
  "dueDate": IssueCatalogSchedulerDueDateUpdateInput,
  "name": "abc123",
  "scheduleSettings": [
    IssueCatalogSchedulerScheduleSettingUpdateInput
  ],
  "shifts": IssueCatalogSchedulerShiftUpdateInput,
  "taskIds": ["4"],
  "timeUnit": "days"
}

IssueCatalogSchedulerWhereInput

Description

Represents a Where input for: IssueCatalogScheduler

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
dueDate - IssueCatalogSchedulerDueDateWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
scheduleSettings_every - IssueCatalogSchedulerScheduleSettingWhereInput
scheduleSettings_exists - Boolean
scheduleSettings_none - IssueCatalogSchedulerScheduleSettingWhereInput
scheduleSettings_some - IssueCatalogSchedulerScheduleSettingWhereInput
shifts - IssueCatalogSchedulerShiftWhereInput
taskIds_all - [ID]Field includes all given values.
taskIds_eq - [ID]Given value is equal to field
taskIds_exists - Boolean
taskIds_in - [ID]Field includes one of given value.
taskIds_nin - [ID]Field does not include any of the given values.
timeUnit_eq - IssueCatalogSchedulerTimeUnitField is equal to given value
timeUnit_exists - IssueCatalogSchedulerTimeUnitField is set and exists
timeUnit_in - [IssueCatalogSchedulerTimeUnit]Given value includes field
timeUnit_ne - IssueCatalogSchedulerTimeUnitField is not equal to given value
timeUnit_nin - [IssueCatalogSchedulerTimeUnit]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": true,
  "amount_gt": 123,
  "amount_gte": 123,
  "amount_in": [987],
  "amount_lt": 987,
  "amount_lte": 123,
  "amount_ne": 987,
  "amount_nin": [987],
  "dueDate": IssueCatalogSchedulerDueDateWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "scheduleSettings_every": IssueCatalogSchedulerScheduleSettingWhereInput,
  "scheduleSettings_exists": false,
  "scheduleSettings_none": IssueCatalogSchedulerScheduleSettingWhereInput,
  "scheduleSettings_some": IssueCatalogSchedulerScheduleSettingWhereInput,
  "shifts": IssueCatalogSchedulerShiftWhereInput,
  "taskIds_all": [4],
  "taskIds_eq": ["4"],
  "taskIds_exists": true,
  "taskIds_in": [4],
  "taskIds_nin": [4],
  "timeUnit_eq": "days",
  "timeUnit_exists": "days",
  "timeUnit_in": ["days"],
  "timeUnit_ne": "days",
  "timeUnit_nin": ["days"]
}

IssueCatalogUpdateInput

Description

Represents a IssueCatalogUpdateInput

Fields
Input FieldDescription
acknowledgeRequired - Boolean
allowTracking - Boolean
approval - IssueCatalogApprovalUpdateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [IssueCatalogAssignedSkillUpdateInput]
conflictHandler - IssueCatalogConflictHandler
description - StringIssue Name
element - ID
emailsToSendReport - [String]
filterTasksByLabels - Boolean
folder - IDIssueCatalog Folder
glarPrefix - StringIssue glarID prefix
inputs - [InputUpdateInput]
isActive - Boolean
labelValues - [ID]
materialLegendAndComments - Boolean
name - StringIssue Name
paperForm - IssueCatalogPaperFormUpdateInput
remarksOnTasks - Boolean
report - IssueCatalogReportUpdateInput
requestDescription - Boolean
scheduleTasks - Boolean
scheduler - [IssueCatalogSchedulerUpdateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue Tasks must be executed sequentially
site - ID
stateMachine - IDThis Issue State-Machine
tasksFallbackStateMachine - IDThis Issue task fallback State-Machine
template - IDIf this Issue Template
toolLegendAndComments - Boolean
Example
{
  "acknowledgeRequired": false,
  "allowTracking": true,
  "approval": IssueCatalogApprovalUpdateInput,
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "assignedSkills": [
    IssueCatalogAssignedSkillUpdateInput
  ],
  "conflictHandler": "keepBoth",
  "description": "abc123",
  "element": "4",
  "emailsToSendReport": ["abc123"],
  "filterTasksByLabels": false,
  "folder": "4",
  "glarPrefix": "abc123",
  "inputs": [InputUpdateInput],
  "isActive": true,
  "labelValues": [4],
  "materialLegendAndComments": true,
  "name": "abc123",
  "paperForm": IssueCatalogPaperFormUpdateInput,
  "remarksOnTasks": true,
  "report": IssueCatalogReportUpdateInput,
  "requestDescription": true,
  "scheduleTasks": false,
  "scheduler": [IssueCatalogSchedulerUpdateInput],
  "scoreInputs": false,
  "sequential": false,
  "site": "4",
  "stateMachine": 4,
  "tasksFallbackStateMachine": "4",
  "template": 4,
  "toolLegendAndComments": false
}

IssueCatalogUpdateLog

Description

Represents a IssueCatalogUpdateLog

Fields
Field NameDescription
at - DateTime
by - Account
byId - ID
Example
{
  "at": "2007-12-03T10:15:30Z",
  "by": Account,
  "byId": 4
}

IssueCatalogUpdateLogWhereInput

Description

Represents a Where input for: IssueCatalogUpdateLog

Fields
Input FieldDescription
at_eq - DateTimeField is equal to given value
at_exists - BooleanField is set and exists
at_gt - DateTimeField is greater than given value
at_gte - DateTimeField is greater or equal than given value
at_in - [DateTime]Given value includes field
at_lt - DateTimeField is lower than given value
at_lte - DateTimeField is lower or equal than given value
at_ne - DateTimeField is not equal to given value
at_nin - [DateTime]Given value does not includes field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
Example
{
  "at_eq": "2007-12-03T10:15:30Z",
  "at_exists": false,
  "at_gt": "2007-12-03T10:15:30Z",
  "at_gte": "2007-12-03T10:15:30Z",
  "at_in": ["2007-12-03T10:15:30Z"],
  "at_lt": "2007-12-03T10:15:30Z",
  "at_lte": "2007-12-03T10:15:30Z",
  "at_ne": "2007-12-03T10:15:30Z",
  "at_nin": ["2007-12-03T10:15:30Z"],
  "by_all": [4],
  "by_eq": "4",
  "by_exists": false,
  "by_in": [4],
  "by_ne": 4,
  "by_nin": ["4"]
}

IssueCatalogWhereInput

Description

Represents a Where input for: IssueCatalog

Fields
Input FieldDescription
OR - [OrIssueCatalogWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
acknowledgeRequired_eq - BooleanField is equal to given value
acknowledgeRequired_ne - BooleanField is not equal to given value
allowTracking_eq - BooleanField is equal to given value
allowTracking_ne - BooleanField is not equal to given value
approval - IssueCatalogApprovalWhereInput
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedSkills_every - IssueCatalogAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueCatalogAssignedSkillWhereInput
assignedSkills_some - IssueCatalogAssignedSkillWhereInput
conflictHandler_eq - IssueCatalogConflictHandlerField is equal to given value
conflictHandler_exists - IssueCatalogConflictHandlerField is set and exists
conflictHandler_in - [IssueCatalogConflictHandler]Given value includes field
conflictHandler_ne - IssueCatalogConflictHandlerField is not equal to given value
conflictHandler_nin - [IssueCatalogConflictHandler]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
emailsToSendReport_all - [String]Field includes all given values.
emailsToSendReport_eq - [String]Given value is equal to field
emailsToSendReport_exists - Boolean
emailsToSendReport_in - [String]Field includes one of given value.
emailsToSendReport_nin - [String]Field does not include any of the given values.
filterTasksByLabels_eq - BooleanField is equal to given value
filterTasksByLabels_ne - BooleanField is not equal to given value
folder - IssueCatalogFolderWhereInput
glarPrefix_contains - StringField contains given value, case-insensitive
glarPrefix_ends_with - StringField ends with given value, case-insensitive
glarPrefix_eq - StringField is equal to given value
glarPrefix_exists - BooleanField is set and exists
glarPrefix_in - [String]Given value includes field
glarPrefix_ne - StringField is not equal to given value
glarPrefix_nin - [String]Given value does not includes field
glarPrefix_not_contains - StringField does not contains given value, case-insensitive
glarPrefix_not_ends_with - StringField does not end with given value, case-insensitive
glarPrefix_not_starts_with - StringField does not start with given value, case-insensitive
glarPrefix_starts_with - StringField starts with given value, case-insensitive
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
isActive_eq - BooleanField is equal to given value
isActive_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
materialLegendAndComments_eq - BooleanField is equal to given value
materialLegendAndComments_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
needsApproval_eq - BooleanField is equal to given value
needsApproval_ne - BooleanField is not equal to given value
paperForm - IssueCatalogPaperFormWhereInput
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
remarksOnTasks_eq - BooleanField is equal to given value
remarksOnTasks_ne - BooleanField is not equal to given value
report - IssueCatalogReportWhereInput
requestDescription_eq - BooleanField is equal to given value
requestDescription_ne - BooleanField is not equal to given value
scheduleTasks_eq - BooleanField is equal to given value
scheduleTasks_ne - BooleanField is not equal to given value
scheduler_every - IssueCatalogSchedulerWhereInput
scheduler_exists - Boolean
scheduler_none - IssueCatalogSchedulerWhereInput
scheduler_some - IssueCatalogSchedulerWhereInput
scoreInputs_eq - BooleanField is equal to given value
scoreInputs_ne - BooleanField is not equal to given value
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
stateMachine_all - [ID]Given value includes all in array
stateMachine_eq - IDField is equal to given value
stateMachine_exists - BooleanField is set and exists
stateMachine_in - [ID]Given value includes field
stateMachine_ne - IDField is not equal to given value
stateMachine_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
tasksFallbackStateMachine_all - [ID]Given value includes all in array
tasksFallbackStateMachine_eq - IDField is equal to given value
tasksFallbackStateMachine_exists - BooleanField is set and exists
tasksFallbackStateMachine_in - [ID]Given value includes field
tasksFallbackStateMachine_ne - IDField is not equal to given value
tasksFallbackStateMachine_nin - [ID]Given value does not include field
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
toolLegendAndComments_eq - BooleanField is equal to given value
toolLegendAndComments_ne - BooleanField is not equal to given value
updateLog_every - IssueCatalogUpdateLogWhereInput
updateLog_exists - Boolean
updateLog_none - IssueCatalogUpdateLogWhereInput
updateLog_some - IssueCatalogUpdateLogWhereInput
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrIssueCatalogWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "acknowledgeRequired_eq": true,
  "acknowledgeRequired_ne": true,
  "allowTracking_eq": true,
  "allowTracking_ne": false,
  "approval": IssueCatalogApprovalWhereInput,
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": [4],
  "assignedSkills_every": IssueCatalogAssignedSkillWhereInput,
  "assignedSkills_exists": true,
  "assignedSkills_none": IssueCatalogAssignedSkillWhereInput,
  "assignedSkills_some": IssueCatalogAssignedSkillWhereInput,
  "conflictHandler_eq": "keepBoth",
  "conflictHandler_exists": "keepBoth",
  "conflictHandler_in": ["keepBoth"],
  "conflictHandler_ne": "keepBoth",
  "conflictHandler_nin": ["keepBoth"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "element_all": [4],
  "element_eq": "4",
  "element_exists": true,
  "element_in": ["4"],
  "element_ne": "4",
  "element_nin": [4],
  "emailsToSendReport_all": ["xyz789"],
  "emailsToSendReport_eq": ["abc123"],
  "emailsToSendReport_exists": false,
  "emailsToSendReport_in": ["abc123"],
  "emailsToSendReport_nin": ["abc123"],
  "filterTasksByLabels_eq": false,
  "filterTasksByLabels_ne": false,
  "folder": IssueCatalogFolderWhereInput,
  "glarPrefix_contains": "xyz789",
  "glarPrefix_ends_with": "abc123",
  "glarPrefix_eq": "xyz789",
  "glarPrefix_exists": true,
  "glarPrefix_in": ["xyz789"],
  "glarPrefix_ne": "abc123",
  "glarPrefix_nin": ["abc123"],
  "glarPrefix_not_contains": "abc123",
  "glarPrefix_not_ends_with": "xyz789",
  "glarPrefix_not_starts_with": "xyz789",
  "glarPrefix_starts_with": "abc123",
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "isActive_eq": false,
  "isActive_ne": true,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "materialLegendAndComments_eq": true,
  "materialLegendAndComments_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "needsApproval_eq": false,
  "needsApproval_ne": true,
  "paperForm": IssueCatalogPaperFormWhereInput,
  "protected_eq": true,
  "protected_ne": false,
  "remarksOnTasks_eq": true,
  "remarksOnTasks_ne": true,
  "report": IssueCatalogReportWhereInput,
  "requestDescription_eq": false,
  "requestDescription_ne": true,
  "scheduleTasks_eq": true,
  "scheduleTasks_ne": true,
  "scheduler_every": IssueCatalogSchedulerWhereInput,
  "scheduler_exists": true,
  "scheduler_none": IssueCatalogSchedulerWhereInput,
  "scheduler_some": IssueCatalogSchedulerWhereInput,
  "scoreInputs_eq": false,
  "scoreInputs_ne": true,
  "sequential_eq": false,
  "sequential_ne": false,
  "site_all": [4],
  "site_eq": "4",
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": "4",
  "site_nin": [4],
  "stateMachine_all": ["4"],
  "stateMachine_eq": "4",
  "stateMachine_exists": true,
  "stateMachine_in": [4],
  "stateMachine_ne": "4",
  "stateMachine_nin": [4],
  "system_eq": false,
  "system_ne": false,
  "tasksFallbackStateMachine_all": ["4"],
  "tasksFallbackStateMachine_eq": "4",
  "tasksFallbackStateMachine_exists": true,
  "tasksFallbackStateMachine_in": [4],
  "tasksFallbackStateMachine_ne": "4",
  "tasksFallbackStateMachine_nin": [4],
  "template_all": [4],
  "template_eq": "4",
  "template_exists": false,
  "template_in": [4],
  "template_ne": 4,
  "template_nin": [4],
  "toolLegendAndComments_eq": false,
  "toolLegendAndComments_ne": true,
  "updateLog_every": IssueCatalogUpdateLogWhereInput,
  "updateLog_exists": true,
  "updateLog_none": IssueCatalogUpdateLogWhereInput,
  "updateLog_some": IssueCatalogUpdateLogWhereInput,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

IssueCatalogWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueChangeDateExecutionInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
executionDate - DateTime!
observation - String
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "xyz789"
}

IssueContextType

Values
Enum ValueDescription

open

scheduled

Example
"open"

IssueInstance

Description

Represents a IssueInstance

Fields
Field NameDescription
_id - ID
acknowledgeRequired - Boolean
acknowledgedAccounts - [Account]
acknowledgedAccountsIds - [ID]
allTaskScore - IssueTasksScore
allowTracking - Boolean
approval - IssueInstanceApproval
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedSkills - [IssueInstanceAssignedSkill]
catalog - IssueCatalog!This instance catalog
catalogId - ID!This instance catalog
chatRoom - ChatRoom
chatRoomId - ID
closedAt - DateTimeDate this issue was done
completedTasksCount - Int
conflictHandler - IssueInstanceConflictHandler
createdAt - DateTime
createdBy - Account
createdById - ID
createdBySystem - Boolean
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringTask Catalog description
dueDate - DateTime
dueDateStamp - DateTime
duration - IntExecution Duration in miliseconds
element - Element
elementId - ID
emailsToSendReport - [String]
endDate - DateTime!Date this issue should be finished
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationUnit - IssueInstanceEstimatedDurationUnit
executedBy - [Account]
executedByIds - [ID]
failResponses - Int
filterTasksLabelValues - [LabelValue]
filterTasksLabelValuesIds - [ID]
finishedByConditionalInput - Boolean
frequency - IssueInstanceFrequency
glarID - StringIssue glarID
glarPrefix - StringIssue glarID prefix
inputs - [Input]
isLocked - Boolean
labelValues - [LabelValue]
labelValuesIds - [ID]
lockedBy - Account
lockedById - ID
markers - [Marker]
materialLegendAndComments - Boolean
name - String!Issue name
needsAcknowledge - Boolean
needsApproval - Boolean
note - StringNote when finish issue
parentElement - Element
parentElementId - ID
parentSite - Site
parentSiteId - ID
possibleActions - [String]
protected - Boolean
remarksOnTasks - Boolean
requestDescription - Boolean
rootElement - Element
rootElementId - ID
rootSite - Site
rootSiteId - ID
scoreInputs - BooleanScore inputs
seenBy - [Account]
seenByIds - [ID]
sequential - BooleanIf this Issue instances must be executed sequentially
site - Site
siteId - ID
startDate - DateTime!Date this issue should be started
stateMachineInstance - StateMachineInstance
system - Boolean
taskGroups - [TaskGroup]
timesheetCount - Int
timesheets - [Timesheet]
toolAssociations - [IssueInstanceToolAssociation]
toolItems - [ToolItem]
toolItemsIds - [ID]
toolLegendAndComments - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
usersNotBlocked - [ID]
workPackage - JobDataWorkPackage
workPackageId - ID
Example
{
  "_id": "4",
  "acknowledgeRequired": true,
  "acknowledgedAccounts": [Account],
  "acknowledgedAccountsIds": [4],
  "allTaskScore": IssueTasksScore,
  "allowTracking": true,
  "approval": IssueInstanceApproval,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedSkills": [IssueInstanceAssignedSkill],
  "catalog": IssueCatalog,
  "catalogId": "4",
  "chatRoom": ChatRoom,
  "chatRoomId": 4,
  "closedAt": "2007-12-03T10:15:30Z",
  "completedTasksCount": 123,
  "conflictHandler": "keepBoth",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "createdBySystem": true,
  "customArConfiguration": true,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "dueDate": "2007-12-03T10:15:30Z",
  "dueDateStamp": "2007-12-03T10:15:30Z",
  "duration": 123,
  "element": Element,
  "elementId": "4",
  "emailsToSendReport": ["abc123"],
  "endDate": "2007-12-03T10:15:30Z",
  "estimatedDuration": 123,
  "estimatedDurationUnit": "hours",
  "executedBy": [Account],
  "executedByIds": [4],
  "failResponses": 123,
  "filterTasksLabelValues": [LabelValue],
  "filterTasksLabelValuesIds": [4],
  "finishedByConditionalInput": true,
  "frequency": IssueInstanceFrequency,
  "glarID": "xyz789",
  "glarPrefix": "xyz789",
  "inputs": [Input],
  "isLocked": false,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "lockedBy": Account,
  "lockedById": 4,
  "markers": [Marker],
  "materialLegendAndComments": true,
  "name": "abc123",
  "needsAcknowledge": true,
  "needsApproval": true,
  "note": "abc123",
  "parentElement": Element,
  "parentElementId": "4",
  "parentSite": Site,
  "parentSiteId": 4,
  "possibleActions": ["xyz789"],
  "protected": false,
  "remarksOnTasks": true,
  "requestDescription": true,
  "rootElement": Element,
  "rootElementId": 4,
  "rootSite": Site,
  "rootSiteId": 4,
  "scoreInputs": false,
  "seenBy": [Account],
  "seenByIds": ["4"],
  "sequential": false,
  "site": Site,
  "siteId": 4,
  "startDate": "2007-12-03T10:15:30Z",
  "stateMachineInstance": StateMachineInstance,
  "system": true,
  "taskGroups": [TaskGroup],
  "timesheetCount": 123,
  "timesheets": [Timesheet],
  "toolAssociations": [IssueInstanceToolAssociation],
  "toolItems": [ToolItem],
  "toolItemsIds": [4],
  "toolLegendAndComments": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4,
  "usersNotBlocked": ["4"],
  "workPackage": JobDataWorkPackage,
  "workPackageId": "4"
}

IssueInstanceApproval

Description

Represents a IssueInstanceApproval

Fields
Field NameDescription
_id - ID
approvalsCount - Int
approvalsNeeded - Int
approved - Boolean
approvedBy - [Account]
approvedByIds - [ID]
executionDate - DateTime
followHierarchy - Boolean
levels - [IssueInstanceApprovalLevel]
log - [IssueInstanceApprovalLog]
pending - IssueInstanceApprovalPending
Example
{
  "_id": "4",
  "approvalsCount": 987,
  "approvalsNeeded": 123,
  "approved": true,
  "approvedBy": [Account],
  "approvedByIds": [4],
  "executionDate": "2007-12-03T10:15:30Z",
  "followHierarchy": false,
  "levels": [IssueInstanceApprovalLevel],
  "log": [IssueInstanceApprovalLog],
  "pending": IssueInstanceApprovalPending
}

IssueInstanceApprovalLevel

Description

Represents a IssueInstanceApprovalLevel

Fields
Field NameDescription
_id - ID
accounts - [Account]
accountsIds - [ID]
approved - Boolean
approvedOnce - Boolean
labelValues - [IssueInstanceApprovalLevelLabelValue]
Example
{
  "_id": 4,
  "accounts": [Account],
  "accountsIds": ["4"],
  "approved": true,
  "approvedOnce": true,
  "labelValues": [IssueInstanceApprovalLevelLabelValue]
}

IssueInstanceApprovalLevelLabelValue

Description

Represents a IssueInstanceApprovalLevelLabelValue

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!
labelValueId - ID!
requiredApprovals - Int
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": 4,
  "requiredApprovals": 987
}

IssueInstanceApprovalLevelLabelValueWhereInput

Description

Represents a Where input for: IssueInstanceApprovalLevelLabelValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
requiredApprovals_eq - IntField is equal to given value
requiredApprovals_exists - BooleanField is set and exists
requiredApprovals_gt - IntField is greater than given value
requiredApprovals_gte - IntField is greater or equal than given value
requiredApprovals_in - [Int]Given value includes field
requiredApprovals_lt - IntField is lower than given value
requiredApprovals_lte - IntField is lower or equal than given value
requiredApprovals_ne - IntField is not equal to given value
requiredApprovals_nin - [Int]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "labelValue_all": ["4"],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_ne": "4",
  "labelValue_nin": [4],
  "requiredApprovals_eq": 123,
  "requiredApprovals_exists": true,
  "requiredApprovals_gt": 123,
  "requiredApprovals_gte": 123,
  "requiredApprovals_in": [123],
  "requiredApprovals_lt": 123,
  "requiredApprovals_lte": 987,
  "requiredApprovals_ne": 987,
  "requiredApprovals_nin": [123]
}

IssueInstanceApprovalLevelWhereInput

Description

Represents a Where input for: IssueInstanceApprovalLevel

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
accounts_all - [ID]Field includes all given values.
accounts_eq - [ID]Given value is equal to field
accounts_exists - Boolean
accounts_in - [ID]Field includes one of given value.
accounts_nin - [ID]Field does not include any of the given values.
approvedOnce_eq - BooleanField is equal to given value
approvedOnce_ne - BooleanField is not equal to given value
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
labelValues_every - IssueInstanceApprovalLevelLabelValueWhereInput
labelValues_exists - Boolean
labelValues_none - IssueInstanceApprovalLevelLabelValueWhereInput
labelValues_some - IssueInstanceApprovalLevelLabelValueWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "accounts_all": ["4"],
  "accounts_eq": ["4"],
  "accounts_exists": true,
  "accounts_in": ["4"],
  "accounts_nin": [4],
  "approvedOnce_eq": false,
  "approvedOnce_ne": false,
  "approved_eq": false,
  "approved_ne": true,
  "labelValues_every": IssueInstanceApprovalLevelLabelValueWhereInput,
  "labelValues_exists": true,
  "labelValues_none": IssueInstanceApprovalLevelLabelValueWhereInput,
  "labelValues_some": IssueInstanceApprovalLevelLabelValueWhereInput
}

IssueInstanceApprovalLog

Description

Represents a IssueInstanceApprovalLog

Fields
Field NameDescription
_id - ID
by - Account!
byId - ID!
createdAt - DateTime
executionDate - DateTime!Proposed execution date
observation - String
type - IssueInstanceApprovalLogType!
updatedAt - DateTime
Example
{
  "_id": 4,
  "by": Account,
  "byId": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "abc123",
  "type": "APPROVE",
  "updatedAt": "2007-12-03T10:15:30Z"
}

IssueInstanceApprovalLogType

Values
Enum ValueDescription

APPROVE

CHANGE

REJECT

Example
"APPROVE"

IssueInstanceApprovalLogWhereInput

Description

Represents a Where input for: IssueInstanceApprovalLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
observation_contains - StringField contains given value, case-insensitive
observation_ends_with - StringField ends with given value, case-insensitive
observation_eq - StringField is equal to given value
observation_exists - BooleanField is set and exists
observation_in - [String]Given value includes field
observation_ne - StringField is not equal to given value
observation_nin - [String]Given value does not includes field
observation_not_contains - StringField does not contains given value, case-insensitive
observation_not_ends_with - StringField does not end with given value, case-insensitive
observation_not_starts_with - StringField does not start with given value, case-insensitive
observation_starts_with - StringField starts with given value, case-insensitive
type_eq - IssueInstanceApprovalLogTypeField is equal to given value
type_exists - IssueInstanceApprovalLogTypeField is set and exists
type_in - [IssueInstanceApprovalLogType]Given value includes field
type_ne - IssueInstanceApprovalLogTypeField is not equal to given value
type_nin - [IssueInstanceApprovalLogType]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_all": ["4"],
  "by_eq": "4",
  "by_exists": true,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": false,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "observation_contains": "xyz789",
  "observation_ends_with": "xyz789",
  "observation_eq": "abc123",
  "observation_exists": false,
  "observation_in": ["abc123"],
  "observation_ne": "abc123",
  "observation_nin": ["xyz789"],
  "observation_not_contains": "xyz789",
  "observation_not_ends_with": "xyz789",
  "observation_not_starts_with": "xyz789",
  "observation_starts_with": "xyz789",
  "type_eq": "APPROVE",
  "type_exists": "APPROVE",
  "type_in": ["APPROVE"],
  "type_ne": "APPROVE",
  "type_nin": ["APPROVE"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"]
}

IssueInstanceApprovalPending

Fields
Field NameDescription
accounts - [Account]
labelValues - [LabelValue]
Example
{
  "accounts": [Account],
  "labelValues": [LabelValue]
}

IssueInstanceApprovalWhereInput

Description

Represents a Where input for: IssueInstanceApproval

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
approvalsCount_eq - IntField is equal to given value
approvalsCount_exists - BooleanField is set and exists
approvalsCount_gt - IntField is greater than given value
approvalsCount_gte - IntField is greater or equal than given value
approvalsCount_in - [Int]Given value includes field
approvalsCount_lt - IntField is lower than given value
approvalsCount_lte - IntField is lower or equal than given value
approvalsCount_ne - IntField is not equal to given value
approvalsCount_nin - [Int]Given value does not includes field
approvalsNeeded_eq - IntField is equal to given value
approvalsNeeded_exists - BooleanField is set and exists
approvalsNeeded_gt - IntField is greater than given value
approvalsNeeded_gte - IntField is greater or equal than given value
approvalsNeeded_in - [Int]Given value includes field
approvalsNeeded_lt - IntField is lower than given value
approvalsNeeded_lte - IntField is lower or equal than given value
approvalsNeeded_ne - IntField is not equal to given value
approvalsNeeded_nin - [Int]Given value does not includes field
approvedBy_all - [ID]Field includes all given values.
approvedBy_eq - [ID]Given value is equal to field
approvedBy_exists - Boolean
approvedBy_in - [ID]Field includes one of given value.
approvedBy_nin - [ID]Field does not include any of the given values.
approved_eq - BooleanField is equal to given value
approved_ne - BooleanField is not equal to given value
executionDate_eq - DateTimeField is equal to given value
executionDate_exists - BooleanField is set and exists
executionDate_gt - DateTimeField is greater than given value
executionDate_gte - DateTimeField is greater or equal than given value
executionDate_in - [DateTime]Given value includes field
executionDate_lt - DateTimeField is lower than given value
executionDate_lte - DateTimeField is lower or equal than given value
executionDate_ne - DateTimeField is not equal to given value
executionDate_nin - [DateTime]Given value does not includes field
followHierarchy_eq - BooleanField is equal to given value
followHierarchy_ne - BooleanField is not equal to given value
levels_every - IssueInstanceApprovalLevelWhereInput
levels_exists - Boolean
levels_none - IssueInstanceApprovalLevelWhereInput
levels_some - IssueInstanceApprovalLevelWhereInput
log_every - IssueInstanceApprovalLogWhereInput
log_exists - Boolean
log_none - IssueInstanceApprovalLogWhereInput
log_some - IssueInstanceApprovalLogWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "approvalsCount_eq": 123,
  "approvalsCount_exists": true,
  "approvalsCount_gt": 987,
  "approvalsCount_gte": 987,
  "approvalsCount_in": [123],
  "approvalsCount_lt": 123,
  "approvalsCount_lte": 123,
  "approvalsCount_ne": 123,
  "approvalsCount_nin": [987],
  "approvalsNeeded_eq": 123,
  "approvalsNeeded_exists": true,
  "approvalsNeeded_gt": 123,
  "approvalsNeeded_gte": 123,
  "approvalsNeeded_in": [987],
  "approvalsNeeded_lt": 123,
  "approvalsNeeded_lte": 123,
  "approvalsNeeded_ne": 987,
  "approvalsNeeded_nin": [123],
  "approvedBy_all": ["4"],
  "approvedBy_eq": [4],
  "approvedBy_exists": false,
  "approvedBy_in": [4],
  "approvedBy_nin": ["4"],
  "approved_eq": true,
  "approved_ne": false,
  "executionDate_eq": "2007-12-03T10:15:30Z",
  "executionDate_exists": false,
  "executionDate_gt": "2007-12-03T10:15:30Z",
  "executionDate_gte": "2007-12-03T10:15:30Z",
  "executionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "executionDate_lt": "2007-12-03T10:15:30Z",
  "executionDate_lte": "2007-12-03T10:15:30Z",
  "executionDate_ne": "2007-12-03T10:15:30Z",
  "executionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "followHierarchy_eq": true,
  "followHierarchy_ne": false,
  "levels_every": IssueInstanceApprovalLevelWhereInput,
  "levels_exists": false,
  "levels_none": IssueInstanceApprovalLevelWhereInput,
  "levels_some": IssueInstanceApprovalLevelWhereInput,
  "log_every": IssueInstanceApprovalLogWhereInput,
  "log_exists": false,
  "log_none": IssueInstanceApprovalLogWhereInput,
  "log_some": IssueInstanceApprovalLogWhereInput
}

IssueInstanceAssignedSkill

Description

Represents a IssueInstanceAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": "4",
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "abc123",
  "skillname": "xyz789"
}

IssueInstanceAssignedSkillWhereInput

Description

Represents a Where input for: IssueInstanceAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "abc123",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "abc123",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": [4],
  "id_eq": "4",
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": 4,
  "id_nin": [4],
  "level_contains": "xyz789",
  "level_ends_with": "abc123",
  "level_eq": "abc123",
  "level_exists": false,
  "level_in": ["xyz789"],
  "level_ne": "abc123",
  "level_nin": ["xyz789"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "abc123",
  "skillname_ends_with": "abc123",
  "skillname_eq": "abc123",
  "skillname_exists": true,
  "skillname_in": ["abc123"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "abc123",
  "skillname_starts_with": "xyz789"
}

IssueInstanceConflictHandler

Values
Enum ValueDescription

keepBoth

keepNew

keepOld

Example
"keepBoth"

IssueInstanceEstimatedDurationUnit

Values
Enum ValueDescription

hours

minutes

seconds

Example
"hours"

IssueInstanceFrequency

Description

Represents a IssueInstanceFrequency

Fields
Field NameDescription
amount - Int
name - String
timeUnit - IssueInstanceFrequencyTimeUnit
Example
{
  "amount": 123,
  "name": "abc123",
  "timeUnit": "days"
}

IssueInstanceFrequencyTimeUnit

Values
Enum ValueDescription

days

hours

months

shifts

specific

weeks

years

Example
"days"

IssueInstanceFrequencyWhereInput

Description

Represents a Where input for: IssueInstanceFrequency

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
timeUnit_eq - IssueInstanceFrequencyTimeUnitField is equal to given value
timeUnit_exists - IssueInstanceFrequencyTimeUnitField is set and exists
timeUnit_in - [IssueInstanceFrequencyTimeUnit]Given value includes field
timeUnit_ne - IssueInstanceFrequencyTimeUnitField is not equal to given value
timeUnit_nin - [IssueInstanceFrequencyTimeUnit]Given value does not includes field
Example
{
  "amount_eq": 123,
  "amount_exists": false,
  "amount_gt": 987,
  "amount_gte": 987,
  "amount_in": [987],
  "amount_lt": 123,
  "amount_lte": 987,
  "amount_ne": 123,
  "amount_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "timeUnit_eq": "days",
  "timeUnit_exists": "days",
  "timeUnit_in": ["days"],
  "timeUnit_ne": "days",
  "timeUnit_nin": ["days"]
}

IssueInstanceOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

approval_approvalsCount_ASC

approval_approvalsCount_DESC

approval_approvalsNeeded_ASC

approval_approvalsNeeded_DESC

approval_approvedBy_ASC

approval_approvedBy_DESC

approval_executionDate_ASC

approval_executionDate_DESC

assignedAccounts_name_ASC

assignedAccounts_name_DESC

assignedLabelValues_value_ASC

assignedLabelValues_value_DESC

closedAt_ASC

closedAt_DESC

conflictHandler_ASC

conflictHandler_DESC

createdAt_ASC

createdAt_DESC

createdBy_name_ASC

createdBy_name_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

dueDateStamp_ASC

dueDateStamp_DESC

dueDate_ASC

dueDate_DESC

duration_ASC

duration_DESC

element_name_ASC

element_name_DESC

endDate_ASC

endDate_DESC

estimatedDurationUnit_ASC

estimatedDurationUnit_DESC

estimatedDuration_ASC

estimatedDuration_DESC

executedBy_name_ASC

executedBy_name_DESC

failResponses_ASC

failResponses_DESC

frequency_amount_ASC

frequency_amount_DESC

frequency_name_ASC

frequency_name_DESC

frequency_timeUnit_ASC

frequency_timeUnit_DESC

glarID_ASC

glarID_DESC

glarPrefix_ASC

glarPrefix_DESC

name_ASC

name_DESC

note_ASC

note_DESC

parentElement_name_ASC

parentElement_name_DESC

parentSite_name_ASC

parentSite_name_DESC

parent_element_name_ASC

parent_element_name_DESC

parent_site_name_ASC

parent_site_name_DESC

rootElement_name_ASC

rootElement_name_DESC

rootSite_name_ASC

rootSite_name_DESC

root_element_name_ASC

root_element_name_DESC

root_site_name_ASC

root_site_name_DESC

site_name_ASC

site_name_DESC

startDate_ASC

startDate_DESC

stateMachineInstance_canceledMessage_ASC

stateMachineInstance_canceledMessage_DESC

stateMachineInstance_changeStateToken_ASC

stateMachineInstance_changeStateToken_DESC

stateMachineInstance_createdAt_ASC

stateMachineInstance_createdAt_DESC

stateMachineInstance_currentState_ASC

stateMachineInstance_currentState_DESC

stateMachineInstance_finishedAt_ASC

stateMachineInstance_finishedAt_DESC

stateMachineInstance_updatedAt_ASC

stateMachineInstance_updatedAt_DESC

taskGroups_task_score_currentScore_ASC

taskGroups_task_score_currentScore_DESC

updatedAt_ASC

updatedAt_DESC

workPackage_workPackage_ASC

workPackage_workPackage_DESC

Example
"_id_ASC"

IssueInstanceToolAssociation

Description

Represents a IssueInstanceToolAssociation

Fields
Field NameDescription
associatedToolItems - [ToolItem]
associatedToolItemsIds - [ID]
associatedTools - [Tool]
associatedToolsIds - [ID]
tool - Tool
toolId - ID
toolItems - [ToolItem]
toolItemsIds - [ID]
Example
{
  "associatedToolItems": [ToolItem],
  "associatedToolItemsIds": ["4"],
  "associatedTools": [Tool],
  "associatedToolsIds": ["4"],
  "tool": Tool,
  "toolId": 4,
  "toolItems": [ToolItem],
  "toolItemsIds": [4]
}

IssueInstanceToolAssociationWhereInput

Description

Represents a Where input for: IssueInstanceToolAssociation

Fields
Input FieldDescription
associatedToolItems_all - [ID]Field includes all given values.
associatedToolItems_eq - [ID]Given value is equal to field
associatedToolItems_exists - Boolean
associatedToolItems_in - [ID]Field includes one of given value.
associatedToolItems_nin - [ID]Field does not include any of the given values.
associatedTools_all - [ID]Field includes all given values.
associatedTools_eq - [ID]Given value is equal to field
associatedTools_exists - Boolean
associatedTools_in - [ID]Field includes one of given value.
associatedTools_nin - [ID]Field does not include any of the given values.
toolItems_all - [ID]Field includes all given values.
toolItems_eq - [ID]Given value is equal to field
toolItems_exists - Boolean
toolItems_in - [ID]Field includes one of given value.
toolItems_nin - [ID]Field does not include any of the given values.
tool_all - [ID]Given value includes all in array
tool_eq - IDField is equal to given value
tool_exists - BooleanField is set and exists
tool_in - [ID]Given value includes field
tool_ne - IDField is not equal to given value
tool_nin - [ID]Given value does not include field
Example
{
  "associatedToolItems_all": ["4"],
  "associatedToolItems_eq": [4],
  "associatedToolItems_exists": true,
  "associatedToolItems_in": ["4"],
  "associatedToolItems_nin": [4],
  "associatedTools_all": [4],
  "associatedTools_eq": [4],
  "associatedTools_exists": false,
  "associatedTools_in": ["4"],
  "associatedTools_nin": ["4"],
  "toolItems_all": ["4"],
  "toolItems_eq": [4],
  "toolItems_exists": false,
  "toolItems_in": [4],
  "toolItems_nin": [4],
  "tool_all": [4],
  "tool_eq": 4,
  "tool_exists": false,
  "tool_in": [4],
  "tool_ne": "4",
  "tool_nin": ["4"]
}

IssueInstanceWhereInput

Description

Represents a Where input for: IssueInstance

Fields
Input FieldDescription
AND - [AndIssuesWhereInput]
OR - [OrIssuesWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
acknowledgeRequired_eq - BooleanField is equal to given value
acknowledgeRequired_ne - BooleanField is not equal to given value
acknowledgedAccounts_all - [ID]Field includes all given values.
acknowledgedAccounts_eq - [ID]Given value is equal to field
acknowledgedAccounts_exists - Boolean
acknowledgedAccounts_in - [ID]Field includes one of given value.
acknowledgedAccounts_nin - [ID]Field does not include any of the given values.
allowTracking_eq - BooleanField is equal to given value
allowTracking_ne - BooleanField is not equal to given value
approval - IssueInstanceApprovalWhereInput
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedSkills_every - IssueInstanceAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueInstanceAssignedSkillWhereInput
assignedSkills_some - IssueInstanceAssignedSkillWhereInput
catalog_all - [ID]Given value includes all in array
catalog_eq - IDField is equal to given value
catalog_exists - BooleanField is set and exists
catalog_in - [ID]Given value includes field
catalog_ne - IDField is not equal to given value
catalog_nin - [ID]Given value does not include field
chatRoom_all - [ID]Given value includes all in array
chatRoom_eq - IDField is equal to given value
chatRoom_exists - BooleanField is set and exists
chatRoom_in - [ID]Given value includes field
chatRoom_ne - IDField is not equal to given value
chatRoom_nin - [ID]Given value does not include field
closedAt_eq - DateTimeField is equal to given value
closedAt_exists - BooleanField is set and exists
closedAt_gt - DateTimeField is greater than given value
closedAt_gte - DateTimeField is greater or equal than given value
closedAt_in - [DateTime]Given value includes field
closedAt_lt - DateTimeField is lower than given value
closedAt_lte - DateTimeField is lower or equal than given value
closedAt_ne - DateTimeField is not equal to given value
closedAt_nin - [DateTime]Given value does not includes field
conflictHandler_eq - IssueInstanceConflictHandlerField is equal to given value
conflictHandler_exists - IssueInstanceConflictHandlerField is set and exists
conflictHandler_in - [IssueInstanceConflictHandler]Given value includes field
conflictHandler_ne - IssueInstanceConflictHandlerField is not equal to given value
conflictHandler_nin - [IssueInstanceConflictHandler]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBySystem_eq - BooleanField is equal to given value
createdBySystem_ne - BooleanField is not equal to given value
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
customArConfiguration_eq - BooleanField is equal to given value
customArConfiguration_ne - BooleanField is not equal to given value
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dueDateStamp_eq - DateTimeField is equal to given value
dueDateStamp_exists - BooleanField is set and exists
dueDateStamp_gt - DateTimeField is greater than given value
dueDateStamp_gte - DateTimeField is greater or equal than given value
dueDateStamp_in - [DateTime]Given value includes field
dueDateStamp_lt - DateTimeField is lower than given value
dueDateStamp_lte - DateTimeField is lower or equal than given value
dueDateStamp_ne - DateTimeField is not equal to given value
dueDateStamp_nin - [DateTime]Given value does not includes field
dueDate_eq - DateTimeField is equal to given value
dueDate_exists - BooleanField is set and exists
dueDate_gt - DateTimeField is greater than given value
dueDate_gte - DateTimeField is greater or equal than given value
dueDate_in - [DateTime]Given value includes field
dueDate_lt - DateTimeField is lower than given value
dueDate_lte - DateTimeField is lower or equal than given value
dueDate_ne - DateTimeField is not equal to given value
dueDate_nin - [DateTime]Given value does not includes field
duration_eq - IntField is equal to given value
duration_exists - BooleanField is set and exists
duration_gt - IntField is greater than given value
duration_gte - IntField is greater or equal than given value
duration_in - [Int]Given value includes field
duration_lt - IntField is lower than given value
duration_lte - IntField is lower or equal than given value
duration_ne - IntField is not equal to given value
duration_nin - [Int]Given value does not includes field
element - ElementWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
emailsToSendReport_all - [String]Field includes all given values.
emailsToSendReport_eq - [String]Given value is equal to field
emailsToSendReport_exists - Boolean
emailsToSendReport_in - [String]Field includes one of given value.
emailsToSendReport_nin - [String]Field does not include any of the given values.
endDate_eq - DateTimeField is equal to given value
endDate_exists - BooleanField is set and exists
endDate_gt - DateTimeField is greater than given value
endDate_gte - DateTimeField is greater or equal than given value
endDate_in - [DateTime]Given value includes field
endDate_lt - DateTimeField is lower than given value
endDate_lte - DateTimeField is lower or equal than given value
endDate_ne - DateTimeField is not equal to given value
endDate_nin - [DateTime]Given value does not includes field
estimatedDurationUnit_eq - IssueInstanceEstimatedDurationUnitField is equal to given value
estimatedDurationUnit_exists - IssueInstanceEstimatedDurationUnitField is set and exists
estimatedDurationUnit_in - [IssueInstanceEstimatedDurationUnit]Given value includes field
estimatedDurationUnit_ne - IssueInstanceEstimatedDurationUnitField is not equal to given value
estimatedDurationUnit_nin - [IssueInstanceEstimatedDurationUnit]Given value does not includes field
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
executedBy - AccountWhereInput
executedBy_all - [ID]Field includes all given values.
executedBy_eq - [ID]Given value is equal to field
executedBy_exists - Boolean
executedBy_in - [ID]Field includes one of given value.
executedBy_nin - [ID]Field does not include any of the given values.
filterTasksLabelValues_all - [ID]Field includes all given values.
filterTasksLabelValues_eq - [ID]Given value is equal to field
filterTasksLabelValues_exists - Boolean
filterTasksLabelValues_in - [ID]Field includes one of given value.
filterTasksLabelValues_nin - [ID]Field does not include any of the given values.
finishedByConditionalInput_eq - BooleanField is equal to given value
finishedByConditionalInput_ne - BooleanField is not equal to given value
frequency - IssueInstanceFrequencyWhereInput
glarID_contains - StringField contains given value, case-insensitive
glarID_ends_with - StringField ends with given value, case-insensitive
glarID_eq - StringField is equal to given value
glarID_exists - BooleanField is set and exists
glarID_in - [String]Given value includes field
glarID_ne - StringField is not equal to given value
glarID_nin - [String]Given value does not includes field
glarID_not_contains - StringField does not contains given value, case-insensitive
glarID_not_ends_with - StringField does not end with given value, case-insensitive
glarID_not_starts_with - StringField does not start with given value, case-insensitive
glarID_starts_with - StringField starts with given value, case-insensitive
glarPrefix_contains - StringField contains given value, case-insensitive
glarPrefix_ends_with - StringField ends with given value, case-insensitive
glarPrefix_eq - StringField is equal to given value
glarPrefix_exists - BooleanField is set and exists
glarPrefix_in - [String]Given value includes field
glarPrefix_ne - StringField is not equal to given value
glarPrefix_nin - [String]Given value does not includes field
glarPrefix_not_contains - StringField does not contains given value, case-insensitive
glarPrefix_not_ends_with - StringField does not end with given value, case-insensitive
glarPrefix_not_starts_with - StringField does not start with given value, case-insensitive
glarPrefix_starts_with - StringField starts with given value, case-insensitive
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
lockedBy_all - [ID]Given value includes all in array
lockedBy_eq - IDField is equal to given value
lockedBy_exists - BooleanField is set and exists
lockedBy_in - [ID]Given value includes field
lockedBy_ne - IDField is not equal to given value
lockedBy_nin - [ID]Given value does not include field
materialLegendAndComments_eq - BooleanField is equal to given value
materialLegendAndComments_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
needsApproval_eq - BooleanField is equal to given value
needsApproval_ne - BooleanField is not equal to given value
note_contains - StringField contains given value, case-insensitive
note_ends_with - StringField ends with given value, case-insensitive
note_eq - StringField is equal to given value
note_exists - BooleanField is set and exists
note_in - [String]Given value includes field
note_ne - StringField is not equal to given value
note_nin - [String]Given value does not includes field
note_not_contains - StringField does not contains given value, case-insensitive
note_not_ends_with - StringField does not end with given value, case-insensitive
note_not_starts_with - StringField does not start with given value, case-insensitive
note_starts_with - StringField starts with given value, case-insensitive
parentElement_all - [ID]Given value includes all in array
parentElement_eq - IDField is equal to given value
parentElement_exists - BooleanField is set and exists
parentElement_in - [ID]Given value includes field
parentElement_ne - IDField is not equal to given value
parentElement_nin - [ID]Given value does not include field
parentSite_all - [ID]Given value includes all in array
parentSite_eq - IDField is equal to given value
parentSite_exists - BooleanField is set and exists
parentSite_in - [ID]Given value includes field
parentSite_ne - IDField is not equal to given value
parentSite_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
remarksOnTasks_eq - BooleanField is equal to given value
remarksOnTasks_ne - BooleanField is not equal to given value
requestDescription_eq - BooleanField is equal to given value
requestDescription_ne - BooleanField is not equal to given value
rootElement_all - [ID]Given value includes all in array
rootElement_eq - IDField is equal to given value
rootElement_exists - BooleanField is set and exists
rootElement_in - [ID]Given value includes field
rootElement_ne - IDField is not equal to given value
rootElement_nin - [ID]Given value does not include field
rootSite_all - [ID]Given value includes all in array
rootSite_eq - IDField is equal to given value
rootSite_exists - BooleanField is set and exists
rootSite_in - [ID]Given value includes field
rootSite_ne - IDField is not equal to given value
rootSite_nin - [ID]Given value does not include field
scoreInputs_eq - BooleanField is equal to given value
scoreInputs_ne - BooleanField is not equal to given value
seenBy_all - [ID]Field includes all given values.
seenBy_eq - [ID]Given value is equal to field
seenBy_exists - Boolean
seenBy_in - [ID]Field includes one of given value.
seenBy_nin - [ID]Field does not include any of the given values.
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
site - SiteWhereInput
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
startDate_eq - DateTimeField is equal to given value
startDate_exists - BooleanField is set and exists
startDate_gt - DateTimeField is greater than given value
startDate_gte - DateTimeField is greater or equal than given value
startDate_in - [DateTime]Given value includes field
startDate_lt - DateTimeField is lower than given value
startDate_lte - DateTimeField is lower or equal than given value
startDate_ne - DateTimeField is not equal to given value
startDate_nin - [DateTime]Given value does not includes field
stateMachineInstance - StateMachineInstanceWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskGroups_every - TaskGroupWhereInput
taskGroups_none - TaskGroupWhereInput
taskGroups_some - TaskGroupWhereInput
toolAssociations_every - IssueInstanceToolAssociationWhereInput
toolAssociations_exists - Boolean
toolAssociations_none - IssueInstanceToolAssociationWhereInput
toolAssociations_some - IssueInstanceToolAssociationWhereInput
toolItems_all - [ID]Field includes all given values.
toolItems_eq - [ID]Given value is equal to field
toolItems_exists - Boolean
toolItems_in - [ID]Field includes one of given value.
toolItems_nin - [ID]Field does not include any of the given values.
toolLegendAndComments_eq - BooleanField is equal to given value
toolLegendAndComments_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
usersNotBlocked_all - [ID]Field includes all given values.
usersNotBlocked_eq - [ID]Given value is equal to field
usersNotBlocked_exists - Boolean
usersNotBlocked_in - [ID]
usersNotBlocked_nin - [ID]
workPackageId_all - [ID]Given value includes all in array
workPackageId_eq - IDField is equal to given value
workPackageId_exists - BooleanField is set and exists
workPackageId_in - [ID]Given value includes field
workPackageId_ne - IDField is not equal to given value
workPackageId_nin - [ID]Given value does not include field
Example
{
  "AND": [AndIssuesWhereInput],
  "OR": [OrIssuesWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "acknowledgeRequired_eq": true,
  "acknowledgeRequired_ne": true,
  "acknowledgedAccounts_all": [4],
  "acknowledgedAccounts_eq": [4],
  "acknowledgedAccounts_exists": true,
  "acknowledgedAccounts_in": ["4"],
  "acknowledgedAccounts_nin": ["4"],
  "allowTracking_eq": true,
  "allowTracking_ne": true,
  "approval": IssueInstanceApprovalWhereInput,
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "assignedSkills_every": IssueInstanceAssignedSkillWhereInput,
  "assignedSkills_exists": true,
  "assignedSkills_none": IssueInstanceAssignedSkillWhereInput,
  "assignedSkills_some": IssueInstanceAssignedSkillWhereInput,
  "catalog_all": [4],
  "catalog_eq": "4",
  "catalog_exists": true,
  "catalog_in": ["4"],
  "catalog_ne": "4",
  "catalog_nin": ["4"],
  "chatRoom_all": [4],
  "chatRoom_eq": "4",
  "chatRoom_exists": false,
  "chatRoom_in": ["4"],
  "chatRoom_ne": 4,
  "chatRoom_nin": ["4"],
  "closedAt_eq": "2007-12-03T10:15:30Z",
  "closedAt_exists": true,
  "closedAt_gt": "2007-12-03T10:15:30Z",
  "closedAt_gte": "2007-12-03T10:15:30Z",
  "closedAt_in": ["2007-12-03T10:15:30Z"],
  "closedAt_lt": "2007-12-03T10:15:30Z",
  "closedAt_lte": "2007-12-03T10:15:30Z",
  "closedAt_ne": "2007-12-03T10:15:30Z",
  "closedAt_nin": ["2007-12-03T10:15:30Z"],
  "conflictHandler_eq": "keepBoth",
  "conflictHandler_exists": "keepBoth",
  "conflictHandler_in": ["keepBoth"],
  "conflictHandler_ne": "keepBoth",
  "conflictHandler_nin": ["keepBoth"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBySystem_eq": false,
  "createdBySystem_ne": true,
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "customArConfiguration_eq": true,
  "customArConfiguration_ne": false,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "dueDateStamp_eq": "2007-12-03T10:15:30Z",
  "dueDateStamp_exists": true,
  "dueDateStamp_gt": "2007-12-03T10:15:30Z",
  "dueDateStamp_gte": "2007-12-03T10:15:30Z",
  "dueDateStamp_in": [
    "2007-12-03T10:15:30Z"
  ],
  "dueDateStamp_lt": "2007-12-03T10:15:30Z",
  "dueDateStamp_lte": "2007-12-03T10:15:30Z",
  "dueDateStamp_ne": "2007-12-03T10:15:30Z",
  "dueDateStamp_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "dueDate_eq": "2007-12-03T10:15:30Z",
  "dueDate_exists": true,
  "dueDate_gt": "2007-12-03T10:15:30Z",
  "dueDate_gte": "2007-12-03T10:15:30Z",
  "dueDate_in": ["2007-12-03T10:15:30Z"],
  "dueDate_lt": "2007-12-03T10:15:30Z",
  "dueDate_lte": "2007-12-03T10:15:30Z",
  "dueDate_ne": "2007-12-03T10:15:30Z",
  "dueDate_nin": ["2007-12-03T10:15:30Z"],
  "duration_eq": 987,
  "duration_exists": true,
  "duration_gt": 123,
  "duration_gte": 987,
  "duration_in": [123],
  "duration_lt": 987,
  "duration_lte": 987,
  "duration_ne": 123,
  "duration_nin": [987],
  "element": ElementWhereInput,
  "element_all": [4],
  "element_eq": 4,
  "element_exists": true,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": [4],
  "emailsToSendReport_all": ["abc123"],
  "emailsToSendReport_eq": ["abc123"],
  "emailsToSendReport_exists": false,
  "emailsToSendReport_in": ["xyz789"],
  "emailsToSendReport_nin": ["abc123"],
  "endDate_eq": "2007-12-03T10:15:30Z",
  "endDate_exists": true,
  "endDate_gt": "2007-12-03T10:15:30Z",
  "endDate_gte": "2007-12-03T10:15:30Z",
  "endDate_in": ["2007-12-03T10:15:30Z"],
  "endDate_lt": "2007-12-03T10:15:30Z",
  "endDate_lte": "2007-12-03T10:15:30Z",
  "endDate_ne": "2007-12-03T10:15:30Z",
  "endDate_nin": ["2007-12-03T10:15:30Z"],
  "estimatedDurationUnit_eq": "hours",
  "estimatedDurationUnit_exists": "hours",
  "estimatedDurationUnit_in": ["hours"],
  "estimatedDurationUnit_ne": "hours",
  "estimatedDurationUnit_nin": ["hours"],
  "estimatedDuration_eq": 123,
  "estimatedDuration_exists": false,
  "estimatedDuration_gt": 123,
  "estimatedDuration_gte": 123,
  "estimatedDuration_in": [123],
  "estimatedDuration_lt": 123,
  "estimatedDuration_lte": 123,
  "estimatedDuration_ne": 123,
  "estimatedDuration_nin": [987],
  "executedBy": AccountWhereInput,
  "executedBy_all": [4],
  "executedBy_eq": [4],
  "executedBy_exists": true,
  "executedBy_in": [4],
  "executedBy_nin": ["4"],
  "filterTasksLabelValues_all": ["4"],
  "filterTasksLabelValues_eq": ["4"],
  "filterTasksLabelValues_exists": false,
  "filterTasksLabelValues_in": ["4"],
  "filterTasksLabelValues_nin": ["4"],
  "finishedByConditionalInput_eq": true,
  "finishedByConditionalInput_ne": true,
  "frequency": IssueInstanceFrequencyWhereInput,
  "glarID_contains": "xyz789",
  "glarID_ends_with": "abc123",
  "glarID_eq": "xyz789",
  "glarID_exists": false,
  "glarID_in": ["xyz789"],
  "glarID_ne": "xyz789",
  "glarID_nin": ["abc123"],
  "glarID_not_contains": "abc123",
  "glarID_not_ends_with": "abc123",
  "glarID_not_starts_with": "xyz789",
  "glarID_starts_with": "xyz789",
  "glarPrefix_contains": "abc123",
  "glarPrefix_ends_with": "xyz789",
  "glarPrefix_eq": "abc123",
  "glarPrefix_exists": false,
  "glarPrefix_in": ["abc123"],
  "glarPrefix_ne": "abc123",
  "glarPrefix_nin": ["xyz789"],
  "glarPrefix_not_contains": "abc123",
  "glarPrefix_not_ends_with": "xyz789",
  "glarPrefix_not_starts_with": "abc123",
  "glarPrefix_starts_with": "abc123",
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "lockedBy_all": [4],
  "lockedBy_eq": 4,
  "lockedBy_exists": true,
  "lockedBy_in": ["4"],
  "lockedBy_ne": 4,
  "lockedBy_nin": [4],
  "materialLegendAndComments_eq": true,
  "materialLegendAndComments_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "needsApproval_eq": false,
  "needsApproval_ne": false,
  "note_contains": "abc123",
  "note_ends_with": "xyz789",
  "note_eq": "xyz789",
  "note_exists": false,
  "note_in": ["abc123"],
  "note_ne": "abc123",
  "note_nin": ["xyz789"],
  "note_not_contains": "abc123",
  "note_not_ends_with": "abc123",
  "note_not_starts_with": "xyz789",
  "note_starts_with": "xyz789",
  "parentElement_all": [4],
  "parentElement_eq": 4,
  "parentElement_exists": false,
  "parentElement_in": ["4"],
  "parentElement_ne": 4,
  "parentElement_nin": [4],
  "parentSite_all": [4],
  "parentSite_eq": 4,
  "parentSite_exists": false,
  "parentSite_in": [4],
  "parentSite_ne": "4",
  "parentSite_nin": [4],
  "protected_eq": false,
  "protected_ne": true,
  "remarksOnTasks_eq": true,
  "remarksOnTasks_ne": false,
  "requestDescription_eq": true,
  "requestDescription_ne": false,
  "rootElement_all": ["4"],
  "rootElement_eq": "4",
  "rootElement_exists": false,
  "rootElement_in": ["4"],
  "rootElement_ne": "4",
  "rootElement_nin": [4],
  "rootSite_all": [4],
  "rootSite_eq": "4",
  "rootSite_exists": true,
  "rootSite_in": ["4"],
  "rootSite_ne": "4",
  "rootSite_nin": [4],
  "scoreInputs_eq": true,
  "scoreInputs_ne": false,
  "seenBy_all": [4],
  "seenBy_eq": ["4"],
  "seenBy_exists": false,
  "seenBy_in": [4],
  "seenBy_nin": [4],
  "sequential_eq": true,
  "sequential_ne": true,
  "site": SiteWhereInput,
  "site_all": [4],
  "site_eq": "4",
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": "4",
  "site_nin": [4],
  "startDate_eq": "2007-12-03T10:15:30Z",
  "startDate_exists": false,
  "startDate_gt": "2007-12-03T10:15:30Z",
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_in": ["2007-12-03T10:15:30Z"],
  "startDate_lt": "2007-12-03T10:15:30Z",
  "startDate_lte": "2007-12-03T10:15:30Z",
  "startDate_ne": "2007-12-03T10:15:30Z",
  "startDate_nin": ["2007-12-03T10:15:30Z"],
  "stateMachineInstance": StateMachineInstanceWhereInput,
  "system_eq": true,
  "system_ne": true,
  "taskGroups_every": TaskGroupWhereInput,
  "taskGroups_none": TaskGroupWhereInput,
  "taskGroups_some": TaskGroupWhereInput,
  "toolAssociations_every": IssueInstanceToolAssociationWhereInput,
  "toolAssociations_exists": false,
  "toolAssociations_none": IssueInstanceToolAssociationWhereInput,
  "toolAssociations_some": IssueInstanceToolAssociationWhereInput,
  "toolItems_all": [4],
  "toolItems_eq": [4],
  "toolItems_exists": true,
  "toolItems_in": ["4"],
  "toolItems_nin": ["4"],
  "toolLegendAndComments_eq": false,
  "toolLegendAndComments_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"],
  "usersNotBlocked_all": [4],
  "usersNotBlocked_eq": ["4"],
  "usersNotBlocked_exists": true,
  "usersNotBlocked_in": ["4"],
  "usersNotBlocked_nin": [4],
  "workPackageId_all": [4],
  "workPackageId_eq": "4",
  "workPackageId_exists": false,
  "workPackageId_in": ["4"],
  "workPackageId_ne": "4",
  "workPackageId_nin": [4]
}

IssueInstanceWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

IssueOrAction

Types
Union Types

Action

IssueInstance

Example
Action

IssueRejectionInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
executionDate - DateTime!
observation - String
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "executionDate": "2007-12-03T10:15:30Z",
  "observation": "abc123"
}

IssueReporTaskInputFilter

Fields
Input FieldDescription
inputId - ID
valueBigger - Any
valueLower - Any
valuesBetween - [Any]
valuesDateIn - [DateTime]
valuesIdIn - [ID]
valuesNumberIn - [Int]
valuesStringIn - [String]
Example
{
  "inputId": "4",
  "valueBigger": Any,
  "valueLower": Any,
  "valuesBetween": [Any],
  "valuesDateIn": ["2007-12-03T10:15:30Z"],
  "valuesIdIn": ["4"],
  "valuesNumberIn": [123],
  "valuesStringIn": ["xyz789"]
}

IssueReport

Description

Represents a IssueReport

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
distinctIssueReportValues - IssueReportDistinctValues
folder - IssueReportFolder!IssueReport Folder
folderId - ID!IssueReport Folder
generalFields - [GeneralFieldEnum]
issueCatalog - IssueCatalog!IssueCatalog for this report
issueCatalogId - ID!IssueCatalog for this report
myConfig - IssueReportConfig
name - String!Task group name
protected - Boolean
system - Boolean
taskConditionalInputFields - [ID]
taskInputFields - [ID]
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "distinctIssueReportValues": IssueReportDistinctValues,
  "folder": IssueReportFolder,
  "folderId": "4",
  "generalFields": ["actions"],
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "myConfig": IssueReportConfig,
  "name": "xyz789",
  "protected": true,
  "system": true,
  "taskConditionalInputFields": [4],
  "taskInputFields": ["4"],
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

IssueReportConfig

Description

Represents a IssueReportConfig

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
generalFieldsToHide - [String]
issueReport - IssueReport!IssueReport for this config
issueReportId - ID!IssueReport for this config
protected - Boolean
system - Boolean
taskInputFieldsToHide - [ID]
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "generalFieldsToHide": ["abc123"],
  "issueReport": IssueReport,
  "issueReportId": 4,
  "protected": false,
  "system": false,
  "taskInputFieldsToHide": ["4"],
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

IssueReportConfigCreateInput

Description

Represents a IssueReportConfigCreateInput

Fields
Input FieldDescription
generalFieldsToHide - [String]
issueReport - ID!IssueReport for this config
taskInputFieldsToHide - [ID]
Example
{
  "generalFieldsToHide": ["abc123"],
  "issueReport": 4,
  "taskInputFieldsToHide": ["4"]
}

IssueReportConfigUpdateInput

Description

Represents a IssueReportConfigUpdateInput

Fields
Input FieldDescription
generalFieldsToHide - [String]
issueReport - IDIssueReport for this config
taskInputFieldsToHide - [ID]
Example
{
  "generalFieldsToHide": ["xyz789"],
  "issueReport": "4",
  "taskInputFieldsToHide": ["4"]
}

IssueReportConfigWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

IssueReportCreateInput

Description

Represents a IssueReportCreateInput

Fields
Input FieldDescription
folder - ID!IssueReport Folder
generalFields - [GeneralFieldEnum]
issueCatalog - ID!IssueCatalog for this report
name - String!Task group name
taskConditionalInputFields - [ID]
taskInputFields - [ID]
Example
{
  "folder": "4",
  "generalFields": ["actions"],
  "issueCatalog": 4,
  "name": "abc123",
  "taskConditionalInputFields": [4],
  "taskInputFields": [4]
}

IssueReportDistinctValues

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]
assignedLabelValues - [LabelValue]
element - [Element]
executedBy - [Account]
glarID - [String]
glarID_contains - String
labels - [LabelValue]
names - [String]
site - [Site]
stateMachineInstance - [String]
taskInputs - [IssueReportTaskInputDistinct]
triggeredBy - TriggeredByDistinct
Example
{
  "_id": 4,
  "assignedAccounts": [Account],
  "assignedLabelValues": [LabelValue],
  "element": [Element],
  "executedBy": [Account],
  "glarID": ["abc123"],
  "glarID_contains": "abc123",
  "labels": [LabelValue],
  "names": ["xyz789"],
  "site": [Site],
  "stateMachineInstance": ["xyz789"],
  "taskInputs": [IssueReportTaskInputDistinct],
  "triggeredBy": TriggeredByDistinct
}

IssueReportFilters

Fields
Input FieldDescription
_id - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
element - [ID]
executedBy - [ID]
glarID - [String]
glarID_contains - String
labels - [ID]
names - [String]
site - [ID]
startDate_gte - DateTime
startDate_lte - DateTime
stateMachineInstance - [String]
taskConditionalInputs - [IssueReporTaskInputFilter]
taskInputs - [IssueReporTaskInputFilter]
Example
{
  "_id": "4",
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "element": [4],
  "executedBy": ["4"],
  "glarID": ["abc123"],
  "glarID_contains": "xyz789",
  "labels": [4],
  "names": ["xyz789"],
  "site": ["4"],
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_lte": "2007-12-03T10:15:30Z",
  "stateMachineInstance": ["xyz789"],
  "taskConditionalInputs": [IssueReporTaskInputFilter],
  "taskInputs": [IssueReporTaskInputFilter]
}

IssueReportFolder

Description

Represents a IssueReportFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueReportFoldersCount - Int
issueReportsCount - Int
name - String!
parent - IssueReportFolderIssueReportFolder Parent
parentId - IDIssueReportFolder Parent
parentsTree - [IssueReportFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "issueReportFoldersCount": 987,
  "issueReportsCount": 987,
  "name": "xyz789",
  "parent": IssueReportFolder,
  "parentId": "4",
  "parentsTree": [IssueReportFolder],
  "parentsTreeIds": [4],
  "protected": false,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

IssueReportFolderCreateInput

Description

Represents a IssueReportFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDIssueReportFolder Parent
Example
{
  "context": "xyz789",
  "name": "abc123",
  "parent": "4"
}

IssueReportFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueReportFolderUpdateInput

Description

Represents a IssueReportFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDIssueReportFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": 4
}

IssueReportFolderWhereInput

Description

Represents a Where input for: IssueReportFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "context_contains": "abc123",
  "context_ends_with": "abc123",
  "context_eq": "xyz789",
  "context_exists": false,
  "context_in": ["xyz789"],
  "context_ne": "abc123",
  "context_nin": ["abc123"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "abc123",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": false,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

IssueReportFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueReportOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueReportScore

Fields
Field NameDescription
currentScore - Int
totalScore - Int
Example
{"currentScore": 123, "totalScore": 123}

IssueReportTaskInputDistinct

Fields
Field NameDescription
_id - ID!
datetime - [Date]
element - [Element]
labelValue - [LabelValue]
name - String
number - [Float]
site - [Site]
string - [String]
Example
{
  "_id": 4,
  "datetime": ["2007-12-03"],
  "element": [Element],
  "labelValue": [LabelValue],
  "name": "abc123",
  "number": [123.45],
  "site": [Site],
  "string": ["xyz789"]
}

IssueReportUpdateInput

Description

Represents a IssueReportUpdateInput

Fields
Input FieldDescription
folder - IDIssueReport Folder
generalFields - [GeneralFieldEnum]
issueCatalog - IDIssueCatalog for this report
name - StringTask group name
taskConditionalInputFields - [ID]
taskInputFields - [ID]
Example
{
  "folder": 4,
  "generalFields": ["actions"],
  "issueCatalog": "4",
  "name": "abc123",
  "taskConditionalInputFields": [4],
  "taskInputFields": ["4"]
}

IssueReportWhereInput

Description

Represents a Where input for: IssueReport

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
generalFields_all - [String]Field includes all given values.
generalFields_eq - [String]Given value is equal to field
generalFields_exists - Boolean
generalFields_in - [String]Field includes one of given value.
generalFields_nin - [String]Field does not include any of the given values.
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskConditionalInputFields_all - [ID]Field includes all given values.
taskConditionalInputFields_eq - [ID]Given value is equal to field
taskConditionalInputFields_exists - Boolean
taskConditionalInputFields_in - [ID]Field includes one of given value.
taskConditionalInputFields_nin - [ID]Field does not include any of the given values.
taskInputFields_all - [ID]Field includes all given values.
taskInputFields_eq - [ID]Given value is equal to field
taskInputFields_exists - Boolean
taskInputFields_in - [ID]Field includes one of given value.
taskInputFields_nin - [ID]Field does not include any of the given values.
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "folder_all": [4],
  "folder_eq": "4",
  "folder_exists": false,
  "folder_in": ["4"],
  "folder_ne": 4,
  "folder_nin": [4],
  "generalFields_all": ["xyz789"],
  "generalFields_eq": ["abc123"],
  "generalFields_exists": true,
  "generalFields_in": ["xyz789"],
  "generalFields_nin": ["abc123"],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": "4",
  "issueCatalog_exists": true,
  "issueCatalog_in": [4],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": [4],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "protected_eq": false,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "taskConditionalInputFields_all": ["4"],
  "taskConditionalInputFields_eq": ["4"],
  "taskConditionalInputFields_exists": false,
  "taskConditionalInputFields_in": [4],
  "taskConditionalInputFields_nin": [4],
  "taskInputFields_all": ["4"],
  "taskInputFields_eq": ["4"],
  "taskInputFields_exists": true,
  "taskInputFields_in": [4],
  "taskInputFields_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

IssueReportWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

IssueTasksScore

Fields
Field NameDescription
current - Int
total - Int
Example
{"current": 123, "total": 123}

IssueTemplate

Description

Represents a IssueTemplate

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
favorites - [IssueTemplateFavorite]
folder - IssueTemplateFolderIssueTemplate Folder
folderId - IDIssueTemplate Folder
frame - IssueTemplateFrame
icon - String
protected - Boolean
selectedVariant - ID
system - Boolean
taskTemplateGroups - [TaskTemplateGroup]
timeMapColumns - [IssueTemplateTimeMapColumn]
timeTableFilters - [IssueTemplateTimeTableFilter]
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
variant - IssueTemplateVariant
Example
{
  "_id": 4,
  "archived": false,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "favorites": [IssueTemplateFavorite],
  "folder": IssueTemplateFolder,
  "folderId": 4,
  "frame": IssueTemplateFrame,
  "icon": "abc123",
  "protected": true,
  "selectedVariant": 4,
  "system": false,
  "taskTemplateGroups": [TaskTemplateGroup],
  "timeMapColumns": [IssueTemplateTimeMapColumn],
  "timeTableFilters": [IssueTemplateTimeTableFilter],
  "title": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "variant": IssueTemplateVariant
}

IssueTemplateCreateInput

Description

Represents a IssueTemplateCreateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
favorites - [IssueTemplateFavoriteCreateInput]
folder - IDIssueTemplate Folder
frame - IssueTemplateFrameCreateInput
icon - String
selectedVariant - ID
timeMapColumns - [IssueTemplateTimeMapColumnCreateInput]
timeTableFilters - [IssueTemplateTimeTableFilterCreateInput]
title - String!
variant - IssueTemplateVariantCreateInput
Example
{
  "archived": false,
  "description": "xyz789",
  "favorites": [IssueTemplateFavoriteCreateInput],
  "folder": 4,
  "frame": IssueTemplateFrameCreateInput,
  "icon": "abc123",
  "selectedVariant": "4",
  "timeMapColumns": [
    IssueTemplateTimeMapColumnCreateInput
  ],
  "timeTableFilters": [
    IssueTemplateTimeTableFilterCreateInput
  ],
  "title": "xyz789",
  "variant": IssueTemplateVariantCreateInput
}

IssueTemplateDraft

Description

Represents a IssueTemplateDraft

Fields
Field NameDescription
_id - ID
assignedSkills - [IssueTemplateDraftAssignedSkill]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
favorites - [IssueTemplateDraftFavorite]
folder - IssueTemplateFolderIssueTemplate Folder
folderId - IDIssueTemplate Folder
frame - IssueTemplateDraftFrame
icon - String
protected - Boolean
selectedVariant - ID
system - Boolean
taskTemplateGroups - [IssueTemplateDraftTaskTemplateGroup]
timeMapColumns - [IssueTemplateDraftTimeMapColumn]
timeTableFilters - [IssueTemplateDraftTimeTableFilter]
title - String!
updateTemplate - IssueTemplateIssueTemplate to update
updateTemplateId - IDIssueTemplate to update
updatedAt - DateTime
updatedBy - Account
updatedById - ID
variant - IssueTemplateDraftVariant
Example
{
  "_id": 4,
  "assignedSkills": [IssueTemplateDraftAssignedSkill],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "favorites": [IssueTemplateDraftFavorite],
  "folder": IssueTemplateFolder,
  "folderId": "4",
  "frame": IssueTemplateDraftFrame,
  "icon": "abc123",
  "protected": false,
  "selectedVariant": 4,
  "system": true,
  "taskTemplateGroups": [
    IssueTemplateDraftTaskTemplateGroup
  ],
  "timeMapColumns": [IssueTemplateDraftTimeMapColumn],
  "timeTableFilters": [IssueTemplateDraftTimeTableFilter],
  "title": "xyz789",
  "updateTemplate": IssueTemplate,
  "updateTemplateId": "4",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "variant": IssueTemplateDraftVariant
}

IssueTemplateDraftAssignedSkill

Description

Represents a IssueTemplateDraftAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "abc123"
}

IssueTemplateDraftAssignedSkillCreateInput

Description

Represents a IssueTemplateDraftAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftAssignedSkillUpdateInput

Description

Represents a IssueTemplateDraftAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

IssueTemplateDraftAssignedSkillWhereInput

Description

Represents a Where input for: IssueTemplateDraftAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["abc123"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "abc123",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": [4],
  "id_eq": "4",
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": 4,
  "id_nin": ["4"],
  "level_contains": "xyz789",
  "level_ends_with": "abc123",
  "level_eq": "xyz789",
  "level_exists": false,
  "level_in": ["abc123"],
  "level_ne": "abc123",
  "level_nin": ["xyz789"],
  "level_not_contains": "xyz789",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "abc123",
  "skillname_ends_with": "abc123",
  "skillname_eq": "xyz789",
  "skillname_exists": true,
  "skillname_in": ["abc123"],
  "skillname_ne": "abc123",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "abc123",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "xyz789"
}

IssueTemplateDraftCreateInput

Description

Represents a IssueTemplateDraftCreateInput

Example
{
  "assignedSkills": [
    IssueTemplateDraftAssignedSkillCreateInput
  ],
  "description": "xyz789",
  "favorites": [IssueTemplateDraftFavoriteCreateInput],
  "folder": "4",
  "frame": IssueTemplateDraftFrameCreateInput,
  "icon": "abc123",
  "selectedVariant": "4",
  "taskTemplateGroups": [
    IssueTemplateDraftTaskTemplateGroupCreateInput
  ],
  "timeMapColumns": [
    IssueTemplateDraftTimeMapColumnCreateInput
  ],
  "timeTableFilters": [
    IssueTemplateDraftTimeTableFilterCreateInput
  ],
  "title": "xyz789",
  "variant": IssueTemplateDraftVariantCreateInput
}

IssueTemplateDraftFavorite

Description

Represents a IssueTemplateDraftFavorite

Fields
Field NameDescription
_id - ID
filter - [IssueTemplateDraftFavoriteFilter]
isForAttribution - BooleanFilter to filters
name - String!
result - [LabelValue!]
resultByCondition - [LabelValue!]
Example
{
  "_id": "4",
  "filter": [IssueTemplateDraftFavoriteFilter],
  "isForAttribution": false,
  "name": "xyz789",
  "result": [LabelValue],
  "resultByCondition": [LabelValue]
}

IssueTemplateDraftFavoriteCreateInput

Description

Represents a IssueTemplateDraftFavoriteCreateInput

Fields
Input FieldDescription
filter - [IssueTemplateDraftFavoriteFilterCreateInput]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "filter": [IssueTemplateDraftFavoriteFilterCreateInput],
  "isForAttribution": true,
  "name": "abc123"
}

IssueTemplateDraftFavoriteFilter

Description

Represents a IssueTemplateDraftFavoriteFilter

Fields
Field NameDescription
_id - ID
conditions - [IssueTemplateDraftFavoriteFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": 4,
  "conditions": [
    IssueTemplateDraftFavoriteFilterCondition
  ],
  "includeAllLabels": true
}

IssueTemplateDraftFavoriteFilterCondition

Description

Represents a IssueTemplateDraftFavoriteFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - IssueTemplateDraftFavoriteFilterConditionOperatoroperator of condition
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": 4,
  "operator": "CONTAINS"
}

IssueTemplateDraftFavoriteFilterConditionCreateInput

Description

Represents a IssueTemplateDraftFavoriteFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - IssueTemplateDraftFavoriteFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftFavoriteFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

IssueTemplateDraftFavoriteFilterConditionUpdateInput

Description

Represents a IssueTemplateDraftFavoriteFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - IssueTemplateDraftFavoriteFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftFavoriteFilterConditionWhereInput

Description

Represents a Where input for: IssueTemplateDraftFavoriteFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - IssueTemplateDraftFavoriteFilterConditionOperatorField is equal to given value
operator_exists - IssueTemplateDraftFavoriteFilterConditionOperatorField is set and exists
operator_in - [IssueTemplateDraftFavoriteFilterConditionOperator]Given value includes field
operator_ne - IssueTemplateDraftFavoriteFilterConditionOperatorField is not equal to given value
operator_nin - [IssueTemplateDraftFavoriteFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "labelValue_all": ["4"],
  "labelValue_eq": 4,
  "labelValue_exists": false,
  "labelValue_in": ["4"],
  "labelValue_ne": "4",
  "labelValue_nin": ["4"],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

IssueTemplateDraftFavoriteFilterCreateInput

Description

Represents a IssueTemplateDraftFavoriteFilterCreateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftFavoriteFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftFavoriteFilterConditionCreateInput
  ],
  "includeAllLabels": false
}

IssueTemplateDraftFavoriteFilterUpdateInput

Description

Represents a IssueTemplateDraftFavoriteFilterUpdateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftFavoriteFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftFavoriteFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

IssueTemplateDraftFavoriteFilterWhereInput

Description

Represents a Where input for: IssueTemplateDraftFavoriteFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - IssueTemplateDraftFavoriteFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - IssueTemplateDraftFavoriteFilterConditionWhereInput
conditions_some - IssueTemplateDraftFavoriteFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "conditions_every": IssueTemplateDraftFavoriteFilterConditionWhereInput,
  "conditions_exists": false,
  "conditions_none": IssueTemplateDraftFavoriteFilterConditionWhereInput,
  "conditions_some": IssueTemplateDraftFavoriteFilterConditionWhereInput,
  "includeAllLabels_eq": true,
  "includeAllLabels_ne": false
}

IssueTemplateDraftFavoriteUpdateInput

Description

Represents a IssueTemplateDraftFavoriteUpdateInput

Fields
Input FieldDescription
filter - [IssueTemplateDraftFavoriteFilterUpdateInput]
isForAttribution - BooleanFilter to filters
name - String
Example
{
  "filter": [IssueTemplateDraftFavoriteFilterUpdateInput],
  "isForAttribution": false,
  "name": "abc123"
}

IssueTemplateDraftFavoriteWhereInput

Description

Represents a Where input for: IssueTemplateDraftFavorite

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
filter_every - IssueTemplateDraftFavoriteFilterWhereInput
filter_exists - Boolean
filter_none - IssueTemplateDraftFavoriteFilterWhereInput
filter_some - IssueTemplateDraftFavoriteFilterWhereInput
isForAttribution_eq - BooleanField is equal to given value
isForAttribution_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "filter_every": IssueTemplateDraftFavoriteFilterWhereInput,
  "filter_exists": false,
  "filter_none": IssueTemplateDraftFavoriteFilterWhereInput,
  "filter_some": IssueTemplateDraftFavoriteFilterWhereInput,
  "isForAttribution_eq": false,
  "isForAttribution_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

IssueTemplateDraftFrame

Description

Represents a IssueTemplateDraftFrame

Fields
Field NameDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
conflictHandler - IssueTemplateDraftFrameConflictHandler
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftFrameEstimatedDurationDivided
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateDraftFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [Input]
materialLegendAndComments - Boolean
presets - [IssueTemplateDraftFramePreset]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateDraftFrameScanMapping]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateDraftFrameSkill]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": false,
  "conflictHandler": "keepBoth",
  "customArConfiguration": false,
  "divideTime": false,
  "estimatedDuration": 987,
  "estimatedDurationDivided": IssueTemplateDraftFrameEstimatedDurationDivided,
  "estimatedDurationFromTasks": false,
  "estimatedDurationUnit": "hours",
  "idOnTasks": true,
  "inputs": [Input],
  "materialLegendAndComments": true,
  "presets": [IssueTemplateDraftFramePreset],
  "remarksOnTasks": false,
  "scanMapping": [IssueTemplateDraftFrameScanMapping],
  "scoreInputs": true,
  "sequential": true,
  "skills": [IssueTemplateDraftFrameSkill],
  "toolLegendAndComments": true
}

IssueTemplateDraftFrameConflictHandler

Values
Enum ValueDescription

keepBoth

keepNew

keepOld

Example
"keepBoth"

IssueTemplateDraftFrameCreateInput

Description

Represents a IssueTemplateDraftFrameCreateInput

Fields
Input FieldDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
conflictHandler - IssueTemplateDraftFrameConflictHandler
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftFrameEstimatedDurationDividedCreateInput
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateDraftFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [InputCreateInput]
materialLegendAndComments - Boolean
presets - [IssueTemplateDraftFramePresetCreateInput]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateDraftFrameScanMappingCreateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateDraftFrameSkillCreateInput]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": true,
  "conflictHandler": "keepBoth",
  "customArConfiguration": true,
  "divideTime": true,
  "estimatedDuration": 123,
  "estimatedDurationDivided": IssueTemplateDraftFrameEstimatedDurationDividedCreateInput,
  "estimatedDurationFromTasks": true,
  "estimatedDurationUnit": "hours",
  "idOnTasks": true,
  "inputs": [InputCreateInput],
  "materialLegendAndComments": false,
  "presets": [IssueTemplateDraftFramePresetCreateInput],
  "remarksOnTasks": false,
  "scanMapping": [
    IssueTemplateDraftFrameScanMappingCreateInput
  ],
  "scoreInputs": true,
  "sequential": false,
  "skills": [IssueTemplateDraftFrameSkillCreateInput],
  "toolLegendAndComments": true
}

IssueTemplateDraftFrameEstimatedDurationDivided

Description

Represents a IssueTemplateDraftFrameEstimatedDurationDivided

Fields
Field NameDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 987, "valueAdded": 987, "waste": 987}

IssueTemplateDraftFrameEstimatedDurationDividedCreateInput

Description

Represents a IssueTemplateDraftFrameEstimatedDurationDividedCreateInput

Fields
Input FieldDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 987, "valueAdded": 987, "waste": 987}

IssueTemplateDraftFrameEstimatedDurationDividedUpdateInput

Description

Represents a IssueTemplateDraftFrameEstimatedDurationDividedUpdateInput

Fields
Input FieldDescription
nonValueAdded - Int
valueAdded - Int
waste - Int
Example
{"nonValueAdded": 987, "valueAdded": 123, "waste": 987}

IssueTemplateDraftFrameEstimatedDurationDividedWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameEstimatedDurationDivided

Fields
Input FieldDescription
nonValueAdded_eq - IntField is equal to given value
nonValueAdded_exists - BooleanField is set and exists
nonValueAdded_gt - IntField is greater than given value
nonValueAdded_gte - IntField is greater or equal than given value
nonValueAdded_in - [Int]Given value includes field
nonValueAdded_lt - IntField is lower than given value
nonValueAdded_lte - IntField is lower or equal than given value
nonValueAdded_ne - IntField is not equal to given value
nonValueAdded_nin - [Int]Given value does not includes field
valueAdded_eq - IntField is equal to given value
valueAdded_exists - BooleanField is set and exists
valueAdded_gt - IntField is greater than given value
valueAdded_gte - IntField is greater or equal than given value
valueAdded_in - [Int]Given value includes field
valueAdded_lt - IntField is lower than given value
valueAdded_lte - IntField is lower or equal than given value
valueAdded_ne - IntField is not equal to given value
valueAdded_nin - [Int]Given value does not includes field
waste_eq - IntField is equal to given value
waste_exists - BooleanField is set and exists
waste_gt - IntField is greater than given value
waste_gte - IntField is greater or equal than given value
waste_in - [Int]Given value includes field
waste_lt - IntField is lower than given value
waste_lte - IntField is lower or equal than given value
waste_ne - IntField is not equal to given value
waste_nin - [Int]Given value does not includes field
Example
{
  "nonValueAdded_eq": 987,
  "nonValueAdded_exists": true,
  "nonValueAdded_gt": 987,
  "nonValueAdded_gte": 123,
  "nonValueAdded_in": [987],
  "nonValueAdded_lt": 123,
  "nonValueAdded_lte": 123,
  "nonValueAdded_ne": 123,
  "nonValueAdded_nin": [987],
  "valueAdded_eq": 123,
  "valueAdded_exists": false,
  "valueAdded_gt": 987,
  "valueAdded_gte": 123,
  "valueAdded_in": [987],
  "valueAdded_lt": 987,
  "valueAdded_lte": 123,
  "valueAdded_ne": 987,
  "valueAdded_nin": [123],
  "waste_eq": 987,
  "waste_exists": true,
  "waste_gt": 987,
  "waste_gte": 123,
  "waste_in": [987],
  "waste_lt": 123,
  "waste_lte": 987,
  "waste_ne": 987,
  "waste_nin": [987]
}

IssueTemplateDraftFrameEstimatedDurationUnit

Values
Enum ValueDescription

hours

minutes

seconds

Example
"hours"

IssueTemplateDraftFrameInputDateTriggerAlertCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

IssueTemplateDraftFrameInputDateTriggerAlertShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

IssueTemplateDraftFrameInputDateTriggerAlertWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDateTriggerAlert

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - IssueTemplateDraftFrameInputDateTriggerAlertConditionField is equal to given value
condition_exists - IssueTemplateDraftFrameInputDateTriggerAlertConditionField is set and exists
condition_in - [IssueTemplateDraftFrameInputDateTriggerAlertCondition]Given value includes field
condition_ne - IssueTemplateDraftFrameInputDateTriggerAlertConditionField is not equal to given value
condition_nin - [IssueTemplateDraftFrameInputDateTriggerAlertCondition]Given value does not includes field
showIn_eq - IssueTemplateDraftFrameInputDateTriggerAlertShowInField is equal to given value
showIn_exists - IssueTemplateDraftFrameInputDateTriggerAlertShowInField is set and exists
showIn_in - [IssueTemplateDraftFrameInputDateTriggerAlertShowIn]Given value includes field
showIn_ne - IssueTemplateDraftFrameInputDateTriggerAlertShowInField is not equal to given value
showIn_nin - [IssueTemplateDraftFrameInputDateTriggerAlertShowIn]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": true,
  "amount_gt": 123,
  "amount_gte": 123,
  "amount_in": [987],
  "amount_lt": 123,
  "amount_lte": 123,
  "amount_ne": 987,
  "amount_nin": [123],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

IssueTemplateDraftFrameInputDateValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDateValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_contains - StringField contains given value, case-insensitive
max_ends_with - StringField ends with given value, case-insensitive
max_eq - StringField is equal to given value
max_exists - BooleanField is set and exists
max_in - [String]Given value includes field
max_ne - StringField is not equal to given value
max_nin - [String]Given value does not includes field
max_not_contains - StringField does not contains given value, case-insensitive
max_not_ends_with - StringField does not end with given value, case-insensitive
max_not_starts_with - StringField does not start with given value, case-insensitive
max_starts_with - StringField starts with given value, case-insensitive
min_contains - StringField contains given value, case-insensitive
min_ends_with - StringField ends with given value, case-insensitive
min_eq - StringField is equal to given value
min_exists - BooleanField is set and exists
min_in - [String]Given value includes field
min_ne - StringField is not equal to given value
min_nin - [String]Given value does not includes field
min_not_contains - StringField does not contains given value, case-insensitive
min_not_ends_with - StringField does not end with given value, case-insensitive
min_not_starts_with - StringField does not start with given value, case-insensitive
min_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": false,
  "inclusive_ne": true,
  "max_contains": "xyz789",
  "max_ends_with": "xyz789",
  "max_eq": "xyz789",
  "max_exists": true,
  "max_in": ["xyz789"],
  "max_ne": "abc123",
  "max_nin": ["abc123"],
  "max_not_contains": "xyz789",
  "max_not_ends_with": "xyz789",
  "max_not_starts_with": "abc123",
  "max_starts_with": "xyz789",
  "min_contains": "xyz789",
  "min_ends_with": "abc123",
  "min_eq": "xyz789",
  "min_exists": false,
  "min_in": ["abc123"],
  "min_ne": "xyz789",
  "min_nin": ["abc123"],
  "min_not_contains": "abc123",
  "min_not_ends_with": "abc123",
  "min_not_starts_with": "xyz789",
  "min_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputDateWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDate

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
triggerAlert - IssueTemplateDraftFrameInputDateTriggerAlertWhereInput
validations_every - IssueTemplateDraftFrameInputDateValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputDateValidationWhereInput
validations_some - IssueTemplateDraftFrameInputDateValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": false,
  "options_all": ["abc123"],
  "options_eq": ["xyz789"],
  "options_exists": true,
  "options_in": ["abc123"],
  "options_nin": ["xyz789"],
  "triggerAlert": IssueTemplateDraftFrameInputDateTriggerAlertWhereInput,
  "validations_every": IssueTemplateDraftFrameInputDateValidationWhereInput,
  "validations_exists": true,
  "validations_none": IssueTemplateDraftFrameInputDateValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputDateValidationWhereInput,
  "values_all": ["abc123"],
  "values_eq": ["abc123"],
  "values_exists": true,
  "values_in": ["xyz789"],
  "values_nin": ["xyz789"]
}

IssueTemplateDraftFrameInputDatetimeTriggerAlertCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

IssueTemplateDraftFrameInputDatetimeTriggerAlertShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

IssueTemplateDraftFrameInputDatetimeTriggerAlertWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDatetimeTriggerAlert

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - IssueTemplateDraftFrameInputDatetimeTriggerAlertConditionField is equal to given value
condition_exists - IssueTemplateDraftFrameInputDatetimeTriggerAlertConditionField is set and exists
condition_in - [IssueTemplateDraftFrameInputDatetimeTriggerAlertCondition]Given value includes field
condition_ne - IssueTemplateDraftFrameInputDatetimeTriggerAlertConditionField is not equal to given value
condition_nin - [IssueTemplateDraftFrameInputDatetimeTriggerAlertCondition]Given value does not includes field
showIn_eq - IssueTemplateDraftFrameInputDatetimeTriggerAlertShowInField is equal to given value
showIn_exists - IssueTemplateDraftFrameInputDatetimeTriggerAlertShowInField is set and exists
showIn_in - [IssueTemplateDraftFrameInputDatetimeTriggerAlertShowIn]Given value includes field
showIn_ne - IssueTemplateDraftFrameInputDatetimeTriggerAlertShowInField is not equal to given value
showIn_nin - [IssueTemplateDraftFrameInputDatetimeTriggerAlertShowIn]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": false,
  "amount_gt": 123,
  "amount_gte": 123,
  "amount_in": [123],
  "amount_lt": 987,
  "amount_lte": 987,
  "amount_ne": 987,
  "amount_nin": [123],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

IssueTemplateDraftFrameInputDatetimeValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDatetimeValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_eq - DateTimeField is equal to given value
max_exists - BooleanField is set and exists
max_gt - DateTimeField is greater than given value
max_gte - DateTimeField is greater or equal than given value
max_in - [DateTime]Given value includes field
max_lt - DateTimeField is lower than given value
max_lte - DateTimeField is lower or equal than given value
max_ne - DateTimeField is not equal to given value
max_nin - [DateTime]Given value does not includes field
min_eq - DateTimeField is equal to given value
min_exists - BooleanField is set and exists
min_gt - DateTimeField is greater than given value
min_gte - DateTimeField is greater or equal than given value
min_in - [DateTime]Given value includes field
min_lt - DateTimeField is lower than given value
min_lte - DateTimeField is lower or equal than given value
min_ne - DateTimeField is not equal to given value
min_nin - [DateTime]Given value does not includes field
Example
{
  "inclusive_eq": true,
  "inclusive_ne": false,
  "max_eq": "2007-12-03T10:15:30Z",
  "max_exists": false,
  "max_gt": "2007-12-03T10:15:30Z",
  "max_gte": "2007-12-03T10:15:30Z",
  "max_in": ["2007-12-03T10:15:30Z"],
  "max_lt": "2007-12-03T10:15:30Z",
  "max_lte": "2007-12-03T10:15:30Z",
  "max_ne": "2007-12-03T10:15:30Z",
  "max_nin": ["2007-12-03T10:15:30Z"],
  "min_eq": "2007-12-03T10:15:30Z",
  "min_exists": false,
  "min_gt": "2007-12-03T10:15:30Z",
  "min_gte": "2007-12-03T10:15:30Z",
  "min_in": ["2007-12-03T10:15:30Z"],
  "min_lt": "2007-12-03T10:15:30Z",
  "min_lte": "2007-12-03T10:15:30Z",
  "min_ne": "2007-12-03T10:15:30Z",
  "min_nin": ["2007-12-03T10:15:30Z"]
}

IssueTemplateDraftFrameInputDatetimeWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputDatetime

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [DateTime]Field includes all given values.
options_eq - [DateTime]Given value is equal to field
options_exists - Boolean
options_in - [DateTime]Field includes one of given value.
options_nin - [DateTime]Field does not include any of the given values.
triggerAlert - IssueTemplateDraftFrameInputDatetimeTriggerAlertWhereInput
validations_every - IssueTemplateDraftFrameInputDatetimeValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputDatetimeValidationWhereInput
validations_some - IssueTemplateDraftFrameInputDatetimeValidationWhereInput
values_all - [DateTime]Field includes all given values.
values_eq - [DateTime]Given value is equal to field
values_exists - Boolean
values_in - [DateTime]Field includes one of given value.
values_nin - [DateTime]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": false,
  "options_all": ["2007-12-03T10:15:30Z"],
  "options_eq": ["2007-12-03T10:15:30Z"],
  "options_exists": true,
  "options_in": ["2007-12-03T10:15:30Z"],
  "options_nin": ["2007-12-03T10:15:30Z"],
  "triggerAlert": IssueTemplateDraftFrameInputDatetimeTriggerAlertWhereInput,
  "validations_every": IssueTemplateDraftFrameInputDatetimeValidationWhereInput,
  "validations_exists": false,
  "validations_none": IssueTemplateDraftFrameInputDatetimeValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputDatetimeValidationWhereInput,
  "values_all": ["2007-12-03T10:15:30Z"],
  "values_eq": ["2007-12-03T10:15:30Z"],
  "values_exists": true,
  "values_in": ["2007-12-03T10:15:30Z"],
  "values_nin": ["2007-12-03T10:15:30Z"]
}

IssueTemplateDraftFrameInputElementWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputElement

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 123,
  "maxValues_ne": 987,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": false,
  "options_all": [4],
  "options_eq": ["4"],
  "options_exists": true,
  "options_in": [4],
  "options_nin": ["4"],
  "values_all": ["4"],
  "values_eq": [4],
  "values_exists": false,
  "values_in": [4],
  "values_nin": [4]
}

IssueTemplateDraftFrameInputFileWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputFile

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [123],
  "maxValues_lt": 987,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": false,
  "multiple_ne": true,
  "options_all": ["4"],
  "options_eq": ["4"],
  "options_exists": true,
  "options_in": [4],
  "options_nin": [4],
  "values_all": ["4"],
  "values_eq": [4],
  "values_exists": true,
  "values_in": ["4"],
  "values_nin": [4]
}

IssueTemplateDraftFrameInputInstructionWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputInstruction

Fields
Input FieldDescription
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "values_all": ["4"],
  "values_eq": ["4"],
  "values_exists": false,
  "values_in": ["4"],
  "values_nin": ["4"]
}

IssueTemplateDraftFrameInputLabelValueValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLabelValueValidation

Fields
Input FieldDescription
label_all - [ID]Given value includes all in array
label_eq - IDField is equal to given value
label_exists - BooleanField is set and exists
label_in - [ID]Given value includes field
label_ne - IDField is not equal to given value
label_nin - [ID]Given value does not include field
Example
{
  "label_all": ["4"],
  "label_eq": "4",
  "label_exists": true,
  "label_in": ["4"],
  "label_ne": "4",
  "label_nin": [4]
}

IssueTemplateDraftFrameInputLabelValueWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLabelValue

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
validations_every - IssueTemplateDraftFrameInputLabelValueValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputLabelValueValidationWhereInput
validations_some - IssueTemplateDraftFrameInputLabelValueValidationWhereInput
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": true,
  "options_all": ["4"],
  "options_eq": ["4"],
  "options_exists": false,
  "options_in": ["4"],
  "options_nin": [4],
  "validations_every": IssueTemplateDraftFrameInputLabelValueValidationWhereInput,
  "validations_exists": true,
  "validations_none": IssueTemplateDraftFrameInputLabelValueValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputLabelValueValidationWhereInput,
  "values_all": ["4"],
  "values_eq": [4],
  "values_exists": true,
  "values_in": ["4"],
  "values_nin": [4]
}

IssueTemplateDraftFrameInputLogNoteWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogNote

Fields
Input FieldDescription
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "files_all": [4],
  "files_eq": ["4"],
  "files_exists": true,
  "files_in": [4],
  "files_nin": [4],
  "text_contains": "xyz789",
  "text_ends_with": "abc123",
  "text_eq": "abc123",
  "text_exists": true,
  "text_in": ["abc123"],
  "text_ne": "abc123",
  "text_nin": ["abc123"],
  "text_not_contains": "abc123",
  "text_not_ends_with": "abc123",
  "text_not_starts_with": "abc123",
  "text_starts_with": "abc123"
}

IssueTemplateDraftFrameInputLogSignatureWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogSignature

Fields
Input FieldDescription
image_all - [ID]Given value includes all in array
image_eq - IDField is equal to given value
image_exists - BooleanField is set and exists
image_in - [ID]Given value includes field
image_ne - IDField is not equal to given value
image_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "image_all": [4],
  "image_eq": "4",
  "image_exists": true,
  "image_in": ["4"],
  "image_ne": "4",
  "image_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputLogTableValueRowWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogTableValueRow

Fields
Input FieldDescription
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
Example
{
  "date_all": ["abc123"],
  "date_eq": ["xyz789"],
  "date_exists": true,
  "date_in": ["abc123"],
  "date_nin": ["abc123"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": false,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": ["4"],
  "element_eq": [4],
  "element_exists": false,
  "element_in": [4],
  "element_nin": ["4"],
  "file_all": [4],
  "file_eq": [4],
  "file_exists": false,
  "file_in": [4],
  "file_nin": ["4"],
  "labelValue_all": ["4"],
  "labelValue_eq": ["4"],
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_nin": ["4"],
  "number_all": [987],
  "number_eq": [123],
  "number_exists": false,
  "number_in": [987],
  "number_nin": [123],
  "string_all": ["xyz789"],
  "string_eq": ["abc123"],
  "string_exists": false,
  "string_in": ["abc123"],
  "string_nin": ["xyz789"],
  "time_all": ["xyz789"],
  "time_eq": ["xyz789"],
  "time_exists": false,
  "time_in": ["xyz789"],
  "time_nin": ["abc123"]
}

IssueTemplateDraftFrameInputLogTableValueWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogTableValue

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
rows - IssueTemplateDraftFrameInputLogTableValueRowWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "rows": IssueTemplateDraftFrameInputLogTableValueRowWhereInput,
  "type_contains": "abc123",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": true,
  "type_in": ["abc123"],
  "type_ne": "abc123",
  "type_nin": ["abc123"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputLogTableWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogTable

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
values_every - IssueTemplateDraftFrameInputLogTableValueWhereInput
values_exists - Boolean
values_none - IssueTemplateDraftFrameInputLogTableValueWhereInput
values_some - IssueTemplateDraftFrameInputLogTableValueWhereInput
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "values_every": IssueTemplateDraftFrameInputLogTableValueWhereInput,
  "values_exists": true,
  "values_none": IssueTemplateDraftFrameInputLogTableValueWhereInput,
  "values_some": IssueTemplateDraftFrameInputLogTableValueWhereInput
}

IssueTemplateDraftFrameInputLogTagWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLogTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "device_all": ["4"],
  "device_eq": 4,
  "device_exists": true,
  "device_in": [4],
  "device_ne": "4",
  "device_nin": ["4"],
  "key_contains": "xyz789",
  "key_ends_with": "xyz789",
  "key_eq": "abc123",
  "key_exists": true,
  "key_in": ["abc123"],
  "key_ne": "xyz789",
  "key_nin": ["abc123"],
  "key_not_contains": "xyz789",
  "key_not_ends_with": "abc123",
  "key_not_starts_with": "abc123",
  "key_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "unit_all": [4],
  "unit_eq": 4,
  "unit_exists": true,
  "unit_in": [4],
  "unit_ne": 4,
  "unit_nin": [4],
  "value_contains": "xyz789",
  "value_ends_with": "abc123",
  "value_eq": "xyz789",
  "value_exists": true,
  "value_in": ["abc123"],
  "value_ne": "xyz789",
  "value_nin": ["xyz789"],
  "value_not_contains": "abc123",
  "value_not_ends_with": "xyz789",
  "value_not_starts_with": "abc123",
  "value_starts_with": "abc123"
}

IssueTemplateDraftFrameInputLogType

Values
Enum ValueDescription

cancelMotive

date

datetime

element

file

instruction

labelValue

number

signature

site

string

table

tags

time

tool

Example
"cancelMotive"

IssueTemplateDraftFrameInputLogWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
cancelMotive_contains - StringField contains given value, case-insensitive
cancelMotive_ends_with - StringField ends with given value, case-insensitive
cancelMotive_eq - StringField is equal to given value
cancelMotive_exists - BooleanField is set and exists
cancelMotive_in - [String]Given value includes field
cancelMotive_ne - StringField is not equal to given value
cancelMotive_nin - [String]Given value does not includes field
cancelMotive_not_contains - StringField does not contains given value, case-insensitive
cancelMotive_not_ends_with - StringField does not end with given value, case-insensitive
cancelMotive_not_starts_with - StringField does not start with given value, case-insensitive
cancelMotive_starts_with - StringField starts with given value, case-insensitive
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
error_contains - StringField contains given value, case-insensitive
error_ends_with - StringField ends with given value, case-insensitive
error_eq - StringField is equal to given value
error_exists - BooleanField is set and exists
error_in - [String]Given value includes field
error_ne - StringField is not equal to given value
error_nin - [String]Given value does not includes field
error_not_contains - StringField does not contains given value, case-insensitive
error_not_ends_with - StringField does not end with given value, case-insensitive
error_not_starts_with - StringField does not start with given value, case-insensitive
error_starts_with - StringField starts with given value, case-insensitive
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
gpsLocation_all - [Int]Field includes all given values.
gpsLocation_eq - [Int]Given value is equal to field
gpsLocation_exists - Boolean
gpsLocation_in - [Int]Field includes one of given value.
gpsLocation_nin - [Int]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
note - IssueTemplateDraftFrameInputLogNoteWhereInput
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
signature_every - IssueTemplateDraftFrameInputLogSignatureWhereInput
signature_exists - Boolean
signature_none - IssueTemplateDraftFrameInputLogSignatureWhereInput
signature_some - IssueTemplateDraftFrameInputLogSignatureWhereInput
site_all - [ID]Field includes all given values.
site_eq - [ID]Given value is equal to field
site_exists - Boolean
site_in - [ID]Field includes one of given value.
site_nin - [ID]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
table_every - IssueTemplateDraftFrameInputLogTableWhereInput
table_exists - Boolean
table_none - IssueTemplateDraftFrameInputLogTableWhereInput
table_some - IssueTemplateDraftFrameInputLogTableWhereInput
tags_every - IssueTemplateDraftFrameInputLogTagWhereInput
tags_exists - Boolean
tags_none - IssueTemplateDraftFrameInputLogTagWhereInput
tags_some - IssueTemplateDraftFrameInputLogTagWhereInput
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
timestamp_eq - DateTimeField is equal to given value
timestamp_exists - BooleanField is set and exists
timestamp_gt - DateTimeField is greater than given value
timestamp_gte - DateTimeField is greater or equal than given value
timestamp_in - [DateTime]Given value includes field
timestamp_lt - DateTimeField is lower than given value
timestamp_lte - DateTimeField is lower or equal than given value
timestamp_ne - DateTimeField is not equal to given value
timestamp_nin - [DateTime]Given value does not includes field
toolItem_all - [ID]Field includes all given values.
toolItem_eq - [ID]Given value is equal to field
toolItem_exists - Boolean
toolItem_in - [ID]Field includes one of given value.
toolItem_nin - [ID]Field does not include any of the given values.
type_eq - IssueTemplateDraftFrameInputLogTypeField is equal to given value
type_exists - IssueTemplateDraftFrameInputLogTypeField is set and exists
type_in - [IssueTemplateDraftFrameInputLogType]Given value includes field
type_ne - IssueTemplateDraftFrameInputLogTypeField is not equal to given value
type_nin - [IssueTemplateDraftFrameInputLogType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": false,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": ["4"],
  "cancelMotive_contains": "xyz789",
  "cancelMotive_ends_with": "xyz789",
  "cancelMotive_eq": "xyz789",
  "cancelMotive_exists": false,
  "cancelMotive_in": ["xyz789"],
  "cancelMotive_ne": "abc123",
  "cancelMotive_nin": ["xyz789"],
  "cancelMotive_not_contains": "xyz789",
  "cancelMotive_not_ends_with": "xyz789",
  "cancelMotive_not_starts_with": "abc123",
  "cancelMotive_starts_with": "xyz789",
  "date_all": ["xyz789"],
  "date_eq": ["abc123"],
  "date_exists": true,
  "date_in": ["xyz789"],
  "date_nin": ["abc123"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": true,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": [4],
  "element_eq": ["4"],
  "element_exists": true,
  "element_in": [4],
  "element_nin": [4],
  "error_contains": "xyz789",
  "error_ends_with": "abc123",
  "error_eq": "xyz789",
  "error_exists": true,
  "error_in": ["xyz789"],
  "error_ne": "abc123",
  "error_nin": ["xyz789"],
  "error_not_contains": "xyz789",
  "error_not_ends_with": "xyz789",
  "error_not_starts_with": "abc123",
  "error_starts_with": "abc123",
  "file_all": [4],
  "file_eq": [4],
  "file_exists": true,
  "file_in": ["4"],
  "file_nin": [4],
  "gpsLocation_all": [987],
  "gpsLocation_eq": [123],
  "gpsLocation_exists": true,
  "gpsLocation_in": [987],
  "gpsLocation_nin": [123],
  "labelValue_all": [4],
  "labelValue_eq": [4],
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_nin": ["4"],
  "note": IssueTemplateDraftFrameInputLogNoteWhereInput,
  "number_all": [987],
  "number_eq": [123],
  "number_exists": true,
  "number_in": [123],
  "number_nin": [987],
  "signature_every": IssueTemplateDraftFrameInputLogSignatureWhereInput,
  "signature_exists": false,
  "signature_none": IssueTemplateDraftFrameInputLogSignatureWhereInput,
  "signature_some": IssueTemplateDraftFrameInputLogSignatureWhereInput,
  "site_all": [4],
  "site_eq": ["4"],
  "site_exists": false,
  "site_in": ["4"],
  "site_nin": [4],
  "string_all": ["abc123"],
  "string_eq": ["abc123"],
  "string_exists": false,
  "string_in": ["xyz789"],
  "string_nin": ["abc123"],
  "table_every": IssueTemplateDraftFrameInputLogTableWhereInput,
  "table_exists": true,
  "table_none": IssueTemplateDraftFrameInputLogTableWhereInput,
  "table_some": IssueTemplateDraftFrameInputLogTableWhereInput,
  "tags_every": IssueTemplateDraftFrameInputLogTagWhereInput,
  "tags_exists": true,
  "tags_none": IssueTemplateDraftFrameInputLogTagWhereInput,
  "tags_some": IssueTemplateDraftFrameInputLogTagWhereInput,
  "time_all": ["xyz789"],
  "time_eq": ["xyz789"],
  "time_exists": false,
  "time_in": ["xyz789"],
  "time_nin": ["abc123"],
  "timestamp_eq": "2007-12-03T10:15:30Z",
  "timestamp_exists": false,
  "timestamp_gt": "2007-12-03T10:15:30Z",
  "timestamp_gte": "2007-12-03T10:15:30Z",
  "timestamp_in": ["2007-12-03T10:15:30Z"],
  "timestamp_lt": "2007-12-03T10:15:30Z",
  "timestamp_lte": "2007-12-03T10:15:30Z",
  "timestamp_ne": "2007-12-03T10:15:30Z",
  "timestamp_nin": ["2007-12-03T10:15:30Z"],
  "toolItem_all": ["4"],
  "toolItem_eq": [4],
  "toolItem_exists": true,
  "toolItem_in": ["4"],
  "toolItem_nin": [4],
  "type_eq": "cancelMotive",
  "type_exists": "cancelMotive",
  "type_in": ["cancelMotive"],
  "type_ne": "cancelMotive",
  "type_nin": ["cancelMotive"]
}

IssueTemplateDraftFrameInputNoteWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputNote

Fields
Input FieldDescription
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
Example
{
  "files_all": [4],
  "files_eq": [4],
  "files_exists": true,
  "files_in": [4],
  "files_nin": ["4"],
  "text_contains": "abc123",
  "text_ends_with": "xyz789",
  "text_eq": "abc123",
  "text_exists": true,
  "text_in": ["abc123"],
  "text_ne": "abc123",
  "text_nin": ["xyz789"],
  "text_not_contains": "abc123",
  "text_not_ends_with": "xyz789",
  "text_not_starts_with": "xyz789",
  "text_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputNumberOnResponseCondition

Values
Enum ValueDescription

BETWEEN

EQUALS

LESS_EQUAL_THAN

LESS_THAN

MORE_EQUAL_THAN

MORE_THAN

NOT_BETWEEN

Example
"BETWEEN"

IssueTemplateDraftFrameInputNumberOnResponseWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputNumberOnResponse

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actionDraft_all - [ID]Given value includes all in array
actionDraft_eq - IDField is equal to given value
actionDraft_exists - BooleanField is set and exists
actionDraft_in - [ID]Given value includes field
actionDraft_ne - IDField is not equal to given value
actionDraft_nin - [ID]Given value does not include field
actionRequired_eq - BooleanField is equal to given value
actionRequired_ne - BooleanField is not equal to given value
cancelIssue_eq - BooleanField is equal to given value
cancelIssue_ne - BooleanField is not equal to given value
condition_eq - IssueTemplateDraftFrameInputNumberOnResponseConditionField is equal to given value
condition_exists - IssueTemplateDraftFrameInputNumberOnResponseConditionField is set and exists
condition_in - [IssueTemplateDraftFrameInputNumberOnResponseCondition]Given value includes field
condition_ne - IssueTemplateDraftFrameInputNumberOnResponseConditionField is not equal to given value
condition_nin - [IssueTemplateDraftFrameInputNumberOnResponseCondition]Given value does not includes field
createAlert_eq - BooleanField is equal to given value
createAlert_ne - BooleanField is not equal to given value
createTasks_eq - BooleanField is equal to given value
createTasks_ne - BooleanField is not equal to given value
failResponse_eq - BooleanField is equal to given value
failResponse_ne - BooleanField is not equal to given value
finishIssue_eq - BooleanField is equal to given value
finishIssue_ne - BooleanField is not equal to given value
ifValues_all - [Int]Field includes all given values.
ifValues_eq - [Int]Given value is equal to field
ifValues_exists - Boolean
ifValues_in - [Int]Field includes one of given value.
ifValues_nin - [Int]Field does not include any of the given values.
repeatTasksIds_all - [ID]Field includes all given values.
repeatTasksIds_eq - [ID]Given value is equal to field
repeatTasksIds_exists - Boolean
repeatTasksIds_in - [ID]Field includes one of given value.
repeatTasksIds_nin - [ID]Field does not include any of the given values.
repeatTasks_eq - BooleanField is equal to given value
repeatTasks_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "actionDraft_all": ["4"],
  "actionDraft_eq": "4",
  "actionDraft_exists": true,
  "actionDraft_in": ["4"],
  "actionDraft_ne": 4,
  "actionDraft_nin": ["4"],
  "actionRequired_eq": false,
  "actionRequired_ne": true,
  "cancelIssue_eq": false,
  "cancelIssue_ne": false,
  "condition_eq": "BETWEEN",
  "condition_exists": "BETWEEN",
  "condition_in": ["BETWEEN"],
  "condition_ne": "BETWEEN",
  "condition_nin": ["BETWEEN"],
  "createAlert_eq": false,
  "createAlert_ne": false,
  "createTasks_eq": true,
  "createTasks_ne": true,
  "failResponse_eq": true,
  "failResponse_ne": true,
  "finishIssue_eq": true,
  "finishIssue_ne": false,
  "ifValues_all": [987],
  "ifValues_eq": [987],
  "ifValues_exists": false,
  "ifValues_in": [123],
  "ifValues_nin": [123],
  "repeatTasksIds_all": ["4"],
  "repeatTasksIds_eq": ["4"],
  "repeatTasksIds_exists": true,
  "repeatTasksIds_in": ["4"],
  "repeatTasksIds_nin": [4],
  "repeatTasks_eq": false,
  "repeatTasks_ne": true
}

IssueTemplateDraftFrameInputNumberValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputNumberValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
notBetween_all - [Int]Field includes all given values.
notBetween_eq - [Int]Given value is equal to field
notBetween_exists - Boolean
notBetween_in - [Int]Field includes one of given value.
notBetween_nin - [Int]Field does not include any of the given values.
Example
{
  "inclusive_eq": true,
  "inclusive_ne": false,
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 987,
  "max_nin": [123],
  "min_eq": 123,
  "min_exists": true,
  "min_gt": 123,
  "min_gte": 123,
  "min_in": [123],
  "min_lt": 123,
  "min_lte": 123,
  "min_ne": 123,
  "min_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "notBetween_all": [987],
  "notBetween_eq": [987],
  "notBetween_exists": true,
  "notBetween_in": [987],
  "notBetween_nin": [987]
}

IssueTemplateDraftFrameInputNumberWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputNumber

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
onResponse_every - IssueTemplateDraftFrameInputNumberOnResponseWhereInput
onResponse_exists - Boolean
onResponse_none - IssueTemplateDraftFrameInputNumberOnResponseWhereInput
onResponse_some - IssueTemplateDraftFrameInputNumberOnResponseWhereInput
options_all - [Int]Field includes all given values.
options_eq - [Int]Given value is equal to field
options_exists - Boolean
options_in - [Int]Field includes one of given value.
options_nin - [Int]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
validations_every - IssueTemplateDraftFrameInputNumberValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputNumberValidationWhereInput
validations_some - IssueTemplateDraftFrameInputNumberValidationWhereInput
values_all - [Int]Field includes all given values.
values_eq - [Int]Given value is equal to field
values_exists - Boolean
values_in - [Int]Field includes one of given value.
values_nin - [Int]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 123,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 987,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "multiple_eq": false,
  "multiple_ne": true,
  "onResponse_every": IssueTemplateDraftFrameInputNumberOnResponseWhereInput,
  "onResponse_exists": false,
  "onResponse_none": IssueTemplateDraftFrameInputNumberOnResponseWhereInput,
  "onResponse_some": IssueTemplateDraftFrameInputNumberOnResponseWhereInput,
  "options_all": [123],
  "options_eq": [123],
  "options_exists": false,
  "options_in": [987],
  "options_nin": [987],
  "unit_all": ["4"],
  "unit_eq": "4",
  "unit_exists": true,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": ["4"],
  "validations_every": IssueTemplateDraftFrameInputNumberValidationWhereInput,
  "validations_exists": false,
  "validations_none": IssueTemplateDraftFrameInputNumberValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputNumberValidationWhereInput,
  "values_all": [123],
  "values_eq": [987],
  "values_exists": true,
  "values_in": [987],
  "values_nin": [987]
}

IssueTemplateDraftFrameInputSignatureValueWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputSignatureValue

Fields
Input FieldDescription
image_all - [ID]Given value includes all in array
image_eq - IDField is equal to given value
image_exists - BooleanField is set and exists
image_in - [ID]Given value includes field
image_ne - IDField is not equal to given value
image_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "image_all": ["4"],
  "image_eq": "4",
  "image_exists": true,
  "image_in": ["4"],
  "image_ne": 4,
  "image_nin": ["4"],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputSignatureWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputSignature

Example
{
  "values_every": IssueTemplateDraftFrameInputSignatureValueWhereInput,
  "values_exists": false,
  "values_none": IssueTemplateDraftFrameInputSignatureValueWhereInput,
  "values_some": IssueTemplateDraftFrameInputSignatureValueWhereInput
}

IssueTemplateDraftFrameInputSiteWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputSite

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [ID]Field includes all given values.
options_eq - [ID]Given value is equal to field
options_exists - Boolean
options_in - [ID]Field includes one of given value.
options_nin - [ID]Field does not include any of the given values.
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 987,
  "maxValues_lte": 123,
  "maxValues_ne": 987,
  "maxValues_nin": [123],
  "multiple_eq": true,
  "multiple_ne": true,
  "options_all": [4],
  "options_eq": ["4"],
  "options_exists": false,
  "options_in": [4],
  "options_nin": ["4"],
  "values_all": [4],
  "values_eq": ["4"],
  "values_exists": true,
  "values_in": ["4"],
  "values_nin": ["4"]
}

IssueTemplateDraftFrameInputStringOnResponseWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputStringOnResponse

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actionDraft_all - [ID]Given value includes all in array
actionDraft_eq - IDField is equal to given value
actionDraft_exists - BooleanField is set and exists
actionDraft_in - [ID]Given value includes field
actionDraft_ne - IDField is not equal to given value
actionDraft_nin - [ID]Given value does not include field
actionRequired_eq - BooleanField is equal to given value
actionRequired_ne - BooleanField is not equal to given value
cancelIssue_eq - BooleanField is equal to given value
cancelIssue_ne - BooleanField is not equal to given value
createAlert_eq - BooleanField is equal to given value
createAlert_ne - BooleanField is not equal to given value
createTasks_eq - BooleanField is equal to given value
createTasks_ne - BooleanField is not equal to given value
finishIssue_eq - BooleanField is equal to given value
finishIssue_ne - BooleanField is not equal to given value
ifValues_all - [String]Field includes all given values.
ifValues_eq - [String]Given value is equal to field
ifValues_exists - Boolean
ifValues_in - [String]Field includes one of given value.
ifValues_nin - [String]Field does not include any of the given values.
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "actionDraft_all": ["4"],
  "actionDraft_eq": 4,
  "actionDraft_exists": true,
  "actionDraft_in": [4],
  "actionDraft_ne": "4",
  "actionDraft_nin": ["4"],
  "actionRequired_eq": false,
  "actionRequired_ne": true,
  "cancelIssue_eq": true,
  "cancelIssue_ne": false,
  "createAlert_eq": true,
  "createAlert_ne": false,
  "createTasks_eq": false,
  "createTasks_ne": false,
  "finishIssue_eq": true,
  "finishIssue_ne": false,
  "ifValues_all": ["abc123"],
  "ifValues_eq": ["abc123"],
  "ifValues_exists": false,
  "ifValues_in": ["abc123"],
  "ifValues_nin": ["xyz789"]
}

IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputStringOptionsWithScore

Fields
Input FieldDescription
_id_contains - StringField contains given value, case-insensitive
_id_ends_with - StringField ends with given value, case-insensitive
_id_eq - StringField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [String]Given value includes field
_id_ne - StringField is not equal to given value
_id_nin - [String]Given value does not includes field
_id_not_contains - StringField does not contains given value, case-insensitive
_id_not_ends_with - StringField does not end with given value, case-insensitive
_id_not_starts_with - StringField does not start with given value, case-insensitive
_id_starts_with - StringField starts with given value, case-insensitive
option_contains - StringField contains given value, case-insensitive
option_ends_with - StringField ends with given value, case-insensitive
option_eq - StringField is equal to given value
option_exists - BooleanField is set and exists
option_in - [String]Given value includes field
option_ne - StringField is not equal to given value
option_nin - [String]Given value does not includes field
option_not_contains - StringField does not contains given value, case-insensitive
option_not_ends_with - StringField does not end with given value, case-insensitive
option_not_starts_with - StringField does not start with given value, case-insensitive
option_starts_with - StringField starts with given value, case-insensitive
score_eq - IntField is equal to given value
score_exists - BooleanField is set and exists
score_gt - IntField is greater than given value
score_gte - IntField is greater or equal than given value
score_in - [Int]Given value includes field
score_lt - IntField is lower than given value
score_lte - IntField is lower or equal than given value
score_ne - IntField is not equal to given value
score_nin - [Int]Given value does not includes field
Example
{
  "_id_contains": "abc123",
  "_id_ends_with": "xyz789",
  "_id_eq": "abc123",
  "_id_exists": false,
  "_id_in": ["abc123"],
  "_id_ne": "xyz789",
  "_id_nin": ["xyz789"],
  "_id_not_contains": "abc123",
  "_id_not_ends_with": "abc123",
  "_id_not_starts_with": "abc123",
  "_id_starts_with": "abc123",
  "option_contains": "xyz789",
  "option_ends_with": "xyz789",
  "option_eq": "abc123",
  "option_exists": false,
  "option_in": ["abc123"],
  "option_ne": "xyz789",
  "option_nin": ["abc123"],
  "option_not_contains": "xyz789",
  "option_not_ends_with": "xyz789",
  "option_not_starts_with": "xyz789",
  "option_starts_with": "xyz789",
  "score_eq": 987,
  "score_exists": false,
  "score_gt": 987,
  "score_gte": 987,
  "score_in": [123],
  "score_lt": 123,
  "score_lte": 123,
  "score_ne": 123,
  "score_nin": [123]
}

IssueTemplateDraftFrameInputStringPresetWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputStringPreset

Fields
Input FieldDescription
presetId_all - [ID]Given value includes all in array
presetId_eq - IDField is equal to given value
presetId_exists - BooleanField is set and exists
presetId_in - [ID]Given value includes field
presetId_ne - IDField is not equal to given value
presetId_nin - [ID]Given value does not include field
Example
{
  "presetId_all": [4],
  "presetId_eq": 4,
  "presetId_exists": false,
  "presetId_in": ["4"],
  "presetId_ne": 4,
  "presetId_nin": [4]
}

IssueTemplateDraftFrameInputStringValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputStringValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
linkWithInputs_all - [ID]Field includes all given values.
linkWithInputs_eq - [ID]Given value is equal to field
linkWithInputs_exists - Boolean
linkWithInputs_in - [ID]Field includes one of given value.
linkWithInputs_nin - [ID]Field does not include any of the given values.
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
regex_contains - StringField contains given value, case-insensitive
regex_ends_with - StringField ends with given value, case-insensitive
regex_eq - StringField is equal to given value
regex_exists - BooleanField is set and exists
regex_in - [String]Given value includes field
regex_ne - StringField is not equal to given value
regex_nin - [String]Given value does not includes field
regex_not_contains - StringField does not contains given value, case-insensitive
regex_not_ends_with - StringField does not end with given value, case-insensitive
regex_not_starts_with - StringField does not start with given value, case-insensitive
regex_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": false,
  "inclusive_ne": true,
  "linkWithInputs_all": [4],
  "linkWithInputs_eq": ["4"],
  "linkWithInputs_exists": true,
  "linkWithInputs_in": ["4"],
  "linkWithInputs_nin": ["4"],
  "max_eq": 987,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 987,
  "max_nin": [123],
  "min_eq": 123,
  "min_exists": false,
  "min_gt": 123,
  "min_gte": 123,
  "min_in": [123],
  "min_lt": 987,
  "min_lte": 987,
  "min_ne": 123,
  "min_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "regex_contains": "xyz789",
  "regex_ends_with": "abc123",
  "regex_eq": "xyz789",
  "regex_exists": false,
  "regex_in": ["abc123"],
  "regex_ne": "abc123",
  "regex_nin": ["abc123"],
  "regex_not_contains": "xyz789",
  "regex_not_ends_with": "xyz789",
  "regex_not_starts_with": "xyz789",
  "regex_starts_with": "abc123"
}

IssueTemplateDraftFrameInputStringWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputString

Fields
Input FieldDescription
failOptions_all - [String]Field includes all given values.
failOptions_eq - [String]Given value is equal to field
failOptions_exists - Boolean
failOptions_in - [String]Field includes one of given value.
failOptions_nin - [String]Field does not include any of the given values.
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
onResponse_every - IssueTemplateDraftFrameInputStringOnResponseWhereInput
onResponse_exists - Boolean
onResponse_none - IssueTemplateDraftFrameInputStringOnResponseWhereInput
onResponse_some - IssueTemplateDraftFrameInputStringOnResponseWhereInput
optionsWithScore_every - IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput
optionsWithScore_exists - Boolean
optionsWithScore_none - IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput
optionsWithScore_some - IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
preset - IssueTemplateDraftFrameInputStringPresetWhereInput
setValueWithQRCode_eq - BooleanField is equal to given value
setValueWithQRCode_ne - BooleanField is not equal to given value
validations_every - IssueTemplateDraftFrameInputStringValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputStringValidationWhereInput
validations_some - IssueTemplateDraftFrameInputStringValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "failOptions_all": ["xyz789"],
  "failOptions_eq": ["abc123"],
  "failOptions_exists": true,
  "failOptions_in": ["xyz789"],
  "failOptions_nin": ["abc123"],
  "maxValues_eq": 987,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [123],
  "maxValues_lt": 987,
  "maxValues_lte": 123,
  "maxValues_ne": 123,
  "maxValues_nin": [123],
  "multiple_eq": false,
  "multiple_ne": false,
  "onResponse_every": IssueTemplateDraftFrameInputStringOnResponseWhereInput,
  "onResponse_exists": false,
  "onResponse_none": IssueTemplateDraftFrameInputStringOnResponseWhereInput,
  "onResponse_some": IssueTemplateDraftFrameInputStringOnResponseWhereInput,
  "optionsWithScore_every": IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput,
  "optionsWithScore_exists": true,
  "optionsWithScore_none": IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput,
  "optionsWithScore_some": IssueTemplateDraftFrameInputStringOptionsWithScoreWhereInput,
  "options_all": ["abc123"],
  "options_eq": ["abc123"],
  "options_exists": false,
  "options_in": ["abc123"],
  "options_nin": ["abc123"],
  "preset": IssueTemplateDraftFrameInputStringPresetWhereInput,
  "setValueWithQRCode_eq": false,
  "setValueWithQRCode_ne": false,
  "validations_every": IssueTemplateDraftFrameInputStringValidationWhereInput,
  "validations_exists": true,
  "validations_none": IssueTemplateDraftFrameInputStringValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputStringValidationWhereInput,
  "values_all": ["abc123"],
  "values_eq": ["abc123"],
  "values_exists": false,
  "values_in": ["abc123"],
  "values_nin": ["abc123"]
}

IssueTemplateDraftFrameInputTableValueRowWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTableValueRow

Fields
Input FieldDescription
date_all - [String]Field includes all given values.
date_eq - [String]Given value is equal to field
date_exists - Boolean
date_in - [String]Field includes one of given value.
date_nin - [String]Field does not include any of the given values.
datetime_all - [DateTime]Field includes all given values.
datetime_eq - [DateTime]Given value is equal to field
datetime_exists - Boolean
datetime_in - [DateTime]Field includes one of given value.
datetime_nin - [DateTime]Field does not include any of the given values.
element_all - [ID]Field includes all given values.
element_eq - [ID]Given value is equal to field
element_exists - Boolean
element_in - [ID]Field includes one of given value.
element_nin - [ID]Field does not include any of the given values.
file_all - [ID]Field includes all given values.
file_eq - [ID]Given value is equal to field
file_exists - Boolean
file_in - [ID]Field includes one of given value.
file_nin - [ID]Field does not include any of the given values.
labelValue_all - [ID]Field includes all given values.
labelValue_eq - [ID]Given value is equal to field
labelValue_exists - Boolean
labelValue_in - [ID]Field includes one of given value.
labelValue_nin - [ID]Field does not include any of the given values.
number_all - [Int]Field includes all given values.
number_eq - [Int]Given value is equal to field
number_exists - Boolean
number_in - [Int]Field includes one of given value.
number_nin - [Int]Field does not include any of the given values.
string_all - [String]Field includes all given values.
string_eq - [String]Given value is equal to field
string_exists - Boolean
string_in - [String]Field includes one of given value.
string_nin - [String]Field does not include any of the given values.
time_all - [String]Field includes all given values.
time_eq - [String]Given value is equal to field
time_exists - Boolean
time_in - [String]Field includes one of given value.
time_nin - [String]Field does not include any of the given values.
Example
{
  "date_all": ["xyz789"],
  "date_eq": ["xyz789"],
  "date_exists": true,
  "date_in": ["abc123"],
  "date_nin": ["abc123"],
  "datetime_all": ["2007-12-03T10:15:30Z"],
  "datetime_eq": ["2007-12-03T10:15:30Z"],
  "datetime_exists": true,
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "element_all": ["4"],
  "element_eq": [4],
  "element_exists": true,
  "element_in": ["4"],
  "element_nin": ["4"],
  "file_all": ["4"],
  "file_eq": [4],
  "file_exists": false,
  "file_in": ["4"],
  "file_nin": [4],
  "labelValue_all": ["4"],
  "labelValue_eq": ["4"],
  "labelValue_exists": false,
  "labelValue_in": [4],
  "labelValue_nin": ["4"],
  "number_all": [987],
  "number_eq": [123],
  "number_exists": false,
  "number_in": [123],
  "number_nin": [123],
  "string_all": ["abc123"],
  "string_eq": ["xyz789"],
  "string_exists": true,
  "string_in": ["xyz789"],
  "string_nin": ["xyz789"],
  "time_all": ["abc123"],
  "time_eq": ["abc123"],
  "time_exists": true,
  "time_in": ["xyz789"],
  "time_nin": ["xyz789"]
}

IssueTemplateDraftFrameInputTableValueWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTableValue

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
rows - IssueTemplateDraftFrameInputTableValueRowWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "rows": IssueTemplateDraftFrameInputTableValueRowWhereInput,
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": false,
  "type_in": ["xyz789"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "abc123"
}

IssueTemplateDraftFrameInputTableWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTable

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
values_every - IssueTemplateDraftFrameInputTableValueWhereInput
values_exists - Boolean
values_none - IssueTemplateDraftFrameInputTableValueWhereInput
values_some - IssueTemplateDraftFrameInputTableValueWhereInput
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 987,
  "maxValues_nin": [987],
  "values_every": IssueTemplateDraftFrameInputTableValueWhereInput,
  "values_exists": false,
  "values_none": IssueTemplateDraftFrameInputTableValueWhereInput,
  "values_some": IssueTemplateDraftFrameInputTableValueWhereInput
}

IssueTemplateDraftFrameInputTagValueWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTagValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
device_all - [ID]Given value includes all in array
device_eq - IDField is equal to given value
device_exists - BooleanField is set and exists
device_in - [ID]Given value includes field
device_ne - IDField is not equal to given value
device_nin - [ID]Given value does not include field
key_contains - StringField contains given value, case-insensitive
key_ends_with - StringField ends with given value, case-insensitive
key_eq - StringField is equal to given value
key_exists - BooleanField is set and exists
key_in - [String]Given value includes field
key_ne - StringField is not equal to given value
key_nin - [String]Given value does not includes field
key_not_contains - StringField does not contains given value, case-insensitive
key_not_ends_with - StringField does not end with given value, case-insensitive
key_not_starts_with - StringField does not start with given value, case-insensitive
key_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "device_all": [4],
  "device_eq": 4,
  "device_exists": false,
  "device_in": ["4"],
  "device_ne": 4,
  "device_nin": ["4"],
  "key_contains": "abc123",
  "key_ends_with": "abc123",
  "key_eq": "xyz789",
  "key_exists": false,
  "key_in": ["abc123"],
  "key_ne": "xyz789",
  "key_nin": ["xyz789"],
  "key_not_contains": "xyz789",
  "key_not_ends_with": "abc123",
  "key_not_starts_with": "xyz789",
  "key_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "unit_all": ["4"],
  "unit_eq": 4,
  "unit_exists": true,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": ["4"],
  "value_contains": "abc123",
  "value_ends_with": "xyz789",
  "value_eq": "xyz789",
  "value_exists": true,
  "value_in": ["abc123"],
  "value_ne": "xyz789",
  "value_nin": ["xyz789"],
  "value_not_contains": "xyz789",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "abc123",
  "value_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputTagWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
values_every - IssueTemplateDraftFrameInputTagValueWhereInput
values_exists - Boolean
values_none - IssueTemplateDraftFrameInputTagValueWhereInput
values_some - IssueTemplateDraftFrameInputTagValueWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "values_every": IssueTemplateDraftFrameInputTagValueWhereInput,
  "values_exists": true,
  "values_none": IssueTemplateDraftFrameInputTagValueWhereInput,
  "values_some": IssueTemplateDraftFrameInputTagValueWhereInput
}

IssueTemplateDraftFrameInputTimeValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTimeValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
max_contains - StringField contains given value, case-insensitive
max_ends_with - StringField ends with given value, case-insensitive
max_eq - StringField is equal to given value
max_exists - BooleanField is set and exists
max_in - [String]Given value includes field
max_ne - StringField is not equal to given value
max_nin - [String]Given value does not includes field
max_not_contains - StringField does not contains given value, case-insensitive
max_not_ends_with - StringField does not end with given value, case-insensitive
max_not_starts_with - StringField does not start with given value, case-insensitive
max_starts_with - StringField starts with given value, case-insensitive
min_contains - StringField contains given value, case-insensitive
min_ends_with - StringField ends with given value, case-insensitive
min_eq - StringField is equal to given value
min_exists - BooleanField is set and exists
min_in - [String]Given value includes field
min_ne - StringField is not equal to given value
min_nin - [String]Given value does not includes field
min_not_contains - StringField does not contains given value, case-insensitive
min_not_ends_with - StringField does not end with given value, case-insensitive
min_not_starts_with - StringField does not start with given value, case-insensitive
min_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inclusive_eq": true,
  "inclusive_ne": true,
  "max_contains": "abc123",
  "max_ends_with": "xyz789",
  "max_eq": "xyz789",
  "max_exists": false,
  "max_in": ["abc123"],
  "max_ne": "abc123",
  "max_nin": ["abc123"],
  "max_not_contains": "abc123",
  "max_not_ends_with": "xyz789",
  "max_not_starts_with": "xyz789",
  "max_starts_with": "abc123",
  "min_contains": "abc123",
  "min_ends_with": "abc123",
  "min_eq": "abc123",
  "min_exists": true,
  "min_in": ["abc123"],
  "min_ne": "xyz789",
  "min_nin": ["abc123"],
  "min_not_contains": "abc123",
  "min_not_ends_with": "xyz789",
  "min_not_starts_with": "abc123",
  "min_starts_with": "xyz789"
}

IssueTemplateDraftFrameInputTimeWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTime

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
validations_every - IssueTemplateDraftFrameInputTimeValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputTimeValidationWhereInput
validations_some - IssueTemplateDraftFrameInputTimeValidationWhereInput
values_all - [String]Field includes all given values.
values_eq - [String]Given value is equal to field
values_exists - Boolean
values_in - [String]Field includes one of given value.
values_nin - [String]Field does not include any of the given values.
Example
{
  "maxValues_eq": 123,
  "maxValues_exists": true,
  "maxValues_gt": 987,
  "maxValues_gte": 123,
  "maxValues_in": [123],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": true,
  "options_all": ["abc123"],
  "options_eq": ["xyz789"],
  "options_exists": true,
  "options_in": ["xyz789"],
  "options_nin": ["abc123"],
  "validations_every": IssueTemplateDraftFrameInputTimeValidationWhereInput,
  "validations_exists": false,
  "validations_none": IssueTemplateDraftFrameInputTimeValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputTimeValidationWhereInput,
  "values_all": ["abc123"],
  "values_eq": ["abc123"],
  "values_exists": false,
  "values_in": ["abc123"],
  "values_nin": ["abc123"]
}

IssueTemplateDraftFrameInputToolValidationWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputToolValidation

Fields
Input FieldDescription
inclusive_eq - BooleanField is equal to given value
inclusive_ne - BooleanField is not equal to given value
linkWithInputs_all - [ID]Field includes all given values.
linkWithInputs_eq - [ID]Given value is equal to field
linkWithInputs_exists - Boolean
linkWithInputs_in - [ID]Field includes one of given value.
linkWithInputs_nin - [ID]Field does not include any of the given values.
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
min_eq - IntField is equal to given value
min_exists - BooleanField is set and exists
min_gt - IntField is greater than given value
min_gte - IntField is greater or equal than given value
min_in - [Int]Given value includes field
min_lt - IntField is lower than given value
min_lte - IntField is lower or equal than given value
min_ne - IntField is not equal to given value
min_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
regex_contains - StringField contains given value, case-insensitive
regex_ends_with - StringField ends with given value, case-insensitive
regex_eq - StringField is equal to given value
regex_exists - BooleanField is set and exists
regex_in - [String]Given value includes field
regex_ne - StringField is not equal to given value
regex_nin - [String]Given value does not includes field
regex_not_contains - StringField does not contains given value, case-insensitive
regex_not_ends_with - StringField does not end with given value, case-insensitive
regex_not_starts_with - StringField does not start with given value, case-insensitive
regex_starts_with - StringField starts with given value, case-insensitive
specificTool_all - [ID]Field includes all given values.
specificTool_eq - [ID]Given value is equal to field
specificTool_exists - Boolean
specificTool_in - [ID]Field includes one of given value.
specificTool_nin - [ID]Field does not include any of the given values.
Example
{
  "inclusive_eq": true,
  "inclusive_ne": false,
  "linkWithInputs_all": ["4"],
  "linkWithInputs_eq": [4],
  "linkWithInputs_exists": true,
  "linkWithInputs_in": ["4"],
  "linkWithInputs_nin": [4],
  "max_eq": 123,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [987],
  "min_eq": 123,
  "min_exists": true,
  "min_gt": 987,
  "min_gte": 987,
  "min_in": [123],
  "min_lt": 987,
  "min_lte": 987,
  "min_ne": 123,
  "min_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "regex_contains": "xyz789",
  "regex_ends_with": "xyz789",
  "regex_eq": "xyz789",
  "regex_exists": true,
  "regex_in": ["abc123"],
  "regex_ne": "xyz789",
  "regex_nin": ["abc123"],
  "regex_not_contains": "abc123",
  "regex_not_ends_with": "abc123",
  "regex_not_starts_with": "abc123",
  "regex_starts_with": "abc123",
  "specificTool_all": [4],
  "specificTool_eq": ["4"],
  "specificTool_exists": false,
  "specificTool_in": [4],
  "specificTool_nin": [4]
}

IssueTemplateDraftFrameInputToolWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInputTool

Fields
Input FieldDescription
maxValues_eq - IntField is equal to given value
maxValues_exists - BooleanField is set and exists
maxValues_gt - IntField is greater than given value
maxValues_gte - IntField is greater or equal than given value
maxValues_in - [Int]Given value includes field
maxValues_lt - IntField is lower than given value
maxValues_lte - IntField is lower or equal than given value
maxValues_ne - IntField is not equal to given value
maxValues_nin - [Int]Given value does not includes field
multiple_eq - BooleanField is equal to given value
multiple_ne - BooleanField is not equal to given value
setValueWithQRCode_eq - BooleanField is equal to given value
setValueWithQRCode_ne - BooleanField is not equal to given value
validations_every - IssueTemplateDraftFrameInputToolValidationWhereInput
validations_exists - Boolean
validations_none - IssueTemplateDraftFrameInputToolValidationWhereInput
validations_some - IssueTemplateDraftFrameInputToolValidationWhereInput
values_all - [ID]Field includes all given values.
values_eq - [ID]Given value is equal to field
values_exists - Boolean
values_in - [ID]Field includes one of given value.
values_nin - [ID]Field does not include any of the given values.
Example
{
  "maxValues_eq": 987,
  "maxValues_exists": false,
  "maxValues_gt": 987,
  "maxValues_gte": 987,
  "maxValues_in": [987],
  "maxValues_lt": 123,
  "maxValues_lte": 987,
  "maxValues_ne": 123,
  "maxValues_nin": [987],
  "multiple_eq": true,
  "multiple_ne": false,
  "setValueWithQRCode_eq": false,
  "setValueWithQRCode_ne": true,
  "validations_every": IssueTemplateDraftFrameInputToolValidationWhereInput,
  "validations_exists": true,
  "validations_none": IssueTemplateDraftFrameInputToolValidationWhereInput,
  "validations_some": IssueTemplateDraftFrameInputToolValidationWhereInput,
  "values_all": ["4"],
  "values_eq": [4],
  "values_exists": true,
  "values_in": [4],
  "values_nin": ["4"]
}

IssueTemplateDraftFrameInputType

Values
Enum ValueDescription

date

datetime

element

file

instruction

labelValue

number

signature

site

string

table

tags

time

tool

Example
"date"

IssueTemplateDraftFrameInputWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameInput

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
container_contains - StringField contains given value, case-insensitive
container_ends_with - StringField ends with given value, case-insensitive
container_eq - StringField is equal to given value
container_exists - BooleanField is set and exists
container_in - [String]Given value includes field
container_ne - StringField is not equal to given value
container_nin - [String]Given value does not includes field
container_not_contains - StringField does not contains given value, case-insensitive
container_not_ends_with - StringField does not end with given value, case-insensitive
container_not_starts_with - StringField does not start with given value, case-insensitive
container_starts_with - StringField starts with given value, case-insensitive
date - IssueTemplateDraftFrameInputDateWhereInput
datetime - IssueTemplateDraftFrameInputDatetimeWhereInput
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
element - IssueTemplateDraftFrameInputElementWhereInput
file - IssueTemplateDraftFrameInputFileWhereInput
instruction - IssueTemplateDraftFrameInputInstructionWhereInput
isMutable_eq - BooleanField is equal to given value
isMutable_ne - BooleanField is not equal to given value
labelValue - IssueTemplateDraftFrameInputLabelValueWhereInput
log_every - IssueTemplateDraftFrameInputLogWhereInput
log_exists - Boolean
log_none - IssueTemplateDraftFrameInputLogWhereInput
log_some - IssueTemplateDraftFrameInputLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
note - IssueTemplateDraftFrameInputNoteWhereInput
number - IssueTemplateDraftFrameInputNumberWhereInput
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
signature - IssueTemplateDraftFrameInputSignatureWhereInput
site - IssueTemplateDraftFrameInputSiteWhereInput
string - IssueTemplateDraftFrameInputStringWhereInput
table - IssueTemplateDraftFrameInputTableWhereInput
tag_contains - StringField contains given value, case-insensitive
tag_ends_with - StringField ends with given value, case-insensitive
tag_eq - StringField is equal to given value
tag_exists - BooleanField is set and exists
tag_in - [String]Given value includes field
tag_ne - StringField is not equal to given value
tag_nin - [String]Given value does not includes field
tag_not_contains - StringField does not contains given value, case-insensitive
tag_not_ends_with - StringField does not end with given value, case-insensitive
tag_not_starts_with - StringField does not start with given value, case-insensitive
tag_starts_with - StringField starts with given value, case-insensitive
tags - IssueTemplateDraftFrameInputTagWhereInput
time - IssueTemplateDraftFrameInputTimeWhereInput
tool - IssueTemplateDraftFrameInputToolWhereInput
tooltip_contains - StringField contains given value, case-insensitive
tooltip_ends_with - StringField ends with given value, case-insensitive
tooltip_eq - StringField is equal to given value
tooltip_exists - BooleanField is set and exists
tooltip_in - [String]Given value includes field
tooltip_ne - StringField is not equal to given value
tooltip_nin - [String]Given value does not includes field
tooltip_not_contains - StringField does not contains given value, case-insensitive
tooltip_not_ends_with - StringField does not end with given value, case-insensitive
tooltip_not_starts_with - StringField does not start with given value, case-insensitive
tooltip_starts_with - StringField starts with given value, case-insensitive
type_eq - IssueTemplateDraftFrameInputTypeField is equal to given value
type_exists - IssueTemplateDraftFrameInputTypeField is set and exists
type_in - [IssueTemplateDraftFrameInputType]Given value includes field
type_ne - IssueTemplateDraftFrameInputTypeField is not equal to given value
type_nin - [IssueTemplateDraftFrameInputType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "container_contains": "xyz789",
  "container_ends_with": "xyz789",
  "container_eq": "xyz789",
  "container_exists": true,
  "container_in": ["xyz789"],
  "container_ne": "abc123",
  "container_nin": ["abc123"],
  "container_not_contains": "abc123",
  "container_not_ends_with": "abc123",
  "container_not_starts_with": "abc123",
  "container_starts_with": "abc123",
  "date": IssueTemplateDraftFrameInputDateWhereInput,
  "datetime": IssueTemplateDraftFrameInputDatetimeWhereInput,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "element": IssueTemplateDraftFrameInputElementWhereInput,
  "file": IssueTemplateDraftFrameInputFileWhereInput,
  "instruction": IssueTemplateDraftFrameInputInstructionWhereInput,
  "isMutable_eq": true,
  "isMutable_ne": true,
  "labelValue": IssueTemplateDraftFrameInputLabelValueWhereInput,
  "log_every": IssueTemplateDraftFrameInputLogWhereInput,
  "log_exists": true,
  "log_none": IssueTemplateDraftFrameInputLogWhereInput,
  "log_some": IssueTemplateDraftFrameInputLogWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "note": IssueTemplateDraftFrameInputNoteWhereInput,
  "number": IssueTemplateDraftFrameInputNumberWhereInput,
  "order_eq": 987,
  "order_exists": true,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [987],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 123,
  "order_nin": [123],
  "required_eq": true,
  "required_ne": false,
  "signature": IssueTemplateDraftFrameInputSignatureWhereInput,
  "site": IssueTemplateDraftFrameInputSiteWhereInput,
  "string": IssueTemplateDraftFrameInputStringWhereInput,
  "table": IssueTemplateDraftFrameInputTableWhereInput,
  "tag_contains": "xyz789",
  "tag_ends_with": "xyz789",
  "tag_eq": "xyz789",
  "tag_exists": false,
  "tag_in": ["abc123"],
  "tag_ne": "abc123",
  "tag_nin": ["xyz789"],
  "tag_not_contains": "abc123",
  "tag_not_ends_with": "xyz789",
  "tag_not_starts_with": "xyz789",
  "tag_starts_with": "xyz789",
  "tags": IssueTemplateDraftFrameInputTagWhereInput,
  "time": IssueTemplateDraftFrameInputTimeWhereInput,
  "tool": IssueTemplateDraftFrameInputToolWhereInput,
  "tooltip_contains": "xyz789",
  "tooltip_ends_with": "xyz789",
  "tooltip_eq": "xyz789",
  "tooltip_exists": true,
  "tooltip_in": ["abc123"],
  "tooltip_ne": "abc123",
  "tooltip_nin": ["abc123"],
  "tooltip_not_contains": "abc123",
  "tooltip_not_ends_with": "xyz789",
  "tooltip_not_starts_with": "abc123",
  "tooltip_starts_with": "xyz789",
  "type_eq": "date",
  "type_exists": "date",
  "type_in": ["date"],
  "type_ne": "date",
  "type_nin": ["date"]
}

IssueTemplateDraftFramePreset

Description

Represents a IssueTemplateDraftFramePreset

Fields
Field NameDescription
_id - ID
inputs - [ID]
options - [IssueTemplateDraftFramePresetOption]
order - Int
Example
{
  "_id": "4",
  "inputs": ["4"],
  "options": [IssueTemplateDraftFramePresetOption],
  "order": 987
}

IssueTemplateDraftFramePresetCreateInput

Description

Represents a IssueTemplateDraftFramePresetCreateInput

Fields
Input FieldDescription
inputs - [ID]
options - [IssueTemplateDraftFramePresetOptionCreateInput]
order - Int
Example
{
  "inputs": [4],
  "options": [
    IssueTemplateDraftFramePresetOptionCreateInput
  ],
  "order": 123
}

IssueTemplateDraftFramePresetOption

Description

Represents a IssueTemplateDraftFramePresetOption

Fields
Field NameDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": ["4"],
  "order": 123,
  "response": "xyz789"
}

IssueTemplateDraftFramePresetOptionCreateInput

Description

Represents a IssueTemplateDraftFramePresetOptionCreateInput

Fields
Input FieldDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": [4],
  "order": 987,
  "response": "abc123"
}

IssueTemplateDraftFramePresetOptionUpdateInput

Description

Represents a IssueTemplateDraftFramePresetOptionUpdateInput

Fields
Input FieldDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": [4],
  "order": 987,
  "response": "abc123"
}

IssueTemplateDraftFramePresetOptionWhereInput

Description

Represents a Where input for: IssueTemplateDraftFramePresetOption

Fields
Input FieldDescription
conditionals_all - [ID]Field includes all given values.
conditionals_eq - [ID]Given value is equal to field
conditionals_exists - Boolean
conditionals_in - [ID]Field includes one of given value.
conditionals_nin - [ID]Field does not include any of the given values.
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
response_contains - StringField contains given value, case-insensitive
response_ends_with - StringField ends with given value, case-insensitive
response_eq - StringField is equal to given value
response_exists - BooleanField is set and exists
response_in - [String]Given value includes field
response_ne - StringField is not equal to given value
response_nin - [String]Given value does not includes field
response_not_contains - StringField does not contains given value, case-insensitive
response_not_ends_with - StringField does not end with given value, case-insensitive
response_not_starts_with - StringField does not start with given value, case-insensitive
response_starts_with - StringField starts with given value, case-insensitive
Example
{
  "conditionals_all": [4],
  "conditionals_eq": [4],
  "conditionals_exists": false,
  "conditionals_in": [4],
  "conditionals_nin": ["4"],
  "order_eq": 123,
  "order_exists": true,
  "order_gt": 123,
  "order_gte": 987,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 123,
  "order_nin": [123],
  "response_contains": "abc123",
  "response_ends_with": "xyz789",
  "response_eq": "xyz789",
  "response_exists": true,
  "response_in": ["abc123"],
  "response_ne": "xyz789",
  "response_nin": ["abc123"],
  "response_not_contains": "abc123",
  "response_not_ends_with": "abc123",
  "response_not_starts_with": "xyz789",
  "response_starts_with": "abc123"
}

IssueTemplateDraftFramePresetUpdateInput

Description

Represents a IssueTemplateDraftFramePresetUpdateInput

Fields
Input FieldDescription
inputs - [ID]
options - [IssueTemplateDraftFramePresetOptionUpdateInput]
order - Int
Example
{
  "inputs": ["4"],
  "options": [
    IssueTemplateDraftFramePresetOptionUpdateInput
  ],
  "order": 123
}

IssueTemplateDraftFramePresetWhereInput

Description

Represents a Where input for: IssueTemplateDraftFramePreset

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
inputs_all - [ID]Field includes all given values.
inputs_eq - [ID]Given value is equal to field
inputs_exists - Boolean
inputs_in - [ID]Field includes one of given value.
inputs_nin - [ID]Field does not include any of the given values.
options_every - IssueTemplateDraftFramePresetOptionWhereInput
options_exists - Boolean
options_none - IssueTemplateDraftFramePresetOptionWhereInput
options_some - IssueTemplateDraftFramePresetOptionWhereInput
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "inputs_all": [4],
  "inputs_eq": ["4"],
  "inputs_exists": false,
  "inputs_in": ["4"],
  "inputs_nin": ["4"],
  "options_every": IssueTemplateDraftFramePresetOptionWhereInput,
  "options_exists": true,
  "options_none": IssueTemplateDraftFramePresetOptionWhereInput,
  "options_some": IssueTemplateDraftFramePresetOptionWhereInput,
  "order_eq": 123,
  "order_exists": true,
  "order_gt": 123,
  "order_gte": 123,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [123]
}

IssueTemplateDraftFrameScanMapping

Description

Represents a IssueTemplateDraftFrameScanMapping

Fields
Field NameDescription
_id - ID
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - Label!Label id
labelId - ID!Label id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean!
Example
{
  "_id": "4",
  "delimiter": "xyz789",
  "firstDelimiter": 123,
  "isMultiEntry": false,
  "label": Label,
  "labelId": "4",
  "lastDelimiter": 987,
  "numberCharacters": [123],
  "selectedOption": "xyz789",
  "thisForward": true
}

IssueTemplateDraftFrameScanMappingCreateInput

Description

Represents a IssueTemplateDraftFrameScanMappingCreateInput

Fields
Input FieldDescription
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - ID!Label id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean!
Example
{
  "delimiter": "abc123",
  "firstDelimiter": 987,
  "isMultiEntry": true,
  "label": 4,
  "lastDelimiter": 987,
  "numberCharacters": [987],
  "selectedOption": "abc123",
  "thisForward": true
}

IssueTemplateDraftFrameScanMappingUpdateInput

Description

Represents a IssueTemplateDraftFrameScanMappingUpdateInput

Fields
Input FieldDescription
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - IDLabel id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean
Example
{
  "delimiter": "abc123",
  "firstDelimiter": 987,
  "isMultiEntry": false,
  "label": 4,
  "lastDelimiter": 987,
  "numberCharacters": [123],
  "selectedOption": "xyz789",
  "thisForward": true
}

IssueTemplateDraftFrameScanMappingWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameScanMapping

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
delimiter_contains - StringField contains given value, case-insensitive
delimiter_ends_with - StringField ends with given value, case-insensitive
delimiter_eq - StringField is equal to given value
delimiter_exists - BooleanField is set and exists
delimiter_in - [String]Given value includes field
delimiter_ne - StringField is not equal to given value
delimiter_nin - [String]Given value does not includes field
delimiter_not_contains - StringField does not contains given value, case-insensitive
delimiter_not_ends_with - StringField does not end with given value, case-insensitive
delimiter_not_starts_with - StringField does not start with given value, case-insensitive
delimiter_starts_with - StringField starts with given value, case-insensitive
firstDelimiter_eq - IntField is equal to given value
firstDelimiter_exists - BooleanField is set and exists
firstDelimiter_gt - IntField is greater than given value
firstDelimiter_gte - IntField is greater or equal than given value
firstDelimiter_in - [Int]Given value includes field
firstDelimiter_lt - IntField is lower than given value
firstDelimiter_lte - IntField is lower or equal than given value
firstDelimiter_ne - IntField is not equal to given value
firstDelimiter_nin - [Int]Given value does not includes field
isMultiEntry_eq - BooleanField is equal to given value
isMultiEntry_ne - BooleanField is not equal to given value
label_all - [ID]Given value includes all in array
label_eq - IDField is equal to given value
label_exists - BooleanField is set and exists
label_in - [ID]Given value includes field
label_ne - IDField is not equal to given value
label_nin - [ID]Given value does not include field
lastDelimiter_eq - IntField is equal to given value
lastDelimiter_exists - BooleanField is set and exists
lastDelimiter_gt - IntField is greater than given value
lastDelimiter_gte - IntField is greater or equal than given value
lastDelimiter_in - [Int]Given value includes field
lastDelimiter_lt - IntField is lower than given value
lastDelimiter_lte - IntField is lower or equal than given value
lastDelimiter_ne - IntField is not equal to given value
lastDelimiter_nin - [Int]Given value does not includes field
numberCharacters_all - [Int]Field includes all given values.
numberCharacters_eq - [Int]Given value is equal to field
numberCharacters_exists - Boolean
numberCharacters_in - [Int]Field includes one of given value.
numberCharacters_nin - [Int]Field does not include any of the given values.
selectedOption_contains - StringField contains given value, case-insensitive
selectedOption_ends_with - StringField ends with given value, case-insensitive
selectedOption_eq - StringField is equal to given value
selectedOption_exists - BooleanField is set and exists
selectedOption_in - [String]Given value includes field
selectedOption_ne - StringField is not equal to given value
selectedOption_nin - [String]Given value does not includes field
selectedOption_not_contains - StringField does not contains given value, case-insensitive
selectedOption_not_ends_with - StringField does not end with given value, case-insensitive
selectedOption_not_starts_with - StringField does not start with given value, case-insensitive
selectedOption_starts_with - StringField starts with given value, case-insensitive
thisForward_eq - BooleanField is equal to given value
thisForward_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "delimiter_contains": "xyz789",
  "delimiter_ends_with": "abc123",
  "delimiter_eq": "xyz789",
  "delimiter_exists": true,
  "delimiter_in": ["abc123"],
  "delimiter_ne": "xyz789",
  "delimiter_nin": ["abc123"],
  "delimiter_not_contains": "abc123",
  "delimiter_not_ends_with": "xyz789",
  "delimiter_not_starts_with": "abc123",
  "delimiter_starts_with": "xyz789",
  "firstDelimiter_eq": 123,
  "firstDelimiter_exists": true,
  "firstDelimiter_gt": 987,
  "firstDelimiter_gte": 123,
  "firstDelimiter_in": [987],
  "firstDelimiter_lt": 123,
  "firstDelimiter_lte": 123,
  "firstDelimiter_ne": 123,
  "firstDelimiter_nin": [123],
  "isMultiEntry_eq": false,
  "isMultiEntry_ne": true,
  "label_all": [4],
  "label_eq": 4,
  "label_exists": false,
  "label_in": [4],
  "label_ne": "4",
  "label_nin": [4],
  "lastDelimiter_eq": 123,
  "lastDelimiter_exists": true,
  "lastDelimiter_gt": 123,
  "lastDelimiter_gte": 123,
  "lastDelimiter_in": [987],
  "lastDelimiter_lt": 123,
  "lastDelimiter_lte": 987,
  "lastDelimiter_ne": 987,
  "lastDelimiter_nin": [123],
  "numberCharacters_all": [123],
  "numberCharacters_eq": [123],
  "numberCharacters_exists": false,
  "numberCharacters_in": [123],
  "numberCharacters_nin": [123],
  "selectedOption_contains": "abc123",
  "selectedOption_ends_with": "abc123",
  "selectedOption_eq": "abc123",
  "selectedOption_exists": true,
  "selectedOption_in": ["abc123"],
  "selectedOption_ne": "abc123",
  "selectedOption_nin": ["xyz789"],
  "selectedOption_not_contains": "abc123",
  "selectedOption_not_ends_with": "abc123",
  "selectedOption_not_starts_with": "xyz789",
  "selectedOption_starts_with": "abc123",
  "thisForward_eq": true,
  "thisForward_ne": true
}

IssueTemplateDraftFrameSkill

Description

Represents a IssueTemplateDraftFrameSkill

Fields
Field NameDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftFrameSkillCreateInput

Description

Represents a IssueTemplateDraftFrameSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftFrameSkillUpdateInput

Description

Represents a IssueTemplateDraftFrameSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftFrameSkillWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrameSkill

Fields
Input FieldDescription
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["abc123"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["abc123"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": ["4"],
  "id_eq": 4,
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "xyz789",
  "level_eq": "abc123",
  "level_exists": false,
  "level_in": ["xyz789"],
  "level_ne": "abc123",
  "level_nin": ["abc123"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "abc123",
  "level_starts_with": "xyz789",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "abc123",
  "skillname_eq": "abc123",
  "skillname_exists": true,
  "skillname_in": ["xyz789"],
  "skillname_ne": "abc123",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "xyz789"
}

IssueTemplateDraftFrameUpdateInput

Description

Represents a IssueTemplateDraftFrameUpdateInput

Fields
Input FieldDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
conflictHandler - IssueTemplateDraftFrameConflictHandler
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftFrameEstimatedDurationDividedUpdateInput
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateDraftFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [InputUpdateInput]
materialLegendAndComments - Boolean
presets - [IssueTemplateDraftFramePresetUpdateInput]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateDraftFrameScanMappingUpdateInput]
scoreInputs - BooleanScore inputs
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateDraftFrameSkillUpdateInput]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": false,
  "conflictHandler": "keepBoth",
  "customArConfiguration": false,
  "divideTime": true,
  "estimatedDuration": 123,
  "estimatedDurationDivided": IssueTemplateDraftFrameEstimatedDurationDividedUpdateInput,
  "estimatedDurationFromTasks": true,
  "estimatedDurationUnit": "hours",
  "idOnTasks": false,
  "inputs": [InputUpdateInput],
  "materialLegendAndComments": false,
  "presets": [IssueTemplateDraftFramePresetUpdateInput],
  "remarksOnTasks": true,
  "scanMapping": [
    IssueTemplateDraftFrameScanMappingUpdateInput
  ],
  "scoreInputs": true,
  "sequential": true,
  "skills": [IssueTemplateDraftFrameSkillUpdateInput],
  "toolLegendAndComments": true
}

IssueTemplateDraftFrameWhereInput

Description

Represents a Where input for: IssueTemplateDraftFrame

Fields
Input FieldDescription
associateSkillsToWorkOrder_eq - BooleanField is equal to given value
associateSkillsToWorkOrder_ne - BooleanField is not equal to given value
conflictHandler_eq - IssueTemplateDraftFrameConflictHandlerField is equal to given value
conflictHandler_exists - IssueTemplateDraftFrameConflictHandlerField is set and exists
conflictHandler_in - [IssueTemplateDraftFrameConflictHandler]Given value includes field
conflictHandler_ne - IssueTemplateDraftFrameConflictHandlerField is not equal to given value
conflictHandler_nin - [IssueTemplateDraftFrameConflictHandler]Given value does not includes field
customArConfiguration_eq - BooleanField is equal to given value
customArConfiguration_ne - BooleanField is not equal to given value
divideTime_eq - BooleanField is equal to given value
divideTime_ne - BooleanField is not equal to given value
estimatedDurationDivided - IssueTemplateDraftFrameEstimatedDurationDividedWhereInput
estimatedDurationFromTasks_eq - BooleanField is equal to given value
estimatedDurationFromTasks_ne - BooleanField is not equal to given value
estimatedDurationUnit_eq - IssueTemplateDraftFrameEstimatedDurationUnitField is equal to given value
estimatedDurationUnit_exists - IssueTemplateDraftFrameEstimatedDurationUnitField is set and exists
estimatedDurationUnit_in - [IssueTemplateDraftFrameEstimatedDurationUnit]Given value includes field
estimatedDurationUnit_ne - IssueTemplateDraftFrameEstimatedDurationUnitField is not equal to given value
estimatedDurationUnit_nin - [IssueTemplateDraftFrameEstimatedDurationUnit]Given value does not includes field
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
idOnTasks_eq - BooleanField is equal to given value
idOnTasks_ne - BooleanField is not equal to given value
inputs_every - IssueTemplateDraftFrameInputWhereInput
inputs_exists - Boolean
inputs_none - IssueTemplateDraftFrameInputWhereInput
inputs_some - IssueTemplateDraftFrameInputWhereInput
materialLegendAndComments_eq - BooleanField is equal to given value
materialLegendAndComments_ne - BooleanField is not equal to given value
presets_every - IssueTemplateDraftFramePresetWhereInput
presets_exists - Boolean
presets_none - IssueTemplateDraftFramePresetWhereInput
presets_some - IssueTemplateDraftFramePresetWhereInput
remarksOnTasks_eq - BooleanField is equal to given value
remarksOnTasks_ne - BooleanField is not equal to given value
scanMapping_every - IssueTemplateDraftFrameScanMappingWhereInput
scanMapping_exists - Boolean
scanMapping_none - IssueTemplateDraftFrameScanMappingWhereInput
scanMapping_some - IssueTemplateDraftFrameScanMappingWhereInput
scoreInputs_eq - BooleanField is equal to given value
scoreInputs_ne - BooleanField is not equal to given value
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
skills_every - IssueTemplateDraftFrameSkillWhereInput
skills_exists - Boolean
skills_none - IssueTemplateDraftFrameSkillWhereInput
skills_some - IssueTemplateDraftFrameSkillWhereInput
toolLegendAndComments_eq - BooleanField is equal to given value
toolLegendAndComments_ne - BooleanField is not equal to given value
Example
{
  "associateSkillsToWorkOrder_eq": false,
  "associateSkillsToWorkOrder_ne": false,
  "conflictHandler_eq": "keepBoth",
  "conflictHandler_exists": "keepBoth",
  "conflictHandler_in": ["keepBoth"],
  "conflictHandler_ne": "keepBoth",
  "conflictHandler_nin": ["keepBoth"],
  "customArConfiguration_eq": true,
  "customArConfiguration_ne": false,
  "divideTime_eq": false,
  "divideTime_ne": false,
  "estimatedDurationDivided": IssueTemplateDraftFrameEstimatedDurationDividedWhereInput,
  "estimatedDurationFromTasks_eq": false,
  "estimatedDurationFromTasks_ne": true,
  "estimatedDurationUnit_eq": "hours",
  "estimatedDurationUnit_exists": "hours",
  "estimatedDurationUnit_in": ["hours"],
  "estimatedDurationUnit_ne": "hours",
  "estimatedDurationUnit_nin": ["hours"],
  "estimatedDuration_eq": 987,
  "estimatedDuration_exists": false,
  "estimatedDuration_gt": 987,
  "estimatedDuration_gte": 987,
  "estimatedDuration_in": [123],
  "estimatedDuration_lt": 123,
  "estimatedDuration_lte": 987,
  "estimatedDuration_ne": 987,
  "estimatedDuration_nin": [123],
  "idOnTasks_eq": false,
  "idOnTasks_ne": false,
  "inputs_every": IssueTemplateDraftFrameInputWhereInput,
  "inputs_exists": false,
  "inputs_none": IssueTemplateDraftFrameInputWhereInput,
  "inputs_some": IssueTemplateDraftFrameInputWhereInput,
  "materialLegendAndComments_eq": true,
  "materialLegendAndComments_ne": true,
  "presets_every": IssueTemplateDraftFramePresetWhereInput,
  "presets_exists": false,
  "presets_none": IssueTemplateDraftFramePresetWhereInput,
  "presets_some": IssueTemplateDraftFramePresetWhereInput,
  "remarksOnTasks_eq": true,
  "remarksOnTasks_ne": true,
  "scanMapping_every": IssueTemplateDraftFrameScanMappingWhereInput,
  "scanMapping_exists": false,
  "scanMapping_none": IssueTemplateDraftFrameScanMappingWhereInput,
  "scanMapping_some": IssueTemplateDraftFrameScanMappingWhereInput,
  "scoreInputs_eq": false,
  "scoreInputs_ne": false,
  "sequential_eq": false,
  "sequential_ne": true,
  "skills_every": IssueTemplateDraftFrameSkillWhereInput,
  "skills_exists": false,
  "skills_none": IssueTemplateDraftFrameSkillWhereInput,
  "skills_some": IssueTemplateDraftFrameSkillWhereInput,
  "toolLegendAndComments_eq": true,
  "toolLegendAndComments_ne": true
}

IssueTemplateDraftOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

frame_conflictHandler_ASC

frame_conflictHandler_DESC

frame_estimatedDurationUnit_ASC

frame_estimatedDurationUnit_DESC

frame_estimatedDuration_ASC

frame_estimatedDuration_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

variant_description_ASC

variant_description_DESC

variant_name_ASC

variant_name_DESC

variant_position_ASC

variant_position_DESC

Example
"_id_ASC"

IssueTemplateDraftTaskTemplateGroup

Description

Represents a IssueTemplateDraftTaskTemplateGroup

Fields
Field NameDescription
_id - ID
inputsWithLinkOptions - [IssueTemplateDraftTaskTemplateGroupInputsWithLinkOption]
markersToShow - IssueTemplateDraftTaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
taskTemplates - [IssueTemplateDraftTaskTemplateGroupTaskTemplate]
Example
{
  "_id": "4",
  "inputsWithLinkOptions": [
    IssueTemplateDraftTaskTemplateGroupInputsWithLinkOption
  ],
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "sequential": true,
  "taskTemplates": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplate
  ]
}

IssueTemplateDraftTaskTemplateGroupCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupCreateInput

Fields
Input FieldDescription
inputsWithLinkOptions - [IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionCreateInput]
markersToShow - IssueTemplateDraftTaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
taskTemplates - [IssueTemplateDraftTaskTemplateGroupTaskTemplateCreateInput]
Example
{
  "inputsWithLinkOptions": [
    IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionCreateInput
  ],
  "markersToShow": "ALL",
  "name": "xyz789",
  "order": 987,
  "sequential": false,
  "taskTemplates": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateCreateInput
  ]
}

IssueTemplateDraftTaskTemplateGroupInputsWithLinkOption

Description

Represents a IssueTemplateDraftTaskTemplateGroupInputsWithLinkOption

Fields
Field NameDescription
inputId - ID
name - String
taskGroupId - ID
taskId - ID
type - String
Example
{
  "inputId": "4",
  "name": "xyz789",
  "taskGroupId": "4",
  "taskId": 4,
  "type": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionCreateInput

Fields
Input FieldDescription
inputId - ID
name - String
taskGroupId - ID
taskId - ID
type - String
Example
{
  "inputId": 4,
  "name": "xyz789",
  "taskGroupId": "4",
  "taskId": "4",
  "type": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionUpdateInput

Fields
Input FieldDescription
inputId - ID
name - String
taskGroupId - ID
taskId - ID
type - String
Example
{
  "inputId": 4,
  "name": "xyz789",
  "taskGroupId": 4,
  "taskId": "4",
  "type": "abc123"
}

IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupInputsWithLinkOption

Fields
Input FieldDescription
inputId_all - [ID]Given value includes all in array
inputId_eq - IDField is equal to given value
inputId_exists - BooleanField is set and exists
inputId_in - [ID]Given value includes field
inputId_ne - IDField is not equal to given value
inputId_nin - [ID]Given value does not include field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
taskGroupId_all - [ID]Given value includes all in array
taskGroupId_eq - IDField is equal to given value
taskGroupId_exists - BooleanField is set and exists
taskGroupId_in - [ID]Given value includes field
taskGroupId_ne - IDField is not equal to given value
taskGroupId_nin - [ID]Given value does not include field
taskId_all - [ID]Given value includes all in array
taskId_eq - IDField is equal to given value
taskId_exists - BooleanField is set and exists
taskId_in - [ID]Given value includes field
taskId_ne - IDField is not equal to given value
taskId_nin - [ID]Given value does not include field
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "inputId_all": [4],
  "inputId_eq": "4",
  "inputId_exists": true,
  "inputId_in": ["4"],
  "inputId_ne": 4,
  "inputId_nin": ["4"],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "taskGroupId_all": [4],
  "taskGroupId_eq": 4,
  "taskGroupId_exists": true,
  "taskGroupId_in": ["4"],
  "taskGroupId_ne": 4,
  "taskGroupId_nin": ["4"],
  "taskId_all": ["4"],
  "taskId_eq": "4",
  "taskId_exists": true,
  "taskId_in": [4],
  "taskId_ne": 4,
  "taskId_nin": [4],
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": false,
  "type_in": ["abc123"],
  "type_ne": "xyz789",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "abc123",
  "type_starts_with": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupMarkersToShow

Values
Enum ValueDescription

ALL

CURRENT

NEXT

Example
"ALL"

IssueTemplateDraftTaskTemplateGroupTaskTemplate

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplate

Fields
Field NameDescription
_id - ID
advancedLabelSelection - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection
arConfiguration - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration
assignedMaterials - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial]
assignedSkills - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill]
assignedTools - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool]
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided
inputs - [Input]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [LabelValue]
labelValuesIds - [ID]
log - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLog]
manualId - String
name - String!TaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
remarks - [IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark]
show - Boolean
totalScore - IntTotal score on task
variant - IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant
Example
{
  "_id": 4,
  "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection,
  "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration,
  "assignedMaterials": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial
  ],
  "assignedSkills": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill
  ],
  "assignedTools": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool
  ],
  "description": "xyz789",
  "estimatedDuration": 987,
  "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided,
  "inputs": [Input],
  "isRepeatable": false,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "log": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateLog
  ],
  "manualId": "xyz789",
  "name": "xyz789",
  "onResponseId": 4,
  "order": 987,
  "parentsTree": [4],
  "remarks": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark
  ],
  "show": false,
  "totalScore": 987,
  "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection

Example
{
  "filter": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilter
  ],
  "name": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionCreateInput

Example
{
  "filter": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCreateInput
  ],
  "name": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilter

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilter

Fields
Field NameDescription
_id - ID
conditions - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": "4",
  "conditions": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCondition
  ],
  "includeAllLabels": true
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCondition

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": "4",
  "operator": "CONTAINS"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is equal to given value
operator_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is set and exists
operator_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperator]Given value includes field
operator_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is not equal to given value
operator_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_ne": 4,
  "labelValue_nin": [4],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterCreateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionCreateInput
  ],
  "includeAllLabels": true
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterUpdateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput
  ],
  "includeAllLabels": true
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
conditions_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "conditions_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_exists": true,
  "conditions_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "includeAllLabels_eq": true,
  "includeAllLabels_ne": true
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionUpdateInput

Example
{
  "filter": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterUpdateInput
  ],
  "name": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelection

Fields
Input FieldDescription
filter_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput
filter_exists - Boolean
filter_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput
filter_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "filter_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "filter_exists": false,
  "filter_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "filter_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration

Fields
Field NameDescription
markersColor - StringTask markers color
markersOnFinishingTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "xyz789",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationCreateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTask

Values
Enum ValueDescription

CLOSE

LEAVE

Example
"CLOSE"

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersType

Values
Enum ValueDescription

ARROW

CIRCLE

SQUARE

Example
"ARROW"

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTask

Values
Enum ValueDescription

FIVESECONDS

NOTIMER

THREESECONDS

Example
"FIVESECONDS"

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInput

Values
Enum ValueDescription

BASIC

COMPLEX

Example
"BASIC"

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "xyz789",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfiguration

Fields
Input FieldDescription
markersColor_contains - StringField contains given value, case-insensitive
markersColor_ends_with - StringField ends with given value, case-insensitive
markersColor_eq - StringField is equal to given value
markersColor_exists - BooleanField is set and exists
markersColor_in - [String]Given value includes field
markersColor_ne - StringField is not equal to given value
markersColor_nin - [String]Given value does not includes field
markersColor_not_contains - StringField does not contains given value, case-insensitive
markersColor_not_ends_with - StringField does not end with given value, case-insensitive
markersColor_not_starts_with - StringField does not start with given value, case-insensitive
markersColor_starts_with - StringField starts with given value, case-insensitive
markersOnFinishingTask_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskField is equal to given value
markersOnFinishingTask_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskField is set and exists
markersOnFinishingTask_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTask]Given value includes field
markersOnFinishingTask_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTaskField is not equal to given value
markersOnFinishingTask_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersOnFinishingTask]Given value does not includes field
markersSize_eq - IntField is equal to given value
markersSize_exists - BooleanField is set and exists
markersSize_gt - IntField is greater than given value
markersSize_gte - IntField is greater or equal than given value
markersSize_in - [Int]Given value includes field
markersSize_lt - IntField is lower than given value
markersSize_lte - IntField is lower or equal than given value
markersSize_ne - IntField is not equal to given value
markersSize_nin - [Int]Given value does not includes field
markersType_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeField is equal to given value
markersType_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeField is set and exists
markersType_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersType]Given value includes field
markersType_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersTypeField is not equal to given value
markersType_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationMarkersType]Given value does not includes field
timerFinishTask_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskField is equal to given value
timerFinishTask_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskField is set and exists
timerFinishTask_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTask]Given value includes field
timerFinishTask_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTaskField is not equal to given value
timerFinishTask_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTimerFinishTask]Given value does not includes field
typeOfInput_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputField is equal to given value
typeOfInput_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputField is set and exists
typeOfInput_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInput]Given value includes field
typeOfInput_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInputField is not equal to given value
typeOfInput_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationTypeOfInput]Given value does not includes field
Example
{
  "markersColor_contains": "abc123",
  "markersColor_ends_with": "xyz789",
  "markersColor_eq": "abc123",
  "markersColor_exists": true,
  "markersColor_in": ["xyz789"],
  "markersColor_ne": "abc123",
  "markersColor_nin": ["xyz789"],
  "markersColor_not_contains": "xyz789",
  "markersColor_not_ends_with": "xyz789",
  "markersColor_not_starts_with": "abc123",
  "markersColor_starts_with": "abc123",
  "markersOnFinishingTask_eq": "CLOSE",
  "markersOnFinishingTask_exists": "CLOSE",
  "markersOnFinishingTask_in": ["CLOSE"],
  "markersOnFinishingTask_ne": "CLOSE",
  "markersOnFinishingTask_nin": ["CLOSE"],
  "markersSize_eq": 987,
  "markersSize_exists": true,
  "markersSize_gt": 987,
  "markersSize_gte": 987,
  "markersSize_in": [123],
  "markersSize_lt": 123,
  "markersSize_lte": 123,
  "markersSize_ne": 123,
  "markersSize_nin": [987],
  "markersType_eq": "ARROW",
  "markersType_exists": "ARROW",
  "markersType_in": ["ARROW"],
  "markersType_ne": "ARROW",
  "markersType_nin": ["ARROW"],
  "timerFinishTask_eq": "FIVESECONDS",
  "timerFinishTask_exists": "FIVESECONDS",
  "timerFinishTask_in": ["FIVESECONDS"],
  "timerFinishTask_ne": "FIVESECONDS",
  "timerFinishTask_nin": ["FIVESECONDS"],
  "typeOfInput_eq": "BASIC",
  "typeOfInput_exists": "BASIC",
  "typeOfInput_in": ["BASIC"],
  "typeOfInput_ne": "BASIC",
  "typeOfInput_nin": ["BASIC"]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial

Fields
Field NameDescription
comments - StringComments
legend - StringLegend
material - Material!
materialId - ID!
quantity - Float!Quantity
Example
{
  "comments": "abc123",
  "legend": "abc123",
  "material": Material,
  "materialId": "4",
  "quantity": 123.45
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialCreateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID!
quantity - Float!Quantity
Example
{
  "comments": "xyz789",
  "legend": "xyz789",
  "material": "4",
  "quantity": 123.45
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialUpdateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID
quantity - FloatQuantity
Example
{
  "comments": "xyz789",
  "legend": "xyz789",
  "material": 4,
  "quantity": 987.65
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterial

Fields
Input FieldDescription
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
material_all - [ID]Given value includes all in array
material_eq - IDField is equal to given value
material_exists - BooleanField is set and exists
material_in - [ID]Given value includes field
material_ne - IDField is not equal to given value
material_nin - [ID]Given value does not include field
quantity_eq - FloatField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - FloatField is greater than given value
quantity_gte - FloatField is greater or equal than given value
quantity_in - [Float]Given value includes field
quantity_lt - FloatField is lower than given value
quantity_lte - FloatField is lower or equal than given value
quantity_ne - FloatField is not equal to given value
quantity_nin - [Float]Given value does not includes field
Example
{
  "comments_contains": "abc123",
  "comments_ends_with": "abc123",
  "comments_eq": "abc123",
  "comments_exists": true,
  "comments_in": ["xyz789"],
  "comments_ne": "abc123",
  "comments_nin": ["xyz789"],
  "comments_not_contains": "xyz789",
  "comments_not_ends_with": "xyz789",
  "comments_not_starts_with": "abc123",
  "comments_starts_with": "xyz789",
  "legend_contains": "abc123",
  "legend_ends_with": "abc123",
  "legend_eq": "xyz789",
  "legend_exists": false,
  "legend_in": ["xyz789"],
  "legend_ne": "xyz789",
  "legend_nin": ["xyz789"],
  "legend_not_contains": "abc123",
  "legend_not_ends_with": "xyz789",
  "legend_not_starts_with": "xyz789",
  "legend_starts_with": "xyz789",
  "material_all": ["4"],
  "material_eq": 4,
  "material_exists": true,
  "material_in": [4],
  "material_ne": "4",
  "material_nin": [4],
  "quantity_eq": 987.65,
  "quantity_exists": false,
  "quantity_gt": 987.65,
  "quantity_gte": 123.45,
  "quantity_in": [987.65],
  "quantity_lt": 987.65,
  "quantity_lte": 123.45,
  "quantity_ne": 987.65,
  "quantity_nin": [987.65]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": "4",
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "xyz789",
  "skillname": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "abc123",
  "choosenSkillLevelName_ends_with": "abc123",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["abc123"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "abc123",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": [4],
  "id_eq": "4",
  "id_exists": true,
  "id_in": [4],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "abc123",
  "level_eq": "xyz789",
  "level_exists": true,
  "level_in": ["xyz789"],
  "level_ne": "xyz789",
  "level_nin": ["abc123"],
  "level_not_contains": "xyz789",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "abc123",
  "skillname_ends_with": "xyz789",
  "skillname_eq": "xyz789",
  "skillname_exists": false,
  "skillname_in": ["xyz789"],
  "skillname_ne": "abc123",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool

Fields
Field NameDescription
associatedWith - Tool
associatedWithId - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - Tool!Tool
toolId - ID!Tool
Example
{
  "associatedWith": Tool,
  "associatedWithId": 4,
  "comments": "abc123",
  "legend": "xyz789",
  "quantity": 123,
  "reserveAtStart": true,
  "tool": Tool,
  "toolId": "4"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolCreateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - ID!Tool
Example
{
  "associatedWith": "4",
  "comments": "abc123",
  "legend": "xyz789",
  "quantity": 987,
  "reserveAtStart": false,
  "tool": "4"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolUpdateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - IntQuantity
reserveAtStart - BooleanReserve tool at start
tool - IDTool
Example
{
  "associatedWith": "4",
  "comments": "abc123",
  "legend": "abc123",
  "quantity": 123,
  "reserveAtStart": true,
  "tool": "4"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedTool

Fields
Input FieldDescription
associatedWith_all - [ID]Given value includes all in array
associatedWith_eq - IDField is equal to given value
associatedWith_exists - BooleanField is set and exists
associatedWith_in - [ID]Given value includes field
associatedWith_ne - IDField is not equal to given value
associatedWith_nin - [ID]Given value does not include field
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
quantity_eq - IntField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - IntField is greater than given value
quantity_gte - IntField is greater or equal than given value
quantity_in - [Int]Given value includes field
quantity_lt - IntField is lower than given value
quantity_lte - IntField is lower or equal than given value
quantity_ne - IntField is not equal to given value
quantity_nin - [Int]Given value does not includes field
reserveAtStart_eq - BooleanField is equal to given value
reserveAtStart_ne - BooleanField is not equal to given value
tool_all - [ID]Given value includes all in array
tool_eq - IDField is equal to given value
tool_exists - BooleanField is set and exists
tool_in - [ID]Given value includes field
tool_ne - IDField is not equal to given value
tool_nin - [ID]Given value does not include field
Example
{
  "associatedWith_all": ["4"],
  "associatedWith_eq": 4,
  "associatedWith_exists": false,
  "associatedWith_in": ["4"],
  "associatedWith_ne": "4",
  "associatedWith_nin": ["4"],
  "comments_contains": "abc123",
  "comments_ends_with": "xyz789",
  "comments_eq": "xyz789",
  "comments_exists": false,
  "comments_in": ["abc123"],
  "comments_ne": "xyz789",
  "comments_nin": ["abc123"],
  "comments_not_contains": "xyz789",
  "comments_not_ends_with": "xyz789",
  "comments_not_starts_with": "abc123",
  "comments_starts_with": "xyz789",
  "legend_contains": "abc123",
  "legend_ends_with": "xyz789",
  "legend_eq": "abc123",
  "legend_exists": true,
  "legend_in": ["abc123"],
  "legend_ne": "xyz789",
  "legend_nin": ["abc123"],
  "legend_not_contains": "abc123",
  "legend_not_ends_with": "xyz789",
  "legend_not_starts_with": "xyz789",
  "legend_starts_with": "abc123",
  "quantity_eq": 987,
  "quantity_exists": true,
  "quantity_gt": 987,
  "quantity_gte": 987,
  "quantity_in": [987],
  "quantity_lt": 987,
  "quantity_lte": 987,
  "quantity_ne": 987,
  "quantity_nin": [987],
  "reserveAtStart_eq": true,
  "reserveAtStart_ne": true,
  "tool_all": ["4"],
  "tool_eq": 4,
  "tool_exists": true,
  "tool_in": ["4"],
  "tool_ne": "4",
  "tool_nin": ["4"]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateCreateInput

Fields
Input FieldDescription
advancedLabelSelection - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionCreateInput
arConfiguration - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationCreateInput
assignedMaterials - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialCreateInput]
assignedSkills - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillCreateInput]
assignedTools - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolCreateInput]
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedCreateInput
inputs - [InputCreateInput]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
log - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogCreateInput]
manualId - String
name - String!TaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
remarks - [IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkCreateInput]
totalScore - IntTotal score on task
variant - IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantCreateInput
Example
{
  "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionCreateInput,
  "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationCreateInput,
  "assignedMaterials": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialCreateInput
  ],
  "assignedSkills": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillCreateInput
  ],
  "assignedTools": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolCreateInput
  ],
  "description": "xyz789",
  "estimatedDuration": 987,
  "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedCreateInput,
  "inputs": [InputCreateInput],
  "isRepeatable": false,
  "labelValues": ["4"],
  "log": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateLogCreateInput
  ],
  "manualId": "abc123",
  "name": "abc123",
  "onResponseId": "4",
  "order": 987,
  "parentsTree": ["4"],
  "remarks": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkCreateInput
  ],
  "totalScore": 123,
  "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantCreateInput
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided

Fields
Field NameDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 987, "valueAdded": 123, "waste": 123}

IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedCreateInput

Fields
Input FieldDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 123, "valueAdded": 987, "waste": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedUpdateInput

Fields
Input FieldDescription
nonValueAdded - Int
valueAdded - Int
waste - Int
Example
{"nonValueAdded": 987, "valueAdded": 123, "waste": 123}

IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDivided

Fields
Input FieldDescription
nonValueAdded_eq - IntField is equal to given value
nonValueAdded_exists - BooleanField is set and exists
nonValueAdded_gt - IntField is greater than given value
nonValueAdded_gte - IntField is greater or equal than given value
nonValueAdded_in - [Int]Given value includes field
nonValueAdded_lt - IntField is lower than given value
nonValueAdded_lte - IntField is lower or equal than given value
nonValueAdded_ne - IntField is not equal to given value
nonValueAdded_nin - [Int]Given value does not includes field
valueAdded_eq - IntField is equal to given value
valueAdded_exists - BooleanField is set and exists
valueAdded_gt - IntField is greater than given value
valueAdded_gte - IntField is greater or equal than given value
valueAdded_in - [Int]Given value includes field
valueAdded_lt - IntField is lower than given value
valueAdded_lte - IntField is lower or equal than given value
valueAdded_ne - IntField is not equal to given value
valueAdded_nin - [Int]Given value does not includes field
waste_eq - IntField is equal to given value
waste_exists - BooleanField is set and exists
waste_gt - IntField is greater than given value
waste_gte - IntField is greater or equal than given value
waste_in - [Int]Given value includes field
waste_lt - IntField is lower than given value
waste_lte - IntField is lower or equal than given value
waste_ne - IntField is not equal to given value
waste_nin - [Int]Given value does not includes field
Example
{
  "nonValueAdded_eq": 987,
  "nonValueAdded_exists": true,
  "nonValueAdded_gt": 123,
  "nonValueAdded_gte": 123,
  "nonValueAdded_in": [987],
  "nonValueAdded_lt": 987,
  "nonValueAdded_lte": 123,
  "nonValueAdded_ne": 123,
  "nonValueAdded_nin": [987],
  "valueAdded_eq": 123,
  "valueAdded_exists": false,
  "valueAdded_gt": 123,
  "valueAdded_gte": 987,
  "valueAdded_in": [987],
  "valueAdded_lt": 123,
  "valueAdded_lte": 987,
  "valueAdded_ne": 123,
  "valueAdded_nin": [123],
  "waste_eq": 987,
  "waste_exists": true,
  "waste_gt": 123,
  "waste_gte": 123,
  "waste_in": [123],
  "waste_lt": 987,
  "waste_lte": 987,
  "waste_ne": 123,
  "waste_nin": [123]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLog

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLog

Example
{
  "_id": "4",
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "abc123",
  "time": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTime,
  "to": "xyz789",
  "type": "group"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogAction

Values
Enum ValueDescription

add

delete

edit

move

Example
"add"

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponent

Values
Enum ValueDescription

input

task

Example
"input"

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogCreateInput

Example
{
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "xyz789",
  "time": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeCreateInput,
  "to": "xyz789",
  "type": "group"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTime

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTime

Example
{
  "from": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFrom,
  "to": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeTo
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeCreateInput

Example
{
  "from": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromCreateInput,
  "to": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToCreateInput
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFrom

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFrom

Fields
Field NameDescription
unit - String
value - Int
Example
{"unit": "xyz789", "value": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromCreateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "xyz789", "value": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromUpdateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFrom

Fields
Input FieldDescription
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
value_eq - IntField is equal to given value
value_exists - BooleanField is set and exists
value_gt - IntField is greater than given value
value_gte - IntField is greater or equal than given value
value_in - [Int]Given value includes field
value_lt - IntField is lower than given value
value_lte - IntField is lower or equal than given value
value_ne - IntField is not equal to given value
value_nin - [Int]Given value does not includes field
Example
{
  "unit_contains": "abc123",
  "unit_ends_with": "abc123",
  "unit_eq": "xyz789",
  "unit_exists": true,
  "unit_in": ["abc123"],
  "unit_ne": "xyz789",
  "unit_nin": ["xyz789"],
  "unit_not_contains": "abc123",
  "unit_not_ends_with": "xyz789",
  "unit_not_starts_with": "xyz789",
  "unit_starts_with": "abc123",
  "value_eq": 123,
  "value_exists": true,
  "value_gt": 987,
  "value_gte": 987,
  "value_in": [123],
  "value_lt": 123,
  "value_lte": 987,
  "value_ne": 123,
  "value_nin": [987]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeTo

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeTo

Fields
Field NameDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToCreateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 123}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToUpdateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "xyz789", "value": 987}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeTo

Fields
Input FieldDescription
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
value_eq - IntField is equal to given value
value_exists - BooleanField is set and exists
value_gt - IntField is greater than given value
value_gte - IntField is greater or equal than given value
value_in - [Int]Given value includes field
value_lt - IntField is lower than given value
value_lte - IntField is lower or equal than given value
value_ne - IntField is not equal to given value
value_nin - [Int]Given value does not includes field
Example
{
  "unit_contains": "abc123",
  "unit_ends_with": "abc123",
  "unit_eq": "abc123",
  "unit_exists": true,
  "unit_in": ["abc123"],
  "unit_ne": "abc123",
  "unit_nin": ["abc123"],
  "unit_not_contains": "abc123",
  "unit_not_ends_with": "abc123",
  "unit_not_starts_with": "abc123",
  "unit_starts_with": "xyz789",
  "value_eq": 987,
  "value_exists": true,
  "value_gt": 987,
  "value_gte": 987,
  "value_in": [987],
  "value_lt": 123,
  "value_lte": 123,
  "value_ne": 987,
  "value_nin": [123]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeUpdateInput

Example
{
  "from": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromUpdateInput,
  "to": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToUpdateInput
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTime

Example
{
  "from": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeFromWhereInput,
  "to": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeToWhereInput
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogType

Values
Enum ValueDescription

group

input

labels

position

time

Example
"group"

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput

Example
{
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "abc123",
  "time": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeUpdateInput,
  "to": "xyz789",
  "type": "group"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogActionField is equal to given value
action_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogActionField is set and exists
action_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogAction]Given value includes field
action_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogActionField is not equal to given value
action_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogAction]Given value does not includes field
component_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponentField is equal to given value
component_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponentField is set and exists
component_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponent]Given value includes field
component_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponentField is not equal to given value
component_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogComponent]Given value does not includes field
dateTime_eq - DateTimeField is equal to given value
dateTime_exists - BooleanField is set and exists
dateTime_gt - DateTimeField is greater than given value
dateTime_gte - DateTimeField is greater or equal than given value
dateTime_in - [DateTime]Given value includes field
dateTime_lt - DateTimeField is lower than given value
dateTime_lte - DateTimeField is lower or equal than given value
dateTime_ne - DateTimeField is not equal to given value
dateTime_nin - [DateTime]Given value does not includes field
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
time - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeWhereInput
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_eq - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTypeField is equal to given value
type_exists - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTypeField is set and exists
type_in - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogType]Given value includes field
type_ne - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTypeField is not equal to given value
type_nin - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "action_eq": "add",
  "action_exists": "add",
  "action_in": ["add"],
  "action_ne": "add",
  "action_nin": ["add"],
  "component_eq": "input",
  "component_exists": "input",
  "component_in": ["input"],
  "component_ne": "input",
  "component_nin": ["input"],
  "dateTime_eq": "2007-12-03T10:15:30Z",
  "dateTime_exists": true,
  "dateTime_gt": "2007-12-03T10:15:30Z",
  "dateTime_gte": "2007-12-03T10:15:30Z",
  "dateTime_in": ["2007-12-03T10:15:30Z"],
  "dateTime_lt": "2007-12-03T10:15:30Z",
  "dateTime_lte": "2007-12-03T10:15:30Z",
  "dateTime_ne": "2007-12-03T10:15:30Z",
  "dateTime_nin": ["2007-12-03T10:15:30Z"],
  "from_contains": "abc123",
  "from_ends_with": "abc123",
  "from_eq": "xyz789",
  "from_exists": true,
  "from_in": ["xyz789"],
  "from_ne": "abc123",
  "from_nin": ["abc123"],
  "from_not_contains": "abc123",
  "from_not_ends_with": "xyz789",
  "from_not_starts_with": "abc123",
  "from_starts_with": "xyz789",
  "time": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogTimeWhereInput,
  "to_contains": "abc123",
  "to_ends_with": "xyz789",
  "to_eq": "xyz789",
  "to_exists": true,
  "to_in": ["xyz789"],
  "to_ne": "xyz789",
  "to_nin": ["abc123"],
  "to_not_contains": "xyz789",
  "to_not_ends_with": "xyz789",
  "to_not_starts_with": "abc123",
  "to_starts_with": "xyz789",
  "type_eq": "group",
  "type_exists": "group",
  "type_in": ["group"],
  "type_ne": "group",
  "type_nin": ["group"]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark

Fields
Field NameDescription
createAt - DateTime!created at
createdBy - Account!created by
createdById - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "description": "xyz789",
  "title": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkCreateInput

Fields
Input FieldDescription
createAt - DateTime!created at
createdBy - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": 4,
  "description": "xyz789",
  "title": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkUpdateInput

Fields
Input FieldDescription
createAt - DateTimecreated at
createdBy - IDcreated by
description - StringDescription
title - Stringtitle
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": "4",
  "description": "xyz789",
  "title": "abc123"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateRemark

Fields
Input FieldDescription
createAt_eq - DateTimeField is equal to given value
createAt_exists - BooleanField is set and exists
createAt_gt - DateTimeField is greater than given value
createAt_gte - DateTimeField is greater or equal than given value
createAt_in - [DateTime]Given value includes field
createAt_lt - DateTimeField is lower than given value
createAt_lte - DateTimeField is lower or equal than given value
createAt_ne - DateTimeField is not equal to given value
createAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
Example
{
  "createAt_eq": "2007-12-03T10:15:30Z",
  "createAt_exists": true,
  "createAt_gt": "2007-12-03T10:15:30Z",
  "createAt_gte": "2007-12-03T10:15:30Z",
  "createAt_in": ["2007-12-03T10:15:30Z"],
  "createAt_lt": "2007-12-03T10:15:30Z",
  "createAt_lte": "2007-12-03T10:15:30Z",
  "createAt_ne": "2007-12-03T10:15:30Z",
  "createAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "title_contains": "abc123",
  "title_ends_with": "abc123",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["xyz789"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "xyz789"
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput

Fields
Input FieldDescription
_id - ID
advancedLabelSelection - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionUpdateInput
arConfiguration - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput
assignedMaterials - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialUpdateInput]
assignedSkills - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillUpdateInput]
assignedTools - [IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolUpdateInput]
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedUpdateInput
inputs - [InputUpdateInput]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
log - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput]
manualId - String
name - StringTaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
remarks - [IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkUpdateInput]
totalScore - IntTotal score on task
variant - IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantUpdateInput
Example
{
  "_id": "4",
  "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionUpdateInput,
  "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput,
  "assignedMaterials": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialUpdateInput
  ],
  "assignedSkills": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillUpdateInput
  ],
  "assignedTools": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolUpdateInput
  ],
  "description": "xyz789",
  "estimatedDuration": 123,
  "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedUpdateInput,
  "inputs": [InputUpdateInput],
  "isRepeatable": false,
  "labelValues": ["4"],
  "log": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput
  ],
  "manualId": "abc123",
  "name": "xyz789",
  "onResponseId": "4",
  "order": 987,
  "parentsTree": [4],
  "remarks": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkUpdateInput
  ],
  "totalScore": 123,
  "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantUpdateInput
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant

Fields
Field NameDescription
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "name": "xyz789",
  "position": 123,
  "variantId": 4
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantCreateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantCreateInput

Fields
Input FieldDescription
name - StringVariant name
variantId - IDVariant Id
Example
{"name": "abc123", "variantId": 4}

IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantUpdateInput

Fields
Input FieldDescription
name - StringVariant name
position - Int
variantId - IDVariant Id
Example
{
  "name": "xyz789",
  "position": 123,
  "variantId": 4
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplateVariant

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
variantId_all - [ID]Given value includes all in array
variantId_eq - IDField is equal to given value
variantId_exists - BooleanField is set and exists
variantId_in - [ID]Given value includes field
variantId_ne - IDField is not equal to given value
variantId_nin - [ID]Given value does not include field
Example
{
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "position_eq": 123,
  "position_exists": true,
  "position_gt": 123,
  "position_gte": 123,
  "position_in": [987],
  "position_lt": 987,
  "position_lte": 123,
  "position_ne": 123,
  "position_nin": [123],
  "variantId_all": ["4"],
  "variantId_eq": 4,
  "variantId_exists": true,
  "variantId_in": [4],
  "variantId_ne": 4,
  "variantId_nin": ["4"]
}

IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroupTaskTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
advancedLabelSelection - IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionWhereInput
arConfiguration - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationWhereInput
assignedMaterials_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput
assignedMaterials_exists - Boolean
assignedMaterials_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput
assignedMaterials_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput
assignedSkills_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput
assignedSkills_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput
assignedTools_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput
assignedTools_exists - Boolean
assignedTools_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput
assignedTools_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
estimatedDurationDivided - IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedWhereInput
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
isRepeatable_eq - BooleanField is equal to given value
isRepeatable_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
log_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput
log_exists - Boolean
log_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput
log_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput
manualId_contains - StringField contains given value, case-insensitive
manualId_ends_with - StringField ends with given value, case-insensitive
manualId_eq - StringField is equal to given value
manualId_exists - BooleanField is set and exists
manualId_in - [String]Given value includes field
manualId_ne - StringField is not equal to given value
manualId_nin - [String]Given value does not includes field
manualId_not_contains - StringField does not contains given value, case-insensitive
manualId_not_ends_with - StringField does not end with given value, case-insensitive
manualId_not_starts_with - StringField does not start with given value, case-insensitive
manualId_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
onResponseId_all - [ID]Given value includes all in array
onResponseId_eq - IDField is equal to given value
onResponseId_exists - BooleanField is set and exists
onResponseId_in - [ID]Given value includes field
onResponseId_ne - IDField is not equal to given value
onResponseId_nin - [ID]Given value does not include field
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
remarks_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput
remarks_exists - Boolean
remarks_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput
remarks_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput
totalScore_eq - IntField is equal to given value
totalScore_exists - BooleanField is set and exists
totalScore_gt - IntField is greater than given value
totalScore_gte - IntField is greater or equal than given value
totalScore_in - [Int]Given value includes field
totalScore_lt - IntField is lower than given value
totalScore_lte - IntField is lower or equal than given value
totalScore_ne - IntField is not equal to given value
totalScore_nin - [Int]Given value does not includes field
variant - IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "advancedLabelSelection": IssueTemplateDraftTaskTemplateGroupTaskTemplateAdvancedLabelSelectionWhereInput,
  "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationWhereInput,
  "assignedMaterials_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput,
  "assignedMaterials_exists": false,
  "assignedMaterials_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput,
  "assignedMaterials_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedMaterialWhereInput,
  "assignedSkills_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput,
  "assignedSkills_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedSkillWhereInput,
  "assignedTools_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput,
  "assignedTools_exists": false,
  "assignedTools_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput,
  "assignedTools_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateAssignedToolWhereInput,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "estimatedDurationDivided": IssueTemplateDraftTaskTemplateGroupTaskTemplateEstimatedDurationDividedWhereInput,
  "estimatedDuration_eq": 987,
  "estimatedDuration_exists": false,
  "estimatedDuration_gt": 987,
  "estimatedDuration_gte": 987,
  "estimatedDuration_in": [987],
  "estimatedDuration_lt": 987,
  "estimatedDuration_lte": 123,
  "estimatedDuration_ne": 987,
  "estimatedDuration_nin": [123],
  "isRepeatable_eq": false,
  "isRepeatable_ne": false,
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "log_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput,
  "log_exists": false,
  "log_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput,
  "log_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateLogWhereInput,
  "manualId_contains": "abc123",
  "manualId_ends_with": "xyz789",
  "manualId_eq": "xyz789",
  "manualId_exists": false,
  "manualId_in": ["xyz789"],
  "manualId_ne": "xyz789",
  "manualId_nin": ["xyz789"],
  "manualId_not_contains": "abc123",
  "manualId_not_ends_with": "xyz789",
  "manualId_not_starts_with": "xyz789",
  "manualId_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "onResponseId_all": [4],
  "onResponseId_eq": "4",
  "onResponseId_exists": true,
  "onResponseId_in": [4],
  "onResponseId_ne": 4,
  "onResponseId_nin": ["4"],
  "order_eq": 987,
  "order_exists": true,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 987,
  "order_ne": 123,
  "order_nin": [987],
  "parentsTree_all": [4],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": [4],
  "remarks_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput,
  "remarks_exists": true,
  "remarks_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput,
  "remarks_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateRemarkWhereInput,
  "totalScore_eq": 123,
  "totalScore_exists": true,
  "totalScore_gt": 987,
  "totalScore_gte": 123,
  "totalScore_in": [987],
  "totalScore_lt": 123,
  "totalScore_lte": 123,
  "totalScore_ne": 123,
  "totalScore_nin": [987],
  "variant": IssueTemplateDraftTaskTemplateGroupTaskTemplateVariantWhereInput
}

IssueTemplateDraftTaskTemplateGroupUpdateInput

Description

Represents a IssueTemplateDraftTaskTemplateGroupUpdateInput

Fields
Input FieldDescription
_id - ID
inputsWithLinkOptions - [IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionUpdateInput]
markersToShow - IssueTemplateDraftTaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - StringTask group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
taskTemplates - [IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput]
Example
{
  "_id": "4",
  "inputsWithLinkOptions": [
    IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionUpdateInput
  ],
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "sequential": false,
  "taskTemplates": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput
  ]
}

IssueTemplateDraftTaskTemplateGroupWhereInput

Description

Represents a Where input for: IssueTemplateDraftTaskTemplateGroup

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
inputsWithLinkOptions_every - IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput
inputsWithLinkOptions_exists - Boolean
inputsWithLinkOptions_none - IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput
inputsWithLinkOptions_some - IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput
markersToShow_eq - IssueTemplateDraftTaskTemplateGroupMarkersToShowField is equal to given value
markersToShow_exists - IssueTemplateDraftTaskTemplateGroupMarkersToShowField is set and exists
markersToShow_in - [IssueTemplateDraftTaskTemplateGroupMarkersToShow]Given value includes field
markersToShow_ne - IssueTemplateDraftTaskTemplateGroupMarkersToShowField is not equal to given value
markersToShow_nin - [IssueTemplateDraftTaskTemplateGroupMarkersToShow]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
taskTemplates_every - IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput
taskTemplates_exists - Boolean
taskTemplates_none - IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput
taskTemplates_some - IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "inputsWithLinkOptions_every": IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput,
  "inputsWithLinkOptions_exists": true,
  "inputsWithLinkOptions_none": IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput,
  "inputsWithLinkOptions_some": IssueTemplateDraftTaskTemplateGroupInputsWithLinkOptionWhereInput,
  "markersToShow_eq": "ALL",
  "markersToShow_exists": "ALL",
  "markersToShow_in": ["ALL"],
  "markersToShow_ne": "ALL",
  "markersToShow_nin": ["ALL"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 123,
  "order_gte": 123,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 987,
  "order_ne": 987,
  "order_nin": [987],
  "sequential_eq": false,
  "sequential_ne": false,
  "taskTemplates_every": IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput,
  "taskTemplates_exists": true,
  "taskTemplates_none": IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput,
  "taskTemplates_some": IssueTemplateDraftTaskTemplateGroupTaskTemplateWhereInput
}

IssueTemplateDraftTimeMapColumn

Description

Represents a IssueTemplateDraftTimeMapColumn

Fields
Field NameDescription
labelValues - [LabelValue]
labelValuesIds - [ID]
Example
{
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"]
}

IssueTemplateDraftTimeMapColumnCreateInput

Description

Represents a IssueTemplateDraftTimeMapColumnCreateInput

Fields
Input FieldDescription
labelValues - [ID]
Example
{"labelValues": [4]}

IssueTemplateDraftTimeMapColumnUpdateInput

Description

Represents a IssueTemplateDraftTimeMapColumnUpdateInput

Fields
Input FieldDescription
labelValues - [ID]
Example
{"labelValues": [4]}

IssueTemplateDraftTimeMapColumnWhereInput

Description

Represents a Where input for: IssueTemplateDraftTimeMapColumn

Fields
Input FieldDescription
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
Example
{
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": [4]
}

IssueTemplateDraftTimeTableFilter

Description

Represents a IssueTemplateDraftTimeTableFilter

Fields
Field NameDescription
_id - ID
filter - [IssueTemplateDraftTimeTableFilterFilter]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "_id": 4,
  "filter": [IssueTemplateDraftTimeTableFilterFilter],
  "isForAttribution": false,
  "name": "abc123"
}

IssueTemplateDraftTimeTableFilterCreateInput

Description

Represents a IssueTemplateDraftTimeTableFilterCreateInput

Fields
Input FieldDescription
filter - [IssueTemplateDraftTimeTableFilterFilterCreateInput]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "filter": [
    IssueTemplateDraftTimeTableFilterFilterCreateInput
  ],
  "isForAttribution": false,
  "name": "xyz789"
}

IssueTemplateDraftTimeTableFilterFilter

Description

Represents a IssueTemplateDraftTimeTableFilterFilter

Fields
Field NameDescription
_id - ID
conditions - [IssueTemplateDraftTimeTableFilterFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": 4,
  "conditions": [
    IssueTemplateDraftTimeTableFilterFilterCondition
  ],
  "includeAllLabels": true
}

IssueTemplateDraftTimeTableFilterFilterCondition

Description

Represents a IssueTemplateDraftTimeTableFilterFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - IssueTemplateDraftTimeTableFilterFilterConditionOperatoroperator of condition
Example
{
  "_id": 4,
  "labelValue": LabelValue,
  "labelValueId": 4,
  "operator": "CONTAINS"
}

IssueTemplateDraftTimeTableFilterFilterConditionCreateInput

Description

Represents a IssueTemplateDraftTimeTableFilterFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - IssueTemplateDraftTimeTableFilterFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftTimeTableFilterFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

IssueTemplateDraftTimeTableFilterFilterConditionUpdateInput

Description

Represents a IssueTemplateDraftTimeTableFilterFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - IssueTemplateDraftTimeTableFilterFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateDraftTimeTableFilterFilterConditionWhereInput

Description

Represents a Where input for: IssueTemplateDraftTimeTableFilterFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - IssueTemplateDraftTimeTableFilterFilterConditionOperatorField is equal to given value
operator_exists - IssueTemplateDraftTimeTableFilterFilterConditionOperatorField is set and exists
operator_in - [IssueTemplateDraftTimeTableFilterFilterConditionOperator]Given value includes field
operator_ne - IssueTemplateDraftTimeTableFilterFilterConditionOperatorField is not equal to given value
operator_nin - [IssueTemplateDraftTimeTableFilterFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_ne": 4,
  "labelValue_nin": [4],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

IssueTemplateDraftTimeTableFilterFilterCreateInput

Description

Represents a IssueTemplateDraftTimeTableFilterFilterCreateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftTimeTableFilterFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftTimeTableFilterFilterConditionCreateInput
  ],
  "includeAllLabels": false
}

IssueTemplateDraftTimeTableFilterFilterUpdateInput

Description

Represents a IssueTemplateDraftTimeTableFilterFilterUpdateInput

Fields
Input FieldDescription
conditions - [IssueTemplateDraftTimeTableFilterFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateDraftTimeTableFilterFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

IssueTemplateDraftTimeTableFilterFilterWhereInput

Description

Represents a Where input for: IssueTemplateDraftTimeTableFilterFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - IssueTemplateDraftTimeTableFilterFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - IssueTemplateDraftTimeTableFilterFilterConditionWhereInput
conditions_some - IssueTemplateDraftTimeTableFilterFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "conditions_every": IssueTemplateDraftTimeTableFilterFilterConditionWhereInput,
  "conditions_exists": false,
  "conditions_none": IssueTemplateDraftTimeTableFilterFilterConditionWhereInput,
  "conditions_some": IssueTemplateDraftTimeTableFilterFilterConditionWhereInput,
  "includeAllLabels_eq": false,
  "includeAllLabels_ne": false
}

IssueTemplateDraftTimeTableFilterUpdateInput

Description

Represents a IssueTemplateDraftTimeTableFilterUpdateInput

Fields
Input FieldDescription
filter - [IssueTemplateDraftTimeTableFilterFilterUpdateInput]
isForAttribution - BooleanFilter to filters
name - String
Example
{
  "filter": [
    IssueTemplateDraftTimeTableFilterFilterUpdateInput
  ],
  "isForAttribution": false,
  "name": "abc123"
}

IssueTemplateDraftTimeTableFilterWhereInput

Description

Represents a Where input for: IssueTemplateDraftTimeTableFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
filter_every - IssueTemplateDraftTimeTableFilterFilterWhereInput
filter_exists - Boolean
filter_none - IssueTemplateDraftTimeTableFilterFilterWhereInput
filter_some - IssueTemplateDraftTimeTableFilterFilterWhereInput
isForAttribution_eq - BooleanField is equal to given value
isForAttribution_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "filter_every": IssueTemplateDraftTimeTableFilterFilterWhereInput,
  "filter_exists": false,
  "filter_none": IssueTemplateDraftTimeTableFilterFilterWhereInput,
  "filter_some": IssueTemplateDraftTimeTableFilterFilterWhereInput,
  "isForAttribution_eq": false,
  "isForAttribution_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

IssueTemplateDraftUpdateInput

Description

Represents a IssueTemplateDraftUpdateInput

Example
{
  "assignedSkills": [
    IssueTemplateDraftAssignedSkillUpdateInput
  ],
  "description": "abc123",
  "favorites": [IssueTemplateDraftFavoriteUpdateInput],
  "folder": "4",
  "frame": IssueTemplateDraftFrameUpdateInput,
  "icon": "xyz789",
  "selectedVariant": "4",
  "taskTemplateGroups": [
    IssueTemplateDraftTaskTemplateGroupUpdateInput
  ],
  "timeMapColumns": [
    IssueTemplateDraftTimeMapColumnUpdateInput
  ],
  "timeTableFilters": [
    IssueTemplateDraftTimeTableFilterUpdateInput
  ],
  "title": "xyz789",
  "variant": IssueTemplateDraftVariantUpdateInput
}

IssueTemplateDraftVariant

Description

Represents a IssueTemplateDraftVariant

Fields
Field NameDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "xyz789",
  "name": "xyz789",
  "position": 987,
  "variantId": 4
}

IssueTemplateDraftVariantCreateInput

Description

Represents a IssueTemplateDraftVariantCreateInput

Fields
Input FieldDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "xyz789",
  "name": "abc123",
  "position": 123,
  "variantId": 4
}

IssueTemplateDraftVariantUpdateInput

Description

Represents a IssueTemplateDraftVariantUpdateInput

Fields
Input FieldDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "abc123",
  "name": "abc123",
  "position": 123,
  "variantId": "4"
}

IssueTemplateDraftVariantWhereInput

Description

Represents a Where input for: IssueTemplateDraftVariant

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
variantId_all - [ID]Given value includes all in array
variantId_eq - IDField is equal to given value
variantId_exists - BooleanField is set and exists
variantId_in - [ID]Given value includes field
variantId_ne - IDField is not equal to given value
variantId_nin - [ID]Given value does not include field
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "position_eq": 123,
  "position_exists": true,
  "position_gt": 123,
  "position_gte": 987,
  "position_in": [123],
  "position_lt": 123,
  "position_lte": 123,
  "position_ne": 987,
  "position_nin": [987],
  "variantId_all": [4],
  "variantId_eq": "4",
  "variantId_exists": true,
  "variantId_in": ["4"],
  "variantId_ne": "4",
  "variantId_nin": ["4"]
}

IssueTemplateDraftWhereInput

Description

Represents a Where input for: IssueTemplateDraft

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
assignedSkills_every - IssueTemplateDraftAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - IssueTemplateDraftAssignedSkillWhereInput
assignedSkills_some - IssueTemplateDraftAssignedSkillWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
favorites_every - IssueTemplateDraftFavoriteWhereInput
favorites_exists - Boolean
favorites_none - IssueTemplateDraftFavoriteWhereInput
favorites_some - IssueTemplateDraftFavoriteWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - IssueTemplateDraftFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
selectedVariant_all - [ID]Given value includes all in array
selectedVariant_eq - IDField is equal to given value
selectedVariant_exists - BooleanField is set and exists
selectedVariant_in - [ID]Given value includes field
selectedVariant_ne - IDField is not equal to given value
selectedVariant_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskTemplateGroups_every - IssueTemplateDraftTaskTemplateGroupWhereInput
taskTemplateGroups_exists - Boolean
taskTemplateGroups_none - IssueTemplateDraftTaskTemplateGroupWhereInput
taskTemplateGroups_some - IssueTemplateDraftTaskTemplateGroupWhereInput
timeMapColumns_every - IssueTemplateDraftTimeMapColumnWhereInput
timeMapColumns_exists - Boolean
timeMapColumns_none - IssueTemplateDraftTimeMapColumnWhereInput
timeMapColumns_some - IssueTemplateDraftTimeMapColumnWhereInput
timeTableFilters_every - IssueTemplateDraftTimeTableFilterWhereInput
timeTableFilters_exists - Boolean
timeTableFilters_none - IssueTemplateDraftTimeTableFilterWhereInput
timeTableFilters_some - IssueTemplateDraftTimeTableFilterWhereInput
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updateTemplate_all - [ID]Given value includes all in array
updateTemplate_eq - IDField is equal to given value
updateTemplate_exists - BooleanField is set and exists
updateTemplate_in - [ID]Given value includes field
updateTemplate_ne - IDField is not equal to given value
updateTemplate_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
variant - IssueTemplateDraftVariantWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "assignedSkills_every": IssueTemplateDraftAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": IssueTemplateDraftAssignedSkillWhereInput,
  "assignedSkills_some": IssueTemplateDraftAssignedSkillWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "favorites_every": IssueTemplateDraftFavoriteWhereInput,
  "favorites_exists": true,
  "favorites_none": IssueTemplateDraftFavoriteWhereInput,
  "favorites_some": IssueTemplateDraftFavoriteWhereInput,
  "folder_all": [4],
  "folder_eq": "4",
  "folder_exists": false,
  "folder_in": [4],
  "folder_ne": 4,
  "folder_nin": ["4"],
  "frame": IssueTemplateDraftFrameWhereInput,
  "icon_contains": "xyz789",
  "icon_ends_with": "xyz789",
  "icon_eq": "abc123",
  "icon_exists": true,
  "icon_in": ["xyz789"],
  "icon_ne": "abc123",
  "icon_nin": ["xyz789"],
  "icon_not_contains": "abc123",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "xyz789",
  "icon_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "selectedVariant_all": [4],
  "selectedVariant_eq": "4",
  "selectedVariant_exists": false,
  "selectedVariant_in": [4],
  "selectedVariant_ne": "4",
  "selectedVariant_nin": ["4"],
  "system_eq": false,
  "system_ne": false,
  "taskTemplateGroups_every": IssueTemplateDraftTaskTemplateGroupWhereInput,
  "taskTemplateGroups_exists": false,
  "taskTemplateGroups_none": IssueTemplateDraftTaskTemplateGroupWhereInput,
  "taskTemplateGroups_some": IssueTemplateDraftTaskTemplateGroupWhereInput,
  "timeMapColumns_every": IssueTemplateDraftTimeMapColumnWhereInput,
  "timeMapColumns_exists": true,
  "timeMapColumns_none": IssueTemplateDraftTimeMapColumnWhereInput,
  "timeMapColumns_some": IssueTemplateDraftTimeMapColumnWhereInput,
  "timeTableFilters_every": IssueTemplateDraftTimeTableFilterWhereInput,
  "timeTableFilters_exists": true,
  "timeTableFilters_none": IssueTemplateDraftTimeTableFilterWhereInput,
  "timeTableFilters_some": IssueTemplateDraftTimeTableFilterWhereInput,
  "title_contains": "xyz789",
  "title_ends_with": "xyz789",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["xyz789"],
  "title_ne": "xyz789",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "abc123",
  "title_starts_with": "abc123",
  "updateTemplate_all": ["4"],
  "updateTemplate_eq": 4,
  "updateTemplate_exists": false,
  "updateTemplate_in": [4],
  "updateTemplate_ne": 4,
  "updateTemplate_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4],
  "variant": IssueTemplateDraftVariantWhereInput
}

IssueTemplateDraftWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueTemplateFavorite

Description

Represents a IssueTemplateFavorite

Fields
Field NameDescription
_id - ID
filter - [IssueTemplateFavoriteFilter]
isForAttribution - BooleanFilter to filters
name - String!
result - [LabelValue!]
resultByCondition - [LabelValue!]
Example
{
  "_id": "4",
  "filter": [IssueTemplateFavoriteFilter],
  "isForAttribution": true,
  "name": "xyz789",
  "result": [LabelValue],
  "resultByCondition": [LabelValue]
}

IssueTemplateFavoriteCreateInput

Description

Represents a IssueTemplateFavoriteCreateInput

Fields
Input FieldDescription
filter - [IssueTemplateFavoriteFilterCreateInput]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "filter": [IssueTemplateFavoriteFilterCreateInput],
  "isForAttribution": false,
  "name": "xyz789"
}

IssueTemplateFavoriteFilter

Description

Represents a IssueTemplateFavoriteFilter

Fields
Field NameDescription
_id - ID
conditions - [IssueTemplateFavoriteFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": 4,
  "conditions": [IssueTemplateFavoriteFilterCondition],
  "includeAllLabels": true
}

IssueTemplateFavoriteFilterCondition

Description

Represents a IssueTemplateFavoriteFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - IssueTemplateFavoriteFilterConditionOperatoroperator of condition
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": 4,
  "operator": "CONTAINS"
}

IssueTemplateFavoriteFilterConditionCreateInput

Description

Represents a IssueTemplateFavoriteFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - IssueTemplateFavoriteFilterConditionOperatoroperator of condition
Example
{"labelValue": 4, "operator": "CONTAINS"}

IssueTemplateFavoriteFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

IssueTemplateFavoriteFilterConditionUpdateInput

Description

Represents a IssueTemplateFavoriteFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - IssueTemplateFavoriteFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateFavoriteFilterConditionWhereInput

Description

Represents a Where input for: IssueTemplateFavoriteFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - IssueTemplateFavoriteFilterConditionOperatorField is equal to given value
operator_exists - IssueTemplateFavoriteFilterConditionOperatorField is set and exists
operator_in - [IssueTemplateFavoriteFilterConditionOperator]Given value includes field
operator_ne - IssueTemplateFavoriteFilterConditionOperatorField is not equal to given value
operator_nin - [IssueTemplateFavoriteFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": true,
  "labelValue_in": ["4"],
  "labelValue_ne": 4,
  "labelValue_nin": [4],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

IssueTemplateFavoriteFilterCreateInput

Description

Represents a IssueTemplateFavoriteFilterCreateInput

Fields
Input FieldDescription
conditions - [IssueTemplateFavoriteFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateFavoriteFilterConditionCreateInput
  ],
  "includeAllLabels": false
}

IssueTemplateFavoriteFilterUpdateInput

Description

Represents a IssueTemplateFavoriteFilterUpdateInput

Fields
Input FieldDescription
conditions - [IssueTemplateFavoriteFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateFavoriteFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

IssueTemplateFavoriteFilterWhereInput

Description

Represents a Where input for: IssueTemplateFavoriteFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - IssueTemplateFavoriteFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - IssueTemplateFavoriteFilterConditionWhereInput
conditions_some - IssueTemplateFavoriteFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "conditions_every": IssueTemplateFavoriteFilterConditionWhereInput,
  "conditions_exists": false,
  "conditions_none": IssueTemplateFavoriteFilterConditionWhereInput,
  "conditions_some": IssueTemplateFavoriteFilterConditionWhereInput,
  "includeAllLabels_eq": true,
  "includeAllLabels_ne": true
}

IssueTemplateFavoriteUpdateInput

Description

Represents a IssueTemplateFavoriteUpdateInput

Fields
Input FieldDescription
filter - [IssueTemplateFavoriteFilterUpdateInput]
isForAttribution - BooleanFilter to filters
name - String
Example
{
  "filter": [IssueTemplateFavoriteFilterUpdateInput],
  "isForAttribution": false,
  "name": "abc123"
}

IssueTemplateFavoriteWhereInput

Description

Represents a Where input for: IssueTemplateFavorite

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
filter_every - IssueTemplateFavoriteFilterWhereInput
filter_exists - Boolean
filter_none - IssueTemplateFavoriteFilterWhereInput
filter_some - IssueTemplateFavoriteFilterWhereInput
isForAttribution_eq - BooleanField is equal to given value
isForAttribution_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "filter_every": IssueTemplateFavoriteFilterWhereInput,
  "filter_exists": false,
  "filter_none": IssueTemplateFavoriteFilterWhereInput,
  "filter_some": IssueTemplateFavoriteFilterWhereInput,
  "isForAttribution_eq": true,
  "isForAttribution_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

IssueTemplateFolder

Description

Represents a IssueTemplateFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueTemplateFoldersCount - Int
issueTemplatesCount - Int
Arguments
tenant - ID
name - String!
parent - IssueTemplateFolderIssueTemplateFolder Parent
parentId - IDIssueTemplateFolder Parent
parentsTree - [IssueTemplateFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "context": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "issueTemplateFoldersCount": 987,
  "issueTemplatesCount": 123,
  "name": "xyz789",
  "parent": IssueTemplateFolder,
  "parentId": 4,
  "parentsTree": [IssueTemplateFolder],
  "parentsTreeIds": ["4"],
  "protected": false,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

IssueTemplateFolderCreateInput

Description

Represents a IssueTemplateFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDIssueTemplateFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": 4
}

IssueTemplateFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

IssueTemplateFolderUpdateInput

Description

Represents a IssueTemplateFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDIssueTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": "4"
}

IssueTemplateFolderWhereInput

Description

Represents a Where input for: IssueTemplateFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "context_contains": "abc123",
  "context_ends_with": "xyz789",
  "context_eq": "xyz789",
  "context_exists": true,
  "context_in": ["abc123"],
  "context_ne": "abc123",
  "context_nin": ["abc123"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "abc123",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": false,
  "parent_in": [4],
  "parent_ne": 4,
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": false,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

IssueTemplateFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueTemplateFrame

Description

Represents a IssueTemplateFrame

Fields
Field NameDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateFrameEstimatedDurationDivided
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [Input]
labelValues - [LabelValue]
labelValuesIds - [ID]
materialLegendAndComments - Boolean
presets - [IssueTemplateFramePreset]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateFrameScanMapping]
scoreInputs - BooleanScore input
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateFrameSkill]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": false,
  "customArConfiguration": true,
  "divideTime": true,
  "estimatedDuration": 987,
  "estimatedDurationDivided": IssueTemplateFrameEstimatedDurationDivided,
  "estimatedDurationFromTasks": true,
  "estimatedDurationUnit": "hours",
  "idOnTasks": false,
  "inputs": [Input],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "materialLegendAndComments": false,
  "presets": [IssueTemplateFramePreset],
  "remarksOnTasks": true,
  "scanMapping": [IssueTemplateFrameScanMapping],
  "scoreInputs": true,
  "sequential": true,
  "skills": [IssueTemplateFrameSkill],
  "toolLegendAndComments": true
}

IssueTemplateFrameCreateInput

Description

Represents a IssueTemplateFrameCreateInput

Fields
Input FieldDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateFrameEstimatedDurationDividedCreateInput
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [InputCreateInput]
labelValues - [ID]
materialLegendAndComments - Boolean
presets - [IssueTemplateFramePresetCreateInput]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateFrameScanMappingCreateInput]
scoreInputs - BooleanScore input
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateFrameSkillCreateInput]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": false,
  "customArConfiguration": false,
  "divideTime": false,
  "estimatedDuration": 123,
  "estimatedDurationDivided": IssueTemplateFrameEstimatedDurationDividedCreateInput,
  "estimatedDurationFromTasks": true,
  "estimatedDurationUnit": "hours",
  "idOnTasks": false,
  "inputs": [InputCreateInput],
  "labelValues": ["4"],
  "materialLegendAndComments": true,
  "presets": [IssueTemplateFramePresetCreateInput],
  "remarksOnTasks": false,
  "scanMapping": [
    IssueTemplateFrameScanMappingCreateInput
  ],
  "scoreInputs": false,
  "sequential": true,
  "skills": [IssueTemplateFrameSkillCreateInput],
  "toolLegendAndComments": false
}

IssueTemplateFrameEstimatedDurationDivided

Description

Represents a IssueTemplateFrameEstimatedDurationDivided

Fields
Field NameDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 123, "valueAdded": 987, "waste": 123}

IssueTemplateFrameEstimatedDurationDividedCreateInput

Description

Represents a IssueTemplateFrameEstimatedDurationDividedCreateInput

Fields
Input FieldDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 987, "valueAdded": 987, "waste": 123}

IssueTemplateFrameEstimatedDurationDividedUpdateInput

Description

Represents a IssueTemplateFrameEstimatedDurationDividedUpdateInput

Fields
Input FieldDescription
nonValueAdded - Int
valueAdded - Int
waste - Int
Example
{"nonValueAdded": 123, "valueAdded": 987, "waste": 123}

IssueTemplateFrameEstimatedDurationDividedWhereInput

Description

Represents a Where input for: IssueTemplateFrameEstimatedDurationDivided

Fields
Input FieldDescription
nonValueAdded_eq - IntField is equal to given value
nonValueAdded_exists - BooleanField is set and exists
nonValueAdded_gt - IntField is greater than given value
nonValueAdded_gte - IntField is greater or equal than given value
nonValueAdded_in - [Int]Given value includes field
nonValueAdded_lt - IntField is lower than given value
nonValueAdded_lte - IntField is lower or equal than given value
nonValueAdded_ne - IntField is not equal to given value
nonValueAdded_nin - [Int]Given value does not includes field
valueAdded_eq - IntField is equal to given value
valueAdded_exists - BooleanField is set and exists
valueAdded_gt - IntField is greater than given value
valueAdded_gte - IntField is greater or equal than given value
valueAdded_in - [Int]Given value includes field
valueAdded_lt - IntField is lower than given value
valueAdded_lte - IntField is lower or equal than given value
valueAdded_ne - IntField is not equal to given value
valueAdded_nin - [Int]Given value does not includes field
waste_eq - IntField is equal to given value
waste_exists - BooleanField is set and exists
waste_gt - IntField is greater than given value
waste_gte - IntField is greater or equal than given value
waste_in - [Int]Given value includes field
waste_lt - IntField is lower than given value
waste_lte - IntField is lower or equal than given value
waste_ne - IntField is not equal to given value
waste_nin - [Int]Given value does not includes field
Example
{
  "nonValueAdded_eq": 123,
  "nonValueAdded_exists": false,
  "nonValueAdded_gt": 987,
  "nonValueAdded_gte": 123,
  "nonValueAdded_in": [123],
  "nonValueAdded_lt": 123,
  "nonValueAdded_lte": 987,
  "nonValueAdded_ne": 123,
  "nonValueAdded_nin": [123],
  "valueAdded_eq": 123,
  "valueAdded_exists": true,
  "valueAdded_gt": 123,
  "valueAdded_gte": 123,
  "valueAdded_in": [987],
  "valueAdded_lt": 987,
  "valueAdded_lte": 123,
  "valueAdded_ne": 987,
  "valueAdded_nin": [123],
  "waste_eq": 123,
  "waste_exists": false,
  "waste_gt": 987,
  "waste_gte": 987,
  "waste_in": [987],
  "waste_lt": 987,
  "waste_lte": 987,
  "waste_ne": 987,
  "waste_nin": [987]
}

IssueTemplateFrameEstimatedDurationUnit

Values
Enum ValueDescription

hours

minutes

seconds

Example
"hours"

IssueTemplateFramePreset

Description

Represents a IssueTemplateFramePreset

Fields
Field NameDescription
_id - ID
inputs - [ID]
options - [IssueTemplateFramePresetOption]
order - Int
Example
{
  "_id": 4,
  "inputs": [4],
  "options": [IssueTemplateFramePresetOption],
  "order": 123
}

IssueTemplateFramePresetCreateInput

Description

Represents a IssueTemplateFramePresetCreateInput

Fields
Input FieldDescription
inputs - [ID]
options - [IssueTemplateFramePresetOptionCreateInput]
order - Int
Example
{
  "inputs": ["4"],
  "options": [IssueTemplateFramePresetOptionCreateInput],
  "order": 987
}

IssueTemplateFramePresetOption

Description

Represents a IssueTemplateFramePresetOption

Fields
Field NameDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": ["4"],
  "order": 987,
  "response": "abc123"
}

IssueTemplateFramePresetOptionCreateInput

Description

Represents a IssueTemplateFramePresetOptionCreateInput

Fields
Input FieldDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": ["4"],
  "order": 987,
  "response": "xyz789"
}

IssueTemplateFramePresetOptionUpdateInput

Description

Represents a IssueTemplateFramePresetOptionUpdateInput

Fields
Input FieldDescription
conditionals - [ID]
order - Int
response - String
Example
{
  "conditionals": ["4"],
  "order": 123,
  "response": "abc123"
}

IssueTemplateFramePresetOptionWhereInput

Description

Represents a Where input for: IssueTemplateFramePresetOption

Fields
Input FieldDescription
conditionals_all - [ID]Field includes all given values.
conditionals_eq - [ID]Given value is equal to field
conditionals_exists - Boolean
conditionals_in - [ID]Field includes one of given value.
conditionals_nin - [ID]Field does not include any of the given values.
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
response_contains - StringField contains given value, case-insensitive
response_ends_with - StringField ends with given value, case-insensitive
response_eq - StringField is equal to given value
response_exists - BooleanField is set and exists
response_in - [String]Given value includes field
response_ne - StringField is not equal to given value
response_nin - [String]Given value does not includes field
response_not_contains - StringField does not contains given value, case-insensitive
response_not_ends_with - StringField does not end with given value, case-insensitive
response_not_starts_with - StringField does not start with given value, case-insensitive
response_starts_with - StringField starts with given value, case-insensitive
Example
{
  "conditionals_all": [4],
  "conditionals_eq": ["4"],
  "conditionals_exists": true,
  "conditionals_in": ["4"],
  "conditionals_nin": ["4"],
  "order_eq": 987,
  "order_exists": true,
  "order_gt": 123,
  "order_gte": 987,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [123],
  "response_contains": "xyz789",
  "response_ends_with": "xyz789",
  "response_eq": "xyz789",
  "response_exists": true,
  "response_in": ["xyz789"],
  "response_ne": "abc123",
  "response_nin": ["abc123"],
  "response_not_contains": "abc123",
  "response_not_ends_with": "abc123",
  "response_not_starts_with": "xyz789",
  "response_starts_with": "abc123"
}

IssueTemplateFramePresetUpdateInput

Description

Represents a IssueTemplateFramePresetUpdateInput

Fields
Input FieldDescription
inputs - [ID]
options - [IssueTemplateFramePresetOptionUpdateInput]
order - Int
Example
{
  "inputs": ["4"],
  "options": [IssueTemplateFramePresetOptionUpdateInput],
  "order": 123
}

IssueTemplateFramePresetWhereInput

Description

Represents a Where input for: IssueTemplateFramePreset

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
inputs_all - [ID]Field includes all given values.
inputs_eq - [ID]Given value is equal to field
inputs_exists - Boolean
inputs_in - [ID]Field includes one of given value.
inputs_nin - [ID]Field does not include any of the given values.
options_every - IssueTemplateFramePresetOptionWhereInput
options_exists - Boolean
options_none - IssueTemplateFramePresetOptionWhereInput
options_some - IssueTemplateFramePresetOptionWhereInput
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "inputs_all": [4],
  "inputs_eq": ["4"],
  "inputs_exists": false,
  "inputs_in": [4],
  "inputs_nin": [4],
  "options_every": IssueTemplateFramePresetOptionWhereInput,
  "options_exists": true,
  "options_none": IssueTemplateFramePresetOptionWhereInput,
  "options_some": IssueTemplateFramePresetOptionWhereInput,
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 123,
  "order_gte": 123,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 987,
  "order_ne": 123,
  "order_nin": [987]
}

IssueTemplateFrameScanMapping

Description

Represents a IssueTemplateFrameScanMapping

Fields
Field NameDescription
_id - ID
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - Label!Label id
labelId - ID!Label id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean!
Example
{
  "_id": "4",
  "delimiter": "abc123",
  "firstDelimiter": 987,
  "isMultiEntry": false,
  "label": Label,
  "labelId": 4,
  "lastDelimiter": 987,
  "numberCharacters": [987],
  "selectedOption": "abc123",
  "thisForward": true
}

IssueTemplateFrameScanMappingCreateInput

Description

Represents a IssueTemplateFrameScanMappingCreateInput

Fields
Input FieldDescription
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - ID!Label id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean!
Example
{
  "delimiter": "xyz789",
  "firstDelimiter": 987,
  "isMultiEntry": true,
  "label": "4",
  "lastDelimiter": 987,
  "numberCharacters": [987],
  "selectedOption": "abc123",
  "thisForward": false
}

IssueTemplateFrameScanMappingUpdateInput

Description

Represents a IssueTemplateFrameScanMappingUpdateInput

Fields
Input FieldDescription
delimiter - String
firstDelimiter - IntFirst character with delimiter
isMultiEntry - Boolean
label - IDLabel id
lastDelimiter - IntLast character with delimiter
numberCharacters - [Int]Char number afected by this label
selectedOption - String
thisForward - Boolean
Example
{
  "delimiter": "xyz789",
  "firstDelimiter": 987,
  "isMultiEntry": true,
  "label": 4,
  "lastDelimiter": 123,
  "numberCharacters": [987],
  "selectedOption": "xyz789",
  "thisForward": true
}

IssueTemplateFrameScanMappingWhereInput

Description

Represents a Where input for: IssueTemplateFrameScanMapping

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
delimiter_contains - StringField contains given value, case-insensitive
delimiter_ends_with - StringField ends with given value, case-insensitive
delimiter_eq - StringField is equal to given value
delimiter_exists - BooleanField is set and exists
delimiter_in - [String]Given value includes field
delimiter_ne - StringField is not equal to given value
delimiter_nin - [String]Given value does not includes field
delimiter_not_contains - StringField does not contains given value, case-insensitive
delimiter_not_ends_with - StringField does not end with given value, case-insensitive
delimiter_not_starts_with - StringField does not start with given value, case-insensitive
delimiter_starts_with - StringField starts with given value, case-insensitive
firstDelimiter_eq - IntField is equal to given value
firstDelimiter_exists - BooleanField is set and exists
firstDelimiter_gt - IntField is greater than given value
firstDelimiter_gte - IntField is greater or equal than given value
firstDelimiter_in - [Int]Given value includes field
firstDelimiter_lt - IntField is lower than given value
firstDelimiter_lte - IntField is lower or equal than given value
firstDelimiter_ne - IntField is not equal to given value
firstDelimiter_nin - [Int]Given value does not includes field
isMultiEntry_eq - BooleanField is equal to given value
isMultiEntry_ne - BooleanField is not equal to given value
label_all - [ID]Given value includes all in array
label_eq - IDField is equal to given value
label_exists - BooleanField is set and exists
label_in - [ID]Given value includes field
label_ne - IDField is not equal to given value
label_nin - [ID]Given value does not include field
lastDelimiter_eq - IntField is equal to given value
lastDelimiter_exists - BooleanField is set and exists
lastDelimiter_gt - IntField is greater than given value
lastDelimiter_gte - IntField is greater or equal than given value
lastDelimiter_in - [Int]Given value includes field
lastDelimiter_lt - IntField is lower than given value
lastDelimiter_lte - IntField is lower or equal than given value
lastDelimiter_ne - IntField is not equal to given value
lastDelimiter_nin - [Int]Given value does not includes field
numberCharacters_all - [Int]Field includes all given values.
numberCharacters_eq - [Int]Given value is equal to field
numberCharacters_exists - Boolean
numberCharacters_in - [Int]Field includes one of given value.
numberCharacters_nin - [Int]Field does not include any of the given values.
selectedOption_contains - StringField contains given value, case-insensitive
selectedOption_ends_with - StringField ends with given value, case-insensitive
selectedOption_eq - StringField is equal to given value
selectedOption_exists - BooleanField is set and exists
selectedOption_in - [String]Given value includes field
selectedOption_ne - StringField is not equal to given value
selectedOption_nin - [String]Given value does not includes field
selectedOption_not_contains - StringField does not contains given value, case-insensitive
selectedOption_not_ends_with - StringField does not end with given value, case-insensitive
selectedOption_not_starts_with - StringField does not start with given value, case-insensitive
selectedOption_starts_with - StringField starts with given value, case-insensitive
thisForward_eq - BooleanField is equal to given value
thisForward_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "delimiter_contains": "abc123",
  "delimiter_ends_with": "xyz789",
  "delimiter_eq": "abc123",
  "delimiter_exists": true,
  "delimiter_in": ["xyz789"],
  "delimiter_ne": "abc123",
  "delimiter_nin": ["abc123"],
  "delimiter_not_contains": "xyz789",
  "delimiter_not_ends_with": "abc123",
  "delimiter_not_starts_with": "xyz789",
  "delimiter_starts_with": "xyz789",
  "firstDelimiter_eq": 123,
  "firstDelimiter_exists": true,
  "firstDelimiter_gt": 987,
  "firstDelimiter_gte": 123,
  "firstDelimiter_in": [987],
  "firstDelimiter_lt": 987,
  "firstDelimiter_lte": 987,
  "firstDelimiter_ne": 123,
  "firstDelimiter_nin": [123],
  "isMultiEntry_eq": false,
  "isMultiEntry_ne": false,
  "label_all": ["4"],
  "label_eq": 4,
  "label_exists": false,
  "label_in": ["4"],
  "label_ne": "4",
  "label_nin": [4],
  "lastDelimiter_eq": 123,
  "lastDelimiter_exists": true,
  "lastDelimiter_gt": 123,
  "lastDelimiter_gte": 987,
  "lastDelimiter_in": [987],
  "lastDelimiter_lt": 987,
  "lastDelimiter_lte": 987,
  "lastDelimiter_ne": 123,
  "lastDelimiter_nin": [123],
  "numberCharacters_all": [123],
  "numberCharacters_eq": [987],
  "numberCharacters_exists": true,
  "numberCharacters_in": [987],
  "numberCharacters_nin": [123],
  "selectedOption_contains": "abc123",
  "selectedOption_ends_with": "xyz789",
  "selectedOption_eq": "xyz789",
  "selectedOption_exists": false,
  "selectedOption_in": ["xyz789"],
  "selectedOption_ne": "xyz789",
  "selectedOption_nin": ["xyz789"],
  "selectedOption_not_contains": "xyz789",
  "selectedOption_not_ends_with": "abc123",
  "selectedOption_not_starts_with": "xyz789",
  "selectedOption_starts_with": "abc123",
  "thisForward_eq": false,
  "thisForward_ne": true
}

IssueTemplateFrameSkill

Description

Represents a IssueTemplateFrameSkill

Fields
Field NameDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

IssueTemplateFrameSkillCreateInput

Description

Represents a IssueTemplateFrameSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

IssueTemplateFrameSkillUpdateInput

Description

Represents a IssueTemplateFrameSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "xyz789"
}

IssueTemplateFrameSkillWhereInput

Description

Represents a Where input for: IssueTemplateFrameSkill

Fields
Input FieldDescription
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "abc123",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": false,
  "choosenSkillLevelName_in": ["abc123"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "abc123",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": ["4"],
  "id_eq": 4,
  "id_exists": false,
  "id_in": [4],
  "id_ne": "4",
  "id_nin": [4],
  "level_contains": "xyz789",
  "level_ends_with": "xyz789",
  "level_eq": "abc123",
  "level_exists": true,
  "level_in": ["xyz789"],
  "level_ne": "xyz789",
  "level_nin": ["abc123"],
  "level_not_contains": "xyz789",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "abc123",
  "level_starts_with": "abc123",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "abc123",
  "skillname_eq": "xyz789",
  "skillname_exists": true,
  "skillname_in": ["abc123"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["abc123"],
  "skillname_not_contains": "xyz789",
  "skillname_not_ends_with": "abc123",
  "skillname_not_starts_with": "abc123",
  "skillname_starts_with": "abc123"
}

IssueTemplateFrameUpdateInput

Description

Represents a IssueTemplateFrameUpdateInput

Fields
Input FieldDescription
associateSkillsToWorkOrder - BooleanAssociate skills to the work order
customArConfiguration - BooleanIf this Issue Ar use is custom for each task
divideTime - BooleanDivide time
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - IssueTemplateFrameEstimatedDurationDividedUpdateInput
estimatedDurationFromTasks - Boolean
estimatedDurationUnit - IssueTemplateFrameEstimatedDurationUnit
idOnTasks - Boolean
inputs - [InputUpdateInput]
labelValues - [ID]
materialLegendAndComments - Boolean
presets - [IssueTemplateFramePresetUpdateInput]
remarksOnTasks - Boolean
scanMapping - [IssueTemplateFrameScanMappingUpdateInput]
scoreInputs - BooleanScore input
sequential - BooleanIf this Issue execution groups must be executed sequentially
skills - [IssueTemplateFrameSkillUpdateInput]
toolLegendAndComments - Boolean
Example
{
  "associateSkillsToWorkOrder": false,
  "customArConfiguration": false,
  "divideTime": false,
  "estimatedDuration": 987,
  "estimatedDurationDivided": IssueTemplateFrameEstimatedDurationDividedUpdateInput,
  "estimatedDurationFromTasks": true,
  "estimatedDurationUnit": "hours",
  "idOnTasks": false,
  "inputs": [InputUpdateInput],
  "labelValues": ["4"],
  "materialLegendAndComments": true,
  "presets": [IssueTemplateFramePresetUpdateInput],
  "remarksOnTasks": false,
  "scanMapping": [
    IssueTemplateFrameScanMappingUpdateInput
  ],
  "scoreInputs": true,
  "sequential": false,
  "skills": [IssueTemplateFrameSkillUpdateInput],
  "toolLegendAndComments": false
}

IssueTemplateFrameWhereInput

Description

Represents a Where input for: IssueTemplateFrame

Fields
Input FieldDescription
associateSkillsToWorkOrder_eq - BooleanField is equal to given value
associateSkillsToWorkOrder_ne - BooleanField is not equal to given value
customArConfiguration_eq - BooleanField is equal to given value
customArConfiguration_ne - BooleanField is not equal to given value
divideTime_eq - BooleanField is equal to given value
divideTime_ne - BooleanField is not equal to given value
estimatedDurationDivided - IssueTemplateFrameEstimatedDurationDividedWhereInput
estimatedDurationFromTasks_eq - BooleanField is equal to given value
estimatedDurationFromTasks_ne - BooleanField is not equal to given value
estimatedDurationUnit_eq - IssueTemplateFrameEstimatedDurationUnitField is equal to given value
estimatedDurationUnit_exists - IssueTemplateFrameEstimatedDurationUnitField is set and exists
estimatedDurationUnit_in - [IssueTemplateFrameEstimatedDurationUnit]Given value includes field
estimatedDurationUnit_ne - IssueTemplateFrameEstimatedDurationUnitField is not equal to given value
estimatedDurationUnit_nin - [IssueTemplateFrameEstimatedDurationUnit]Given value does not includes field
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
idOnTasks_eq - BooleanField is equal to given value
idOnTasks_ne - BooleanField is not equal to given value
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
materialLegendAndComments_eq - BooleanField is equal to given value
materialLegendAndComments_ne - BooleanField is not equal to given value
presets_every - IssueTemplateFramePresetWhereInput
presets_exists - Boolean
presets_none - IssueTemplateFramePresetWhereInput
presets_some - IssueTemplateFramePresetWhereInput
remarksOnTasks_eq - BooleanField is equal to given value
remarksOnTasks_ne - BooleanField is not equal to given value
scanMapping_every - IssueTemplateFrameScanMappingWhereInput
scanMapping_exists - Boolean
scanMapping_none - IssueTemplateFrameScanMappingWhereInput
scanMapping_some - IssueTemplateFrameScanMappingWhereInput
scoreInputs_eq - BooleanField is equal to given value
scoreInputs_ne - BooleanField is not equal to given value
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
skills_every - IssueTemplateFrameSkillWhereInput
skills_exists - Boolean
skills_none - IssueTemplateFrameSkillWhereInput
skills_some - IssueTemplateFrameSkillWhereInput
toolLegendAndComments_eq - BooleanField is equal to given value
toolLegendAndComments_ne - BooleanField is not equal to given value
Example
{
  "associateSkillsToWorkOrder_eq": true,
  "associateSkillsToWorkOrder_ne": true,
  "customArConfiguration_eq": true,
  "customArConfiguration_ne": true,
  "divideTime_eq": false,
  "divideTime_ne": false,
  "estimatedDurationDivided": IssueTemplateFrameEstimatedDurationDividedWhereInput,
  "estimatedDurationFromTasks_eq": false,
  "estimatedDurationFromTasks_ne": false,
  "estimatedDurationUnit_eq": "hours",
  "estimatedDurationUnit_exists": "hours",
  "estimatedDurationUnit_in": ["hours"],
  "estimatedDurationUnit_ne": "hours",
  "estimatedDurationUnit_nin": ["hours"],
  "estimatedDuration_eq": 123,
  "estimatedDuration_exists": true,
  "estimatedDuration_gt": 123,
  "estimatedDuration_gte": 987,
  "estimatedDuration_in": [123],
  "estimatedDuration_lt": 987,
  "estimatedDuration_lte": 987,
  "estimatedDuration_ne": 987,
  "estimatedDuration_nin": [987],
  "idOnTasks_eq": false,
  "idOnTasks_ne": false,
  "inputs_every": InputWhereInput,
  "inputs_exists": true,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "materialLegendAndComments_eq": false,
  "materialLegendAndComments_ne": false,
  "presets_every": IssueTemplateFramePresetWhereInput,
  "presets_exists": false,
  "presets_none": IssueTemplateFramePresetWhereInput,
  "presets_some": IssueTemplateFramePresetWhereInput,
  "remarksOnTasks_eq": true,
  "remarksOnTasks_ne": false,
  "scanMapping_every": IssueTemplateFrameScanMappingWhereInput,
  "scanMapping_exists": false,
  "scanMapping_none": IssueTemplateFrameScanMappingWhereInput,
  "scanMapping_some": IssueTemplateFrameScanMappingWhereInput,
  "scoreInputs_eq": false,
  "scoreInputs_ne": true,
  "sequential_eq": false,
  "sequential_ne": false,
  "skills_every": IssueTemplateFrameSkillWhereInput,
  "skills_exists": true,
  "skills_none": IssueTemplateFrameSkillWhereInput,
  "skills_some": IssueTemplateFrameSkillWhereInput,
  "toolLegendAndComments_eq": false,
  "toolLegendAndComments_ne": false
}

IssueTemplateOrFolder

Example
IssueTemplate

IssueTemplateOrderByEnum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

createdBy_name_ASC

createdBy_name_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

frame_estimatedDurationUnit_ASC

frame_estimatedDurationUnit_DESC

frame_estimatedDuration_ASC

frame_estimatedDuration_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

variant_description_ASC

variant_description_DESC

variant_name_ASC

variant_name_DESC

variant_position_ASC

variant_position_DESC

Example
"_id_ASC"

IssueTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

createdBy_name_ASC

createdBy_name_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

frame_estimatedDurationUnit_ASC

frame_estimatedDurationUnit_DESC

frame_estimatedDuration_ASC

frame_estimatedDuration_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

variant_description_ASC

variant_description_DESC

variant_name_ASC

variant_name_DESC

variant_position_ASC

variant_position_DESC

Example
"_id_ASC"

IssueTemplateTimeMapColumn

Description

Represents a IssueTemplateTimeMapColumn

Fields
Field NameDescription
labelValues - [LabelValue]
labelValuesIds - [ID]
Example
{
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"]
}

IssueTemplateTimeMapColumnCreateInput

Description

Represents a IssueTemplateTimeMapColumnCreateInput

Fields
Input FieldDescription
labelValues - [ID]
Example
{"labelValues": ["4"]}

IssueTemplateTimeMapColumnUpdateInput

Description

Represents a IssueTemplateTimeMapColumnUpdateInput

Fields
Input FieldDescription
labelValues - [ID]
Example
{"labelValues": ["4"]}

IssueTemplateTimeMapColumnWhereInput

Description

Represents a Where input for: IssueTemplateTimeMapColumn

Fields
Input FieldDescription
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
Example
{
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4]
}

IssueTemplateTimeTableFilter

Description

Represents a IssueTemplateTimeTableFilter

Fields
Field NameDescription
_id - ID
filter - [IssueTemplateTimeTableFilterFilter]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "_id": "4",
  "filter": [IssueTemplateTimeTableFilterFilter],
  "isForAttribution": false,
  "name": "abc123"
}

IssueTemplateTimeTableFilterCreateInput

Description

Represents a IssueTemplateTimeTableFilterCreateInput

Fields
Input FieldDescription
filter - [IssueTemplateTimeTableFilterFilterCreateInput]
isForAttribution - BooleanFilter to filters
name - String!
Example
{
  "filter": [
    IssueTemplateTimeTableFilterFilterCreateInput
  ],
  "isForAttribution": false,
  "name": "xyz789"
}

IssueTemplateTimeTableFilterFilter

Description

Represents a IssueTemplateTimeTableFilterFilter

Fields
Field NameDescription
_id - ID
conditions - [IssueTemplateTimeTableFilterFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": 4,
  "conditions": [
    IssueTemplateTimeTableFilterFilterCondition
  ],
  "includeAllLabels": true
}

IssueTemplateTimeTableFilterFilterCondition

Description

Represents a IssueTemplateTimeTableFilterFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - IssueTemplateTimeTableFilterFilterConditionOperatoroperator of condition
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": "4",
  "operator": "CONTAINS"
}

IssueTemplateTimeTableFilterFilterConditionCreateInput

Description

Represents a IssueTemplateTimeTableFilterFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - IssueTemplateTimeTableFilterFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateTimeTableFilterFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

IssueTemplateTimeTableFilterFilterConditionUpdateInput

Description

Represents a IssueTemplateTimeTableFilterFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - IssueTemplateTimeTableFilterFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

IssueTemplateTimeTableFilterFilterConditionWhereInput

Description

Represents a Where input for: IssueTemplateTimeTableFilterFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - IssueTemplateTimeTableFilterFilterConditionOperatorField is equal to given value
operator_exists - IssueTemplateTimeTableFilterFilterConditionOperatorField is set and exists
operator_in - [IssueTemplateTimeTableFilterFilterConditionOperator]Given value includes field
operator_ne - IssueTemplateTimeTableFilterFilterConditionOperatorField is not equal to given value
operator_nin - [IssueTemplateTimeTableFilterFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "labelValue_all": [4],
  "labelValue_eq": 4,
  "labelValue_exists": false,
  "labelValue_in": ["4"],
  "labelValue_ne": "4",
  "labelValue_nin": [4],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

IssueTemplateTimeTableFilterFilterCreateInput

Description

Represents a IssueTemplateTimeTableFilterFilterCreateInput

Fields
Input FieldDescription
conditions - [IssueTemplateTimeTableFilterFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateTimeTableFilterFilterConditionCreateInput
  ],
  "includeAllLabels": false
}

IssueTemplateTimeTableFilterFilterUpdateInput

Description

Represents a IssueTemplateTimeTableFilterFilterUpdateInput

Fields
Input FieldDescription
conditions - [IssueTemplateTimeTableFilterFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    IssueTemplateTimeTableFilterFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

IssueTemplateTimeTableFilterFilterWhereInput

Description

Represents a Where input for: IssueTemplateTimeTableFilterFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - IssueTemplateTimeTableFilterFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - IssueTemplateTimeTableFilterFilterConditionWhereInput
conditions_some - IssueTemplateTimeTableFilterFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "conditions_every": IssueTemplateTimeTableFilterFilterConditionWhereInput,
  "conditions_exists": true,
  "conditions_none": IssueTemplateTimeTableFilterFilterConditionWhereInput,
  "conditions_some": IssueTemplateTimeTableFilterFilterConditionWhereInput,
  "includeAllLabels_eq": true,
  "includeAllLabels_ne": false
}

IssueTemplateTimeTableFilterUpdateInput

Description

Represents a IssueTemplateTimeTableFilterUpdateInput

Fields
Input FieldDescription
filter - [IssueTemplateTimeTableFilterFilterUpdateInput]
isForAttribution - BooleanFilter to filters
name - String
Example
{
  "filter": [
    IssueTemplateTimeTableFilterFilterUpdateInput
  ],
  "isForAttribution": false,
  "name": "xyz789"
}

IssueTemplateTimeTableFilterWhereInput

Description

Represents a Where input for: IssueTemplateTimeTableFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
filter_every - IssueTemplateTimeTableFilterFilterWhereInput
filter_exists - Boolean
filter_none - IssueTemplateTimeTableFilterFilterWhereInput
filter_some - IssueTemplateTimeTableFilterFilterWhereInput
isForAttribution_eq - BooleanField is equal to given value
isForAttribution_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "filter_every": IssueTemplateTimeTableFilterFilterWhereInput,
  "filter_exists": true,
  "filter_none": IssueTemplateTimeTableFilterFilterWhereInput,
  "filter_some": IssueTemplateTimeTableFilterFilterWhereInput,
  "isForAttribution_eq": true,
  "isForAttribution_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

IssueTemplateUpdateInput

Description

Represents a IssueTemplateUpdateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
favorites - [IssueTemplateFavoriteUpdateInput]
folder - IDIssueTemplate Folder
frame - IssueTemplateFrameUpdateInput
icon - String
selectedVariant - ID
timeMapColumns - [IssueTemplateTimeMapColumnUpdateInput]
timeTableFilters - [IssueTemplateTimeTableFilterUpdateInput]
title - String
variant - IssueTemplateVariantUpdateInput
Example
{
  "archived": true,
  "description": "xyz789",
  "favorites": [IssueTemplateFavoriteUpdateInput],
  "folder": 4,
  "frame": IssueTemplateFrameUpdateInput,
  "icon": "xyz789",
  "selectedVariant": "4",
  "timeMapColumns": [
    IssueTemplateTimeMapColumnUpdateInput
  ],
  "timeTableFilters": [
    IssueTemplateTimeTableFilterUpdateInput
  ],
  "title": "abc123",
  "variant": IssueTemplateVariantUpdateInput
}

IssueTemplateVariant

Description

Represents a IssueTemplateVariant

Fields
Field NameDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "abc123",
  "name": "xyz789",
  "position": 987,
  "variantId": "4"
}

IssueTemplateVariantCreateInput

Description

Represents a IssueTemplateVariantCreateInput

Fields
Input FieldDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "xyz789",
  "name": "xyz789",
  "position": 987,
  "variantId": "4"
}

IssueTemplateVariantUpdateInput

Description

Represents a IssueTemplateVariantUpdateInput

Fields
Input FieldDescription
description - String
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "description": "xyz789",
  "name": "xyz789",
  "position": 123,
  "variantId": "4"
}

IssueTemplateVariantWhereInput

Description

Represents a Where input for: IssueTemplateVariant

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
variantId_all - [ID]Given value includes all in array
variantId_eq - IDField is equal to given value
variantId_exists - BooleanField is set and exists
variantId_in - [ID]Given value includes field
variantId_ne - IDField is not equal to given value
variantId_nin - [ID]Given value does not include field
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "position_eq": 987,
  "position_exists": true,
  "position_gt": 123,
  "position_gte": 123,
  "position_in": [123],
  "position_lt": 123,
  "position_lte": 123,
  "position_ne": 123,
  "position_nin": [123],
  "variantId_all": ["4"],
  "variantId_eq": 4,
  "variantId_exists": true,
  "variantId_in": [4],
  "variantId_ne": 4,
  "variantId_nin": [4]
}

IssueTemplateWhereInput

Description

Represents a Where input for: IssueTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
favorites_every - IssueTemplateFavoriteWhereInput
favorites_exists - Boolean
favorites_none - IssueTemplateFavoriteWhereInput
favorites_some - IssueTemplateFavoriteWhereInput
folder - IssueTemplateFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - IssueTemplateFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
selectedVariant_all - [ID]Given value includes all in array
selectedVariant_eq - IDField is equal to given value
selectedVariant_exists - BooleanField is set and exists
selectedVariant_in - [ID]Given value includes field
selectedVariant_ne - IDField is not equal to given value
selectedVariant_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
timeMapColumns_every - IssueTemplateTimeMapColumnWhereInput
timeMapColumns_exists - Boolean
timeMapColumns_none - IssueTemplateTimeMapColumnWhereInput
timeMapColumns_some - IssueTemplateTimeMapColumnWhereInput
timeTableFilters_every - IssueTemplateTimeTableFilterWhereInput
timeTableFilters_exists - Boolean
timeTableFilters_none - IssueTemplateTimeTableFilterWhereInput
timeTableFilters_some - IssueTemplateTimeTableFilterWhereInput
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
variant - IssueTemplateVariantWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": false,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": ["4"],
  "archivedBy_eq": 4,
  "archivedBy_exists": true,
  "archivedBy_in": [4],
  "archivedBy_ne": "4",
  "archivedBy_nin": ["4"],
  "archived_eq": false,
  "archived_ne": true,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "favorites_every": IssueTemplateFavoriteWhereInput,
  "favorites_exists": false,
  "favorites_none": IssueTemplateFavoriteWhereInput,
  "favorites_some": IssueTemplateFavoriteWhereInput,
  "folder": IssueTemplateFolderWhereInput,
  "folder_all": [4],
  "folder_eq": 4,
  "folder_exists": true,
  "folder_in": [4],
  "folder_ne": 4,
  "folder_nin": ["4"],
  "frame": IssueTemplateFrameWhereInput,
  "icon_contains": "xyz789",
  "icon_ends_with": "abc123",
  "icon_eq": "abc123",
  "icon_exists": false,
  "icon_in": ["abc123"],
  "icon_ne": "abc123",
  "icon_nin": ["abc123"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "protected_eq": false,
  "protected_ne": false,
  "selectedVariant_all": [4],
  "selectedVariant_eq": "4",
  "selectedVariant_exists": false,
  "selectedVariant_in": [4],
  "selectedVariant_ne": "4",
  "selectedVariant_nin": ["4"],
  "system_eq": false,
  "system_ne": true,
  "timeMapColumns_every": IssueTemplateTimeMapColumnWhereInput,
  "timeMapColumns_exists": true,
  "timeMapColumns_none": IssueTemplateTimeMapColumnWhereInput,
  "timeMapColumns_some": IssueTemplateTimeMapColumnWhereInput,
  "timeTableFilters_every": IssueTemplateTimeTableFilterWhereInput,
  "timeTableFilters_exists": false,
  "timeTableFilters_none": IssueTemplateTimeTableFilterWhereInput,
  "timeTableFilters_some": IssueTemplateTimeTableFilterWhereInput,
  "title_contains": "xyz789",
  "title_ends_with": "abc123",
  "title_eq": "abc123",
  "title_exists": false,
  "title_in": ["xyz789"],
  "title_ne": "xyz789",
  "title_nin": ["xyz789"],
  "title_not_contains": "abc123",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "abc123",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"],
  "variant": IssueTemplateVariantWhereInput
}

IssueTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

IssueUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [AssignedSkillInput]
description - String
element - ID
site - ID
toolAssociations - [ToolAssociationInput]
toolItems - [ID]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "assignedSkills": [AssignedSkillInput],
  "description": "xyz789",
  "element": 4,
  "site": "4",
  "toolAssociations": [ToolAssociationInput],
  "toolItems": [4]
}

JSON

Description

The JSON scalar type represents JSON values as specified by ECMA-404.

Example
{}

Job

Description

Represents a Job

Fields
Field NameDescription
_id - ID
data - JobData
failReason - String
failed - Boolean
lastRunAt - DateTime
name - String!
nextRunAt - DateTime
Example
{
  "_id": "4",
  "data": JobData,
  "failReason": "xyz789",
  "failed": true,
  "lastRunAt": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "nextRunAt": "2007-12-03T10:15:30Z"
}

JobData

Description

Represents a JobData

Fields
Field NameDescription
_id - ID
createdAt - DateTime
endDate - DateTime
issue - JobDataIssue
scheduleNext - ID
startDate - DateTime
stateMachineInstance - StateMachineInstance
task - JobDataTask
taskMappings - [JobDataTaskMapping]
updatedAt - DateTime
workPackage - JobDataWorkPackage
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z",
  "issue": JobDataIssue,
  "scheduleNext": "4",
  "startDate": "2007-12-03T10:15:30Z",
  "stateMachineInstance": StateMachineInstance,
  "task": JobDataTask,
  "taskMappings": [JobDataTaskMapping],
  "updatedAt": "2007-12-03T10:15:30Z",
  "workPackage": JobDataWorkPackage
}

JobDataFrequency

Fields
Field NameDescription
amount - Int
timeUnit - String
Example
{"amount": 123, "timeUnit": "abc123"}

JobDataIssue

Description

Represents a JobDataIssue

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]Accounts assigned to the issue
assignedAccountsIds - [ID]Accounts assigned to the issue
assignedAccountsTasks - [Account]Accounts assigned to the issue tasks
assignedAccountsTasksIds - [ID]Accounts assigned to the issue tasks
assignedLabelValues - [LabelValue]Label Values assigned to the issue
assignedLabelValuesIds - [ID]Label Values assigned to the issue
assignedLabelValuesTasks - [LabelValue]Label Values assigned to the issue tasks
assignedLabelValuesTasksIds - [ID]Label Values assigned to the issue tasks
canceledBy - Account
canceledById - ID
canceledBySystem - Boolean
catalog - IssueCatalog
catalogId - ID
closedAt - DateTime
conflictHandler - String
createdBy - Account
createdById - ID
currentState - String
description - String
element - Element
elementId - ID
finishedAt - DateTime
frequency - JobDataIssueFrequency
inputs - [Input]
instance - IssueInstance
instanceId - ID
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String
needsApproval - Boolean
site - Site
siteId - ID
usersNotBlocked - [ID]
wip - Boolean
Example
{
  "_id": "4",
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedAccountsTasks": [Account],
  "assignedAccountsTasksIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedLabelValuesTasks": [LabelValue],
  "assignedLabelValuesTasksIds": [4],
  "canceledBy": Account,
  "canceledById": 4,
  "canceledBySystem": false,
  "catalog": IssueCatalog,
  "catalogId": "4",
  "closedAt": "2007-12-03T10:15:30Z",
  "conflictHandler": "abc123",
  "createdBy": Account,
  "createdById": 4,
  "currentState": "xyz789",
  "description": "xyz789",
  "element": Element,
  "elementId": "4",
  "finishedAt": "2007-12-03T10:15:30Z",
  "frequency": JobDataIssueFrequency,
  "inputs": [Input],
  "instance": IssueInstance,
  "instanceId": 4,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "abc123",
  "needsApproval": false,
  "site": Site,
  "siteId": "4",
  "usersNotBlocked": [4],
  "wip": false
}

JobDataIssueFrequency

Description

Represents a JobDataIssueFrequency

Fields
Field NameDescription
amount - Int
name - String
timeUnit - String
Example
{
  "amount": 123,
  "name": "abc123",
  "timeUnit": "xyz789"
}

JobDataTask

Description

Represents a JobDataTask

Fields
Field NameDescription
_id - ID
advancedLabelSelection - JobDataTaskAdvancedLabelSelection
arConfiguration - JobDataTaskArConfiguration
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedMaterials - [JobDataTaskAssignedMaterial]
assignedSkills - [JobDataTaskAssignedSkill]
assignedTools - [JobDataTaskAssignedTool]
createdAt - DateTime
description - StringTask description
element - Element
elementId - ID
estimatedDuration - IntEstimated execution duration in minutes
executedBy - [Account]
executedByIds - [ID]
isActiveByOnResponse - BooleanIf task is available to answer by one onResponse answer
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!Task name
onResponseId - IDInput that generate this task
order - IntOrder in which this Task should be executed
originalTaskId - IDOriginal task id
parentsTree - [ID]
remarks - [JobDataTaskRemark]
score - JobDataTaskScore
site - SiteThis Task site
siteId - IDThis Task site
taskTemplate - IDTask template id of this task
updatedAt - DateTime
Example
{
  "_id": "4",
  "advancedLabelSelection": JobDataTaskAdvancedLabelSelection,
  "arConfiguration": JobDataTaskArConfiguration,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "assignedMaterials": [JobDataTaskAssignedMaterial],
  "assignedSkills": [JobDataTaskAssignedSkill],
  "assignedTools": [JobDataTaskAssignedTool],
  "createdAt": "2007-12-03T10:15:30Z",
  "description": "xyz789",
  "element": Element,
  "elementId": "4",
  "estimatedDuration": 987,
  "executedBy": [Account],
  "executedByIds": ["4"],
  "isActiveByOnResponse": false,
  "isRepeatable": false,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "name": "abc123",
  "onResponseId": "4",
  "order": 123,
  "originalTaskId": 4,
  "parentsTree": [4],
  "remarks": [JobDataTaskRemark],
  "score": JobDataTaskScore,
  "site": Site,
  "siteId": 4,
  "taskTemplate": "4",
  "updatedAt": "2007-12-03T10:15:30Z"
}

JobDataTaskAdvancedLabelSelection

Description

Represents a JobDataTaskAdvancedLabelSelection

Fields
Field NameDescription
filter - [JobDataTaskAdvancedLabelSelectionFilter]
name - String!
Example
{
  "filter": [JobDataTaskAdvancedLabelSelectionFilter],
  "name": "abc123"
}

JobDataTaskAdvancedLabelSelectionFilter

Description

Represents a JobDataTaskAdvancedLabelSelectionFilter

Fields
Field NameDescription
_id - ID
conditions - [JobDataTaskAdvancedLabelSelectionFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": "4",
  "conditions": [
    JobDataTaskAdvancedLabelSelectionFilterCondition
  ],
  "includeAllLabels": true
}

JobDataTaskAdvancedLabelSelectionFilterCondition

Description

Represents a JobDataTaskAdvancedLabelSelectionFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - JobDataTaskAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{
  "_id": "4",
  "labelValue": LabelValue,
  "labelValueId": "4",
  "operator": "CONTAINS"
}

JobDataTaskAdvancedLabelSelectionFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

JobDataTaskArConfiguration

Description

Represents a JobDataTaskArConfiguration

Fields
Field NameDescription
markersColor - StringTask markers color
markersOnFinishingTask - JobDataTaskArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - JobDataTaskArConfigurationMarkersTypeTask markers type
timerFinishTask - JobDataTaskArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - JobDataTaskArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "xyz789",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

JobDataTaskArConfigurationMarkersOnFinishingTask

Values
Enum ValueDescription

CLOSE

LEAVE

Example
"CLOSE"

JobDataTaskArConfigurationMarkersType

Values
Enum ValueDescription

ARROW

CIRCLE

SQUARE

Example
"ARROW"

JobDataTaskArConfigurationTimerFinishTask

Values
Enum ValueDescription

FIVESECONDS

NOTIMER

THREESECONDS

Example
"FIVESECONDS"

JobDataTaskArConfigurationTypeOfInput

Values
Enum ValueDescription

BASIC

COMPLEX

Example
"BASIC"

JobDataTaskAssignedMaterial

Description

Represents a JobDataTaskAssignedMaterial

Fields
Field NameDescription
comments - StringComments
legend - StringLegend
material - Material!
materialId - ID!
quantity - Float!Quantity
Example
{
  "comments": "xyz789",
  "legend": "xyz789",
  "material": Material,
  "materialId": "4",
  "quantity": 987.65
}

JobDataTaskAssignedSkill

Description

Represents a JobDataTaskAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "xyz789",
  "skillname": "abc123"
}

JobDataTaskAssignedTool

Description

Represents a JobDataTaskAssignedTool

Fields
Field NameDescription
associatedWith - Tool
associatedWithId - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - Tool!Tool
toolId - ID!Tool
Example
{
  "associatedWith": Tool,
  "associatedWithId": 4,
  "comments": "abc123",
  "legend": "abc123",
  "quantity": 987,
  "reserveAtStart": true,
  "tool": Tool,
  "toolId": 4
}

JobDataTaskMapping

Description

Represents a JobDataTaskMapping

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
taskGroupID - ID!
taskID - ID!
Example
{
  "_id": 4,
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "taskGroupID": "4",
  "taskID": "4"
}

JobDataTaskMappingCreateInput

Description

Represents a JobDataTaskMappingCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
taskGroupID - ID!
taskID - ID!
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "taskGroupID": 4,
  "taskID": 4
}

JobDataTaskRemark

Description

Represents a JobDataTaskRemark

Fields
Field NameDescription
createAt - DateTime!created at
createdBy - Account!created by
createdById - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "description": "abc123",
  "title": "xyz789"
}

JobDataTaskScore

Description

Represents a JobDataTaskScore

Fields
Field NameDescription
currentScore - Int
totalScore - Int
Example
{"currentScore": 123, "totalScore": 987}

JobDataWorkPackage

Description

Represents a JobDataWorkPackage

Fields
Field NameDescription
_id - ID
createdBy - Account
createdById - ID
finishedAt - DateTime
issueCatalogs - [JobDataWorkPackageIssueCatalog]
jobs - [JobDataWorkPackageJob]
totalIssues - Int!
totalIssuesDone - Int!
workPackageName - String
Example
{
  "_id": 4,
  "createdBy": Account,
  "createdById": 4,
  "finishedAt": "2007-12-03T10:15:30Z",
  "issueCatalogs": [JobDataWorkPackageIssueCatalog],
  "jobs": [JobDataWorkPackageJob],
  "totalIssues": 987,
  "totalIssuesDone": 987,
  "workPackageName": "abc123"
}

JobDataWorkPackageIssueCatalog

Description

Represents a JobDataWorkPackageIssueCatalog

Fields
Field NameDescription
_id - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
name - String!
taskMappings - [JobDataWorkPackageIssueCatalogTaskMapping]
Example
{
  "_id": "4",
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "name": "xyz789",
  "taskMappings": [
    JobDataWorkPackageIssueCatalogTaskMapping
  ]
}

JobDataWorkPackageIssueCatalogTaskMapping

Description

Represents a JobDataWorkPackageIssueCatalogTaskMapping

Fields
Field NameDescription
_id - ID!
assignedAccounts - [ID]
assignedLabelValues - [ID]
Example
{
  "_id": "4",
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"]
}

JobDataWorkPackageJob

Description

Represents a JobDataWorkPackageJob

Fields
Field NameDescription
assignedAccounts - [Account]Accounts assigned to the issue
assignedAccountsIds - [ID]Accounts assigned to the issue
assignedAccountsTasks - [Account]Accounts assigned to the issue tasks
assignedAccountsTasksIds - [ID]Accounts assigned to the issue tasks
assignedLabelValues - [LabelValue]Label Values assigned to the issue
assignedLabelValuesIds - [ID]Label Values assigned to the issue
assignedLabelValuesTasks - [LabelValue]Label Values assigned to the issue tasks
assignedLabelValuesTasksIds - [ID]Label Values assigned to the issue tasks
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedAccountsTasks": [Account],
  "assignedAccountsTasksIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedLabelValuesTasks": [LabelValue],
  "assignedLabelValuesTasksIds": ["4"]
}

JobOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

data_createdAt_ASC

data_createdAt_DESC

data_endDate_ASC

data_endDate_DESC

data_issue_assignedAccounts_name_ASC

data_issue_assignedAccounts_name_DESC

data_issue_assignedLabelValues_value_ASC

data_issue_assignedLabelValues_value_DESC

data_issue_element_name_ASC

data_issue_element_name_DESC

data_issue_estimatedDuration_ASC

data_issue_estimatedDuration_DESC

data_issue_frequency_amount_ASC

data_issue_frequency_amount_DESC

data_issue_instance_updatedAt_ASC

data_issue_instance_updatedAt_DESC

data_issue_parent_element_name_ASC

data_issue_parent_element_name_DESC

data_issue_parent_site_name_ASC

data_issue_parent_site_name_DESC

data_issue_root_element_name_ASC

data_issue_root_element_name_DESC

data_issue_root_site_name_ASC

data_issue_root_site_name_DESC

data_issue_site_name_ASC

data_issue_site_name_DESC

data_startDate_ASC

data_startDate_DESC

data_updatedAt_ASC

data_updatedAt_DESC

lastRunAt_ASC

lastRunAt_DESC

name_ASC

name_DESC

nextRunAt_ASC

nextRunAt_DESC

Example
"_id_ASC"

JobWhereInput

Description

Represents a Where input for: Job

Fields
Input FieldDescription
AND - [AndAgendaJobsWhereInput]
OR - [OrAgendaJobsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
data - MyCalendarWhereData
lastRunAt_eq - DateTimeField is equal to given value
lastRunAt_exists - BooleanField is set and exists
lastRunAt_gt - DateTimeField is greater than given value
lastRunAt_gte - DateTimeField is greater or equal than given value
lastRunAt_in - [DateTime]Given value includes field
lastRunAt_lt - DateTimeField is lower than given value
lastRunAt_lte - DateTimeField is lower or equal than given value
lastRunAt_ne - DateTimeField is not equal to given value
lastRunAt_nin - [DateTime]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
nextRunAt_eq - DateTimeField is equal to given value
nextRunAt_exists - BooleanField is set and exists
nextRunAt_gt - DateTimeField is greater than given value
nextRunAt_gte - DateTimeField is greater or equal than given value
nextRunAt_in - [DateTime]Given value includes field
nextRunAt_lt - DateTimeField is lower than given value
nextRunAt_lte - DateTimeField is lower or equal than given value
nextRunAt_ne - DateTimeField is not equal to given value
nextRunAt_nin - [DateTime]Given value does not includes field
Example
{
  "AND": [AndAgendaJobsWhereInput],
  "OR": [OrAgendaJobsWhereInput],
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "data": MyCalendarWhereData,
  "lastRunAt_eq": "2007-12-03T10:15:30Z",
  "lastRunAt_exists": true,
  "lastRunAt_gt": "2007-12-03T10:15:30Z",
  "lastRunAt_gte": "2007-12-03T10:15:30Z",
  "lastRunAt_in": ["2007-12-03T10:15:30Z"],
  "lastRunAt_lt": "2007-12-03T10:15:30Z",
  "lastRunAt_lte": "2007-12-03T10:15:30Z",
  "lastRunAt_ne": "2007-12-03T10:15:30Z",
  "lastRunAt_nin": ["2007-12-03T10:15:30Z"],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "nextRunAt_eq": "2007-12-03T10:15:30Z",
  "nextRunAt_exists": true,
  "nextRunAt_gt": "2007-12-03T10:15:30Z",
  "nextRunAt_gte": "2007-12-03T10:15:30Z",
  "nextRunAt_in": ["2007-12-03T10:15:30Z"],
  "nextRunAt_lt": "2007-12-03T10:15:30Z",
  "nextRunAt_lte": "2007-12-03T10:15:30Z",
  "nextRunAt_ne": "2007-12-03T10:15:30Z",
  "nextRunAt_nin": ["2007-12-03T10:15:30Z"]
}

JobWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

KeyValue

Fields
Input FieldDescription
key - String!
value - String!
Example
{
  "key": "abc123",
  "value": "abc123"
}

Label

Description

Represents a Label

Fields
Field NameDescription
_id - ID
context - LabelContext
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
icon - StringIcon for this Label sticker
labelValues - [LabelValue]
name - StringLabel name
order - IntOrder in wich the labels are organized
protected - Boolean
singleSelection - BooleanSingle label selection
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "Account",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "icon": "xyz789",
  "labelValues": [LabelValue],
  "name": "xyz789",
  "order": 123,
  "protected": false,
  "singleSelection": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

LabelContext

Values
Enum ValueDescription

Account

Action

Element

Issue

Material

Profile

Site

StateMachine

Task

Timesheet

Tool

Unit

Example
"Account"

LabelCreateInput

Description

Represents a LabelCreateInput

Fields
Input FieldDescription
context - LabelContext
icon - StringIcon for this Label sticker
name - StringLabel name
order - IntOrder in wich the labels are organized
singleSelection - BooleanSingle label selection
Example
{
  "context": "Account",
  "icon": "abc123",
  "name": "abc123",
  "order": 987,
  "singleSelection": false
}

LabelOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

icon_ASC

icon_DESC

name_ASC

name_DESC

order_ASC

order_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

LabelUpdateInput

Description

Represents a LabelUpdateInput

Fields
Input FieldDescription
context - LabelContext
icon - StringIcon for this Label sticker
name - StringLabel name
order - IntOrder in wich the labels are organized
singleSelection - BooleanSingle label selection
Example
{
  "context": "Account",
  "icon": "xyz789",
  "name": "xyz789",
  "order": 987,
  "singleSelection": true
}

LabelValue

Description

Represents a LabelValue

Fields
Field NameDescription
_id - ID
backgroundColor - StringBackground color for this Label sticker
color - StringText color for this Label sticker
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringOptional label value description
label - LabelLabel which this LabelValue belong to
labelId - IDLabel which this LabelValue belong to
order - IntOrder in wich the labels are organized
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
value - StringValue for this Label
Example
{
  "_id": "4",
  "backgroundColor": "xyz789",
  "color": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "label": Label,
  "labelId": 4,
  "order": 987,
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "value": "xyz789"
}

LabelValueCreateInput

Description

Represents a LabelValueCreateInput

Fields
Input FieldDescription
backgroundColor - StringBackground color for this Label sticker
color - StringText color for this Label sticker
description - StringOptional label value description
label - IDLabel which this LabelValue belong to
order - IntOrder in wich the labels are organized
value - StringValue for this Label
Example
{
  "backgroundColor": "abc123",
  "color": "abc123",
  "description": "xyz789",
  "label": "4",
  "order": 987,
  "value": "abc123"
}

LabelValueOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

backgroundColor_ASC

backgroundColor_DESC

color_ASC

color_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

order_ASC

order_DESC

updatedAt_ASC

updatedAt_DESC

value_ASC

value_DESC

Example
"_id_ASC"

LabelValueUpdateInput

Description

Represents a LabelValueUpdateInput

Fields
Input FieldDescription
backgroundColor - StringBackground color for this Label sticker
color - StringText color for this Label sticker
description - StringOptional label value description
label - IDLabel which this LabelValue belong to
order - IntOrder in wich the labels are organized
value - StringValue for this Label
Example
{
  "backgroundColor": "xyz789",
  "color": "xyz789",
  "description": "xyz789",
  "label": "4",
  "order": 987,
  "value": "xyz789"
}

LabelValueWhereInput

Description

Represents a Where input for: LabelValue

Fields
Input FieldDescription
OR - [OrLabelValuesWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
backgroundColor_contains - StringField contains given value, case-insensitive
backgroundColor_ends_with - StringField ends with given value, case-insensitive
backgroundColor_eq - StringField is equal to given value
backgroundColor_exists - BooleanField is set and exists
backgroundColor_in - [String]Given value includes field
backgroundColor_ne - StringField is not equal to given value
backgroundColor_nin - [String]Given value does not includes field
backgroundColor_not_contains - StringField does not contains given value, case-insensitive
backgroundColor_not_ends_with - StringField does not end with given value, case-insensitive
backgroundColor_not_starts_with - StringField does not start with given value, case-insensitive
backgroundColor_starts_with - StringField starts with given value, case-insensitive
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
label - LabelWhereInput
label_all - [ID]Given value includes all in array
label_eq - IDField is equal to given value
label_exists - BooleanField is set and exists
label_in - [ID]Given value includes field
label_ne - IDField is not equal to given value
label_nin - [ID]Given value does not include field
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "OR": [OrLabelValuesWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "backgroundColor_contains": "abc123",
  "backgroundColor_ends_with": "abc123",
  "backgroundColor_eq": "xyz789",
  "backgroundColor_exists": true,
  "backgroundColor_in": ["xyz789"],
  "backgroundColor_ne": "xyz789",
  "backgroundColor_nin": ["xyz789"],
  "backgroundColor_not_contains": "xyz789",
  "backgroundColor_not_ends_with": "abc123",
  "backgroundColor_not_starts_with": "abc123",
  "backgroundColor_starts_with": "abc123",
  "color_contains": "abc123",
  "color_ends_with": "abc123",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "label": LabelWhereInput,
  "label_all": [4],
  "label_eq": "4",
  "label_exists": true,
  "label_in": ["4"],
  "label_ne": 4,
  "label_nin": ["4"],
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [987],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 123,
  "order_nin": [987],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"],
  "value_contains": "abc123",
  "value_ends_with": "abc123",
  "value_eq": "abc123",
  "value_exists": false,
  "value_in": ["abc123"],
  "value_ne": "xyz789",
  "value_nin": ["xyz789"],
  "value_not_contains": "abc123",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "abc123",
  "value_starts_with": "xyz789"
}

LabelValueWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

LabelWhereInput

Description

Represents a Where input for: Label

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_eq - LabelContextField is equal to given value
context_exists - LabelContextField is set and exists
context_in - [LabelContext]Given value includes field
context_ne - LabelContextField is not equal to given value
context_nin - [LabelContext]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
singleSelection_eq - BooleanField is equal to given value
singleSelection_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "context_eq": "Account",
  "context_exists": "Account",
  "context_in": ["Account"],
  "context_ne": "Account",
  "context_nin": ["Account"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "icon_contains": "abc123",
  "icon_ends_with": "abc123",
  "icon_eq": "abc123",
  "icon_exists": false,
  "icon_in": ["xyz789"],
  "icon_ne": "xyz789",
  "icon_nin": ["xyz789"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "order_eq": 123,
  "order_exists": false,
  "order_gt": 987,
  "order_gte": 123,
  "order_in": [123],
  "order_lt": 123,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [123],
  "protected_eq": true,
  "protected_ne": false,
  "singleSelection_eq": false,
  "singleSelection_ne": true,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

LabelWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

LeanElement

Description

Represents a LeanElement

Fields
Field NameDescription
_id - ID
arLocked - BooleanIf this element is AR LOCKED
createdAt - DateTime
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedById - IDDeleted by user
description - StringElement description
hasChildren - Boolean
icon - StringElement Icon
imageDetails - LeanElementImageDetail
imageId - ID
labelValuesIds - [ID]
log - [LeanElementLog]
markerId - ID
name - String!Element name
parentId - IDElement Parent
parentsTreeIds - [ID]
profileId - ID
protected - Boolean
site - LeanParentSite
siteId - ID!
system - Boolean
tags - [LeanElementTag]
templateIcon - String
templateId - ID!
updatedAt - DateTime
updatedById - ID
Example
{
  "_id": 4,
  "arLocked": false,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedById": "4",
  "description": "xyz789",
  "hasChildren": true,
  "icon": "xyz789",
  "imageDetails": LeanElementImageDetail,
  "imageId": 4,
  "labelValuesIds": ["4"],
  "log": [LeanElementLog],
  "markerId": "4",
  "name": "abc123",
  "parentId": "4",
  "parentsTreeIds": [4],
  "profileId": "4",
  "protected": false,
  "site": LeanParentSite,
  "siteId": "4",
  "system": true,
  "tags": [LeanElementTag],
  "templateIcon": "xyz789",
  "templateId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedById": 4
}

LeanElementImageDetail

Description

Represents a LeanElementImageDetail

Fields
Field NameDescription
imageId - String
position - LeanElementImageDetailPosition
zoomLevel - Int
Example
{
  "imageId": "abc123",
  "position": LeanElementImageDetailPosition,
  "zoomLevel": 123
}

LeanElementImageDetailPosition

Description

Represents a LeanElementImageDetailPosition

Fields
Field NameDescription
x - Int
y - Int
Example
{"x": 123, "y": 987}

LeanElementLog

Description

Represents a LeanElementLog

Fields
Field NameDescription
action - String
byId - ID
createdAt - DateTime
field - String
status - LeanElementLogStatus
to - LeanElementLogTo
type - String
Example
{
  "action": "xyz789",
  "byId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "field": "abc123",
  "status": "approved",
  "to": LeanElementLogTo,
  "type": "xyz789"
}

LeanElementLogStatus

Values
Enum ValueDescription

approved

pending

rejected

reverted

Example
"approved"

LeanElementLogTo

Description

Represents a LeanElementLogTo

Fields
Field NameDescription
labelValuesIds - [ID]
tags - [LeanElementLogToTag]
value - String
Example
{
  "labelValuesIds": ["4"],
  "tags": [LeanElementLogToTag],
  "value": "xyz789"
}

LeanElementLogToTag

Description

Represents a LeanElementLogToTag

Fields
Field NameDescription
_id - ID
deviceId - ID
key - String
name - String!
unitId - ID
value - String
Example
{
  "_id": "4",
  "deviceId": "4",
  "key": "xyz789",
  "name": "abc123",
  "unitId": "4",
  "value": "xyz789"
}

LeanElementTag

Description

Represents a LeanElementTag

Fields
Field NameDescription
_id - ID
deviceId - ID
key - String
name - String!
unitId - ID
value - String
Example
{
  "_id": "4",
  "deviceId": "4",
  "key": "abc123",
  "name": "abc123",
  "unitId": "4",
  "value": "abc123"
}

LeanParentSite

Fields
Field NameDescription
_id - ID
isRoot - Boolean
name - String
parentsTreeIds - [ID]
Example
{
  "_id": 4,
  "isRoot": true,
  "name": "xyz789",
  "parentsTreeIds": [4]
}

LeanProfile

Description

Represents a LeanProfile

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedById - IDDeleted by user
description - StringProfile description
elementsCount - Int
folderId - IDProfile Folder
labelValuesIds - [ID]
name - String!Profile name
parentId - IDProfile Parent
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
templateId - ID!
updatedAt - DateTime
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedById": "4",
  "description": "xyz789",
  "elementsCount": 123,
  "folderId": 4,
  "labelValuesIds": ["4"],
  "name": "xyz789",
  "parentId": "4",
  "parentsTreeIds": [4],
  "protected": false,
  "system": true,
  "templateId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedById": 4
}

LeanSite

Description

Represents a LeanSite

Fields
Field NameDescription
_id - ID
coordinates - [Float!]!
createdAt - DateTime
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedById - IDDeleted by user
description - String
devicesCount - Int
hasChildren - Boolean
hasElements - Boolean
hasSites - Boolean
isRoot - Boolean
labelValuesIds - [ID]
log - [LeanSiteLog]
name - String!
parentId - IDSite Parent
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
templateIcon - String
templateId - ID!
updatedAt - DateTime
updatedById - ID
Example
{
  "_id": 4,
  "coordinates": [987.65],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedById": "4",
  "description": "xyz789",
  "devicesCount": 123,
  "hasChildren": false,
  "hasElements": false,
  "hasSites": false,
  "isRoot": false,
  "labelValuesIds": [4],
  "log": [LeanSiteLog],
  "name": "abc123",
  "parentId": 4,
  "parentsTreeIds": ["4"],
  "protected": true,
  "system": false,
  "templateIcon": "xyz789",
  "templateId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedById": 4
}

LeanSiteLog

Description

Represents a LeanSiteLog

Fields
Field NameDescription
action - String
byId - ID
createdAt - DateTime
field - String
status - LeanSiteLogStatus
to - LeanSiteLogTo
type - String
Example
{
  "action": "abc123",
  "byId": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "field": "xyz789",
  "status": "approved",
  "to": LeanSiteLogTo,
  "type": "xyz789"
}

LeanSiteLogStatus

Values
Enum ValueDescription

approved

pending

rejected

reverted

Example
"approved"

LeanSiteLogTo

Description

Represents a LeanSiteLogTo

Fields
Field NameDescription
labelValuesIds - [ID]
value - String
Example
{"labelValuesIds": [4], "value": "xyz789"}

LeanTenantConfigArCore

Description

Represents a LeanTenantConfigArCore

Fields
Field NameDescription
audience - String!
clientEmail - String!
privateKey - String!
privateKeyId - String!
Example
{
  "audience": "xyz789",
  "clientEmail": "abc123",
  "privateKey": "abc123",
  "privateKeyId": "abc123"
}

Location

Description

Represents a Location

Fields
Field NameDescription
_id - ID
address - LocationAddress
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringMaterial description
protected - Boolean
storage - Storage
storageId - ID
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "address": LocationAddress,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "protected": true,
  "storage": Storage,
  "storageId": 4,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

LocationAddress

Description

Represents a LocationAddress

Fields
Field NameDescription
element - Element
elementId - ID
site - Site
siteId - ID
street - String
type - LocationAddressType!
Example
{
  "element": Element,
  "elementId": "4",
  "site": Site,
  "siteId": 4,
  "street": "abc123",
  "type": "Element"
}

LocationAddressCreateInput

Description

Represents a LocationAddressCreateInput

Fields
Input FieldDescription
element - ID
site - ID
street - String
type - LocationAddressType!
Example
{
  "element": 4,
  "site": 4,
  "street": "xyz789",
  "type": "Element"
}

LocationAddressType

Values
Enum ValueDescription

Element

Site

Street

Example
"Element"

LocationAddressUpdateInput

Description

Represents a LocationAddressUpdateInput

Fields
Input FieldDescription
element - ID
site - ID
street - String
type - LocationAddressType
Example
{
  "element": 4,
  "site": 4,
  "street": "xyz789",
  "type": "Element"
}

LocationAddressWhereInput

Description

Represents a Where input for: LocationAddress

Fields
Input FieldDescription
element - ElementWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
site - SiteWhereInput
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
street_contains - StringField contains given value, case-insensitive
street_ends_with - StringField ends with given value, case-insensitive
street_eq - StringField is equal to given value
street_exists - BooleanField is set and exists
street_in - [String]Given value includes field
street_ne - StringField is not equal to given value
street_nin - [String]Given value does not includes field
street_not_contains - StringField does not contains given value, case-insensitive
street_not_ends_with - StringField does not end with given value, case-insensitive
street_not_starts_with - StringField does not start with given value, case-insensitive
street_starts_with - StringField starts with given value, case-insensitive
type_eq - LocationAddressTypeField is equal to given value
type_exists - LocationAddressTypeField is set and exists
type_in - [LocationAddressType]Given value includes field
type_ne - LocationAddressTypeField is not equal to given value
type_nin - [LocationAddressType]Given value does not includes field
Example
{
  "element": ElementWhereInput,
  "element_all": [4],
  "element_eq": 4,
  "element_exists": false,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": ["4"],
  "site": SiteWhereInput,
  "site_all": [4],
  "site_eq": "4",
  "site_exists": false,
  "site_in": ["4"],
  "site_ne": "4",
  "site_nin": [4],
  "street_contains": "abc123",
  "street_ends_with": "abc123",
  "street_eq": "abc123",
  "street_exists": false,
  "street_in": ["xyz789"],
  "street_ne": "abc123",
  "street_nin": ["abc123"],
  "street_not_contains": "xyz789",
  "street_not_ends_with": "abc123",
  "street_not_starts_with": "xyz789",
  "street_starts_with": "abc123",
  "type_eq": "Element",
  "type_exists": "Element",
  "type_in": ["Element"],
  "type_ne": "Element",
  "type_nin": ["Element"]
}

LocationCreateInput

Description

Represents a LocationCreateInput

Fields
Input FieldDescription
address - LocationAddressCreateInput
description - StringMaterial description
storage - ID
Example
{
  "address": LocationAddressCreateInput,
  "description": "abc123",
  "storage": "4"
}

LocationOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

address_street_ASC

address_street_DESC

address_type_ASC

address_type_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

LocationUpdateInput

Description

Represents a LocationUpdateInput

Fields
Input FieldDescription
address - LocationAddressUpdateInput
description - StringMaterial description
storage - ID
Example
{
  "address": LocationAddressUpdateInput,
  "description": "abc123",
  "storage": 4
}

LocationWhereInput

Description

Represents a Where input for: Location

Fields
Input FieldDescription
AND - [AndLocationAddressWhereInput]
OR - [OrLocationAddressWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
address - LocationAddressWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
storage - StorageWhereInput
storage_all - [ID]Given value includes all in array
storage_eq - IDField is equal to given value
storage_exists - BooleanField is set and exists
storage_in - [ID]Given value includes field
storage_ne - IDField is not equal to given value
storage_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndLocationAddressWhereInput],
  "OR": [OrLocationAddressWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "address": LocationAddressWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": false,
  "storage": StorageWhereInput,
  "storage_all": [4],
  "storage_eq": 4,
  "storage_exists": false,
  "storage_in": [4],
  "storage_ne": "4",
  "storage_nin": [4],
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

LocationWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

MarkAllReadTypeEnum

Values
Enum ValueDescription

action

issue

Example
"action"

Marker

Description

Represents a Marker

Fields
Field NameDescription
_id - ID
anchorId - StringMarker anchor Id
anchorImage - AnchorImage
anchorImageId - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringMarker short description
element - Element
position - [Float!]!Marker Position Coordinates
protected - Boolean
rotation - [Float!]!Marker Orientation Coordinates
scale - [Float!]!Marker Scale Coordinates
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "anchorId": "abc123",
  "anchorImage": AnchorImage,
  "anchorImageId": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "element": Element,
  "position": [987.65],
  "protected": false,
  "rotation": [123.45],
  "scale": [987.65],
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

MarkerCreateInput

Description

Represents a MarkerCreateInput

Fields
Input FieldDescription
anchorId - StringMarker anchor Id
anchorImage - ID
description - StringMarker short description
element - ID
position - [Float!]!Marker Position Coordinates
rotation - [Float!]!Marker Orientation Coordinates
scale - [Float!]!Marker Scale Coordinates
Example
{
  "anchorId": "abc123",
  "anchorImage": "4",
  "description": "abc123",
  "element": "4",
  "position": [123.45],
  "rotation": [123.45],
  "scale": [987.65]
}

MarkerOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

anchorId_ASC

anchorId_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

MarkerUpdateInput

Description

Represents a MarkerUpdateInput

Fields
Input FieldDescription
anchorId - StringMarker anchor Id
anchorImage - ID
description - StringMarker short description
element - ID
position - [Float]Marker Position Coordinates
rotation - [Float]Marker Orientation Coordinates
scale - [Float]Marker Scale Coordinates
Example
{
  "anchorId": "xyz789",
  "anchorImage": 4,
  "description": "abc123",
  "element": "4",
  "position": [123.45],
  "rotation": [987.65],
  "scale": [987.65]
}

MarkerWhereInput

Description

Represents a Where input for: Marker

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
anchorId_contains - StringField contains given value, case-insensitive
anchorId_ends_with - StringField ends with given value, case-insensitive
anchorId_eq - StringField is equal to given value
anchorId_exists - BooleanField is set and exists
anchorId_in - [String]Given value includes field
anchorId_ne - StringField is not equal to given value
anchorId_nin - [String]Given value does not includes field
anchorId_not_contains - StringField does not contains given value, case-insensitive
anchorId_not_ends_with - StringField does not end with given value, case-insensitive
anchorId_not_starts_with - StringField does not start with given value, case-insensitive
anchorId_starts_with - StringField starts with given value, case-insensitive
anchorImage_all - [ID]Given value includes all in array
anchorImage_eq - IDField is equal to given value
anchorImage_exists - BooleanField is set and exists
anchorImage_in - [ID]Given value includes field
anchorImage_ne - IDField is not equal to given value
anchorImage_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
position_all - [Int]Field includes all given values.
position_eq - [Int]Given value is equal to field
position_exists - Boolean
position_in - [Int]Field includes one of given value.
position_nin - [Int]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
rotation_all - [Int]Field includes all given values.
rotation_eq - [Int]Given value is equal to field
rotation_exists - Boolean
rotation_in - [Int]Field includes one of given value.
rotation_nin - [Int]Field does not include any of the given values.
scale_all - [Int]Field includes all given values.
scale_eq - [Int]Given value is equal to field
scale_exists - Boolean
scale_in - [Int]Field includes one of given value.
scale_nin - [Int]Field does not include any of the given values.
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "anchorId_contains": "abc123",
  "anchorId_ends_with": "abc123",
  "anchorId_eq": "xyz789",
  "anchorId_exists": true,
  "anchorId_in": ["abc123"],
  "anchorId_ne": "abc123",
  "anchorId_nin": ["xyz789"],
  "anchorId_not_contains": "xyz789",
  "anchorId_not_ends_with": "abc123",
  "anchorId_not_starts_with": "xyz789",
  "anchorId_starts_with": "abc123",
  "anchorImage_all": [4],
  "anchorImage_eq": 4,
  "anchorImage_exists": true,
  "anchorImage_in": [4],
  "anchorImage_ne": 4,
  "anchorImage_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "position_all": [987],
  "position_eq": [123],
  "position_exists": false,
  "position_in": [123],
  "position_nin": [987],
  "protected_eq": true,
  "protected_ne": false,
  "rotation_all": [987],
  "rotation_eq": [987],
  "rotation_exists": true,
  "rotation_in": [987],
  "rotation_nin": [123],
  "scale_all": [987],
  "scale_eq": [123],
  "scale_exists": false,
  "scale_in": [987],
  "scale_nin": [123],
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

MarkerWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Material

Description

Represents a Material

Fields
Field NameDescription
_id - ID
brand - StringMaterial Brand
brandModel - StringMaterial Brand
code - String!Material code
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringMaterial description
dimension - MaterialDimension
images - [File]
imagesIds - [ID]
iva - FloatPrice with iva of a unit of material
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!Material name
price - FloatPrice of a unit of material
protected - Boolean
quantity - FloatMaterial quantity
sellingPrice - FloatSelling price without iva of a unit of material
stockPerStorage - [MaterialStockPerStorage]
system - Boolean
totalStock - Int
type - MaterialType
unit - UnitMaterial unit
unitId - IDMaterial unit
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "brand": "abc123",
  "brandModel": "abc123",
  "code": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "dimension": MaterialDimension,
  "images": [File],
  "imagesIds": [4],
  "iva": 987.65,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "abc123",
  "price": 123.45,
  "protected": false,
  "quantity": 987.65,
  "sellingPrice": 123.45,
  "stockPerStorage": [MaterialStockPerStorage],
  "system": false,
  "totalStock": 987,
  "type": "SERIALIZED",
  "unit": Unit,
  "unitId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

MaterialCreateInput

Description

Represents a MaterialCreateInput

Fields
Input FieldDescription
brand - StringMaterial Brand
brandModel - StringMaterial Brand
code - String!Material code
description - StringMaterial description
dimension - MaterialDimensionCreateInput
images - [ID]
iva - FloatPrice with iva of a unit of material
labelValues - [ID]
name - String!Material name
price - FloatPrice of a unit of material
quantity - FloatMaterial quantity
sellingPrice - FloatSelling price without iva of a unit of material
type - MaterialType
unit - IDMaterial unit
Example
{
  "brand": "xyz789",
  "brandModel": "xyz789",
  "code": "xyz789",
  "description": "abc123",
  "dimension": MaterialDimensionCreateInput,
  "images": [4],
  "iva": 987.65,
  "labelValues": [4],
  "name": "abc123",
  "price": 987.65,
  "quantity": 123.45,
  "sellingPrice": 987.65,
  "type": "SERIALIZED",
  "unit": "4"
}

MaterialDimension

Description

Represents a MaterialDimension

Fields
Field NameDescription
height - Float
lenght - Float
unit - String
width - Float
Example
{
  "height": 987.65,
  "lenght": 123.45,
  "unit": "xyz789",
  "width": 987.65
}

MaterialDimensionCreateInput

Description

Represents a MaterialDimensionCreateInput

Fields
Input FieldDescription
height - Float
lenght - Float
unit - String
width - Float
Example
{
  "height": 987.65,
  "lenght": 987.65,
  "unit": "xyz789",
  "width": 987.65
}

MaterialDimensionUpdateInput

Description

Represents a MaterialDimensionUpdateInput

Fields
Input FieldDescription
height - Float
lenght - Float
unit - String
width - Float
Example
{
  "height": 123.45,
  "lenght": 987.65,
  "unit": "abc123",
  "width": 987.65
}

MaterialDimensionWhereInput

Description

Represents a Where input for: MaterialDimension

Fields
Input FieldDescription
height_eq - FloatField is equal to given value
height_exists - BooleanField is set and exists
height_gt - FloatField is greater than given value
height_gte - FloatField is greater or equal than given value
height_in - [Float]Given value includes field
height_lt - FloatField is lower than given value
height_lte - FloatField is lower or equal than given value
height_ne - FloatField is not equal to given value
height_nin - [Float]Given value does not includes field
lenght_eq - FloatField is equal to given value
lenght_exists - BooleanField is set and exists
lenght_gt - FloatField is greater than given value
lenght_gte - FloatField is greater or equal than given value
lenght_in - [Float]Given value includes field
lenght_lt - FloatField is lower than given value
lenght_lte - FloatField is lower or equal than given value
lenght_ne - FloatField is not equal to given value
lenght_nin - [Float]Given value does not includes field
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
width_eq - FloatField is equal to given value
width_exists - BooleanField is set and exists
width_gt - FloatField is greater than given value
width_gte - FloatField is greater or equal than given value
width_in - [Float]Given value includes field
width_lt - FloatField is lower than given value
width_lte - FloatField is lower or equal than given value
width_ne - FloatField is not equal to given value
width_nin - [Float]Given value does not includes field
Example
{
  "height_eq": 123.45,
  "height_exists": true,
  "height_gt": 123.45,
  "height_gte": 987.65,
  "height_in": [123.45],
  "height_lt": 987.65,
  "height_lte": 987.65,
  "height_ne": 123.45,
  "height_nin": [123.45],
  "lenght_eq": 987.65,
  "lenght_exists": true,
  "lenght_gt": 123.45,
  "lenght_gte": 987.65,
  "lenght_in": [987.65],
  "lenght_lt": 123.45,
  "lenght_lte": 123.45,
  "lenght_ne": 987.65,
  "lenght_nin": [123.45],
  "unit_contains": "abc123",
  "unit_ends_with": "xyz789",
  "unit_eq": "xyz789",
  "unit_exists": false,
  "unit_in": ["xyz789"],
  "unit_ne": "xyz789",
  "unit_nin": ["abc123"],
  "unit_not_contains": "abc123",
  "unit_not_ends_with": "abc123",
  "unit_not_starts_with": "abc123",
  "unit_starts_with": "abc123",
  "width_eq": 987.65,
  "width_exists": false,
  "width_gt": 987.65,
  "width_gte": 123.45,
  "width_in": [987.65],
  "width_lt": 123.45,
  "width_lte": 123.45,
  "width_ne": 987.65,
  "width_nin": [123.45]
}

MaterialInput

Fields
Input FieldDescription
amount - Float!
brand - String
description - String
dimensionUnit - String
height - Int
labelName - String
length - Int
materialId - String!
materialType - String!
model - String
name - String!
unit - String!
width - Int
Example
{
  "amount": 987.65,
  "brand": "xyz789",
  "description": "abc123",
  "dimensionUnit": "abc123",
  "height": 123,
  "labelName": "abc123",
  "length": 123,
  "materialId": "xyz789",
  "materialType": "abc123",
  "model": "xyz789",
  "name": "abc123",
  "unit": "abc123",
  "width": 123
}

MaterialItem

Description

Represents a MaterialItem

Fields
Field NameDescription
_id - ID
buyOrder - String
code - String
createdAt - DateTime
createdBy - Account
createdById - ID
customFields - [MaterialItemCustomField]
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringMaterial Item description
expirationDate - DateTime
expirationDateType - String
hiddenFields - [String]
location - Location
locationId - ID
material - Material
materialId - ID
protected - Boolean
quantity - Float
serialNumber - String
state - String
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "buyOrder": "abc123",
  "code": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "customFields": [MaterialItemCustomField],
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "expirationDate": "2007-12-03T10:15:30Z",
  "expirationDateType": "abc123",
  "hiddenFields": ["abc123"],
  "location": Location,
  "locationId": "4",
  "material": Material,
  "materialId": "4",
  "protected": false,
  "quantity": 987.65,
  "serialNumber": "abc123",
  "state": "xyz789",
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

MaterialItemCreateInput

Description

Represents a MaterialItemCreateInput

Fields
Input FieldDescription
buyOrder - String
code - String
customFields - [MaterialItemCustomFieldCreateInput]
description - StringMaterial Item description
expirationDate - DateTime
expirationDateType - String
hiddenFields - [String]
location - ID
material - ID
quantity - Float
serialNumber - String
state - String
Example
{
  "buyOrder": "xyz789",
  "code": "abc123",
  "customFields": [MaterialItemCustomFieldCreateInput],
  "description": "abc123",
  "expirationDate": "2007-12-03T10:15:30Z",
  "expirationDateType": "abc123",
  "hiddenFields": ["abc123"],
  "location": 4,
  "material": 4,
  "quantity": 123.45,
  "serialNumber": "xyz789",
  "state": "xyz789"
}

MaterialItemCustomField

Description

Represents a MaterialItemCustomField

Fields
Field NameDescription
datetime - DateTime
name - String!
number - Float
string - String
type - String!
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "number": 123.45,
  "string": "abc123",
  "type": "xyz789"
}

MaterialItemCustomFieldCreateInput

Description

Represents a MaterialItemCustomFieldCreateInput

Fields
Input FieldDescription
datetime - DateTime
name - String!
number - Float
string - String
type - String!
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "number": 987.65,
  "string": "abc123",
  "type": "abc123"
}

MaterialItemCustomFieldUpdateInput

Description

Represents a MaterialItemCustomFieldUpdateInput

Fields
Input FieldDescription
datetime - DateTime
name - String
number - Float
string - String
type - String
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "number": 987.65,
  "string": "abc123",
  "type": "xyz789"
}

MaterialItemCustomFieldWhereInput

Description

Represents a Where input for: MaterialItemCustomField

Fields
Input FieldDescription
datetime_eq - DateTimeField is equal to given value
datetime_exists - BooleanField is set and exists
datetime_gt - DateTimeField is greater than given value
datetime_gte - DateTimeField is greater or equal than given value
datetime_in - [DateTime]Given value includes field
datetime_lt - DateTimeField is lower than given value
datetime_lte - DateTimeField is lower or equal than given value
datetime_ne - DateTimeField is not equal to given value
datetime_nin - [DateTime]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
number_eq - FloatField is equal to given value
number_exists - BooleanField is set and exists
number_gt - FloatField is greater than given value
number_gte - FloatField is greater or equal than given value
number_in - [Float]Given value includes field
number_lt - FloatField is lower than given value
number_lte - FloatField is lower or equal than given value
number_ne - FloatField is not equal to given value
number_nin - [Float]Given value does not includes field
string_contains - StringField contains given value, case-insensitive
string_ends_with - StringField ends with given value, case-insensitive
string_eq - StringField is equal to given value
string_exists - BooleanField is set and exists
string_in - [String]Given value includes field
string_ne - StringField is not equal to given value
string_nin - [String]Given value does not includes field
string_not_contains - StringField does not contains given value, case-insensitive
string_not_ends_with - StringField does not end with given value, case-insensitive
string_not_starts_with - StringField does not start with given value, case-insensitive
string_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "datetime_eq": "2007-12-03T10:15:30Z",
  "datetime_exists": true,
  "datetime_gt": "2007-12-03T10:15:30Z",
  "datetime_gte": "2007-12-03T10:15:30Z",
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_lt": "2007-12-03T10:15:30Z",
  "datetime_lte": "2007-12-03T10:15:30Z",
  "datetime_ne": "2007-12-03T10:15:30Z",
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "number_eq": 987.65,
  "number_exists": false,
  "number_gt": 987.65,
  "number_gte": 123.45,
  "number_in": [123.45],
  "number_lt": 987.65,
  "number_lte": 123.45,
  "number_ne": 123.45,
  "number_nin": [123.45],
  "string_contains": "abc123",
  "string_ends_with": "abc123",
  "string_eq": "xyz789",
  "string_exists": true,
  "string_in": ["xyz789"],
  "string_ne": "abc123",
  "string_nin": ["xyz789"],
  "string_not_contains": "xyz789",
  "string_not_ends_with": "abc123",
  "string_not_starts_with": "xyz789",
  "string_starts_with": "xyz789",
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "abc123",
  "type_exists": true,
  "type_in": ["xyz789"],
  "type_ne": "xyz789",
  "type_nin": ["abc123"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "abc123",
  "type_starts_with": "abc123"
}

MaterialItemOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

buyOrder_ASC

buyOrder_DESC

code_ASC

code_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

expirationDateType_ASC

expirationDateType_DESC

expirationDate_ASC

expirationDate_DESC

name_ASC

name_DESC

quantity_ASC

quantity_DESC

serialNumber_ASC

serialNumber_DESC

state_ASC

state_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

MaterialItemUpdateInput

Description

Represents a MaterialItemUpdateInput

Fields
Input FieldDescription
buyOrder - String
code - String
customFields - [MaterialItemCustomFieldUpdateInput]
description - StringMaterial Item description
expirationDate - DateTime
expirationDateType - String
hiddenFields - [String]
location - ID
material - ID
quantity - Float
serialNumber - String
state - String
Example
{
  "buyOrder": "abc123",
  "code": "xyz789",
  "customFields": [MaterialItemCustomFieldUpdateInput],
  "description": "abc123",
  "expirationDate": "2007-12-03T10:15:30Z",
  "expirationDateType": "abc123",
  "hiddenFields": ["abc123"],
  "location": 4,
  "material": "4",
  "quantity": 123.45,
  "serialNumber": "xyz789",
  "state": "xyz789"
}

MaterialItemWhereInput

Description

Represents a Where input for: MaterialItem

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
buyOrder_contains - StringField contains given value, case-insensitive
buyOrder_ends_with - StringField ends with given value, case-insensitive
buyOrder_eq - StringField is equal to given value
buyOrder_exists - BooleanField is set and exists
buyOrder_in - [String]Given value includes field
buyOrder_ne - StringField is not equal to given value
buyOrder_nin - [String]Given value does not includes field
buyOrder_not_contains - StringField does not contains given value, case-insensitive
buyOrder_not_ends_with - StringField does not end with given value, case-insensitive
buyOrder_not_starts_with - StringField does not start with given value, case-insensitive
buyOrder_starts_with - StringField starts with given value, case-insensitive
code_contains - StringField contains given value, case-insensitive
code_ends_with - StringField ends with given value, case-insensitive
code_eq - StringField is equal to given value
code_exists - BooleanField is set and exists
code_in - [String]Given value includes field
code_ne - StringField is not equal to given value
code_nin - [String]Given value does not includes field
code_not_contains - StringField does not contains given value, case-insensitive
code_not_ends_with - StringField does not end with given value, case-insensitive
code_not_starts_with - StringField does not start with given value, case-insensitive
code_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
customFields_every - MaterialItemCustomFieldWhereInput
customFields_exists - Boolean
customFields_none - MaterialItemCustomFieldWhereInput
customFields_some - MaterialItemCustomFieldWhereInput
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
expirationDateType_contains - StringField contains given value, case-insensitive
expirationDateType_ends_with - StringField ends with given value, case-insensitive
expirationDateType_eq - StringField is equal to given value
expirationDateType_exists - BooleanField is set and exists
expirationDateType_in - [String]Given value includes field
expirationDateType_ne - StringField is not equal to given value
expirationDateType_nin - [String]Given value does not includes field
expirationDateType_not_contains - StringField does not contains given value, case-insensitive
expirationDateType_not_ends_with - StringField does not end with given value, case-insensitive
expirationDateType_not_starts_with - StringField does not start with given value, case-insensitive
expirationDateType_starts_with - StringField starts with given value, case-insensitive
expirationDate_eq - DateTimeField is equal to given value
expirationDate_exists - BooleanField is set and exists
expirationDate_gt - DateTimeField is greater than given value
expirationDate_gte - DateTimeField is greater or equal than given value
expirationDate_in - [DateTime]Given value includes field
expirationDate_lt - DateTimeField is lower than given value
expirationDate_lte - DateTimeField is lower or equal than given value
expirationDate_ne - DateTimeField is not equal to given value
expirationDate_nin - [DateTime]Given value does not includes field
hiddenFields_all - [String]Field includes all given values.
hiddenFields_eq - [String]Given value is equal to field
hiddenFields_exists - Boolean
hiddenFields_in - [String]Field includes one of given value.
hiddenFields_nin - [String]Field does not include any of the given values.
location - LocationWhereInput
location_all - [ID]Given value includes all in array
location_eq - IDField is equal to given value
location_exists - BooleanField is set and exists
location_in - [ID]Given value includes field
location_ne - IDField is not equal to given value
location_nin - [ID]Given value does not include field
material_all - [ID]Given value includes all in array
material_eq - IDField is equal to given value
material_exists - BooleanField is set and exists
material_in - [ID]Given value includes field
material_ne - IDField is not equal to given value
material_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
quantity_eq - FloatField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - FloatField is greater than given value
quantity_gte - FloatField is greater or equal than given value
quantity_in - [Float]Given value includes field
quantity_lt - FloatField is lower than given value
quantity_lte - FloatField is lower or equal than given value
quantity_ne - FloatField is not equal to given value
quantity_nin - [Float]Given value does not includes field
serialNumber_contains - StringField contains given value, case-insensitive
serialNumber_ends_with - StringField ends with given value, case-insensitive
serialNumber_eq - StringField is equal to given value
serialNumber_exists - BooleanField is set and exists
serialNumber_in - [String]Given value includes field
serialNumber_ne - StringField is not equal to given value
serialNumber_nin - [String]Given value does not includes field
serialNumber_not_contains - StringField does not contains given value, case-insensitive
serialNumber_not_ends_with - StringField does not end with given value, case-insensitive
serialNumber_not_starts_with - StringField does not start with given value, case-insensitive
serialNumber_starts_with - StringField starts with given value, case-insensitive
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "buyOrder_contains": "xyz789",
  "buyOrder_ends_with": "abc123",
  "buyOrder_eq": "xyz789",
  "buyOrder_exists": false,
  "buyOrder_in": ["abc123"],
  "buyOrder_ne": "abc123",
  "buyOrder_nin": ["abc123"],
  "buyOrder_not_contains": "xyz789",
  "buyOrder_not_ends_with": "xyz789",
  "buyOrder_not_starts_with": "abc123",
  "buyOrder_starts_with": "abc123",
  "code_contains": "xyz789",
  "code_ends_with": "abc123",
  "code_eq": "xyz789",
  "code_exists": true,
  "code_in": ["xyz789"],
  "code_ne": "abc123",
  "code_nin": ["xyz789"],
  "code_not_contains": "abc123",
  "code_not_ends_with": "abc123",
  "code_not_starts_with": "xyz789",
  "code_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "customFields_every": MaterialItemCustomFieldWhereInput,
  "customFields_exists": false,
  "customFields_none": MaterialItemCustomFieldWhereInput,
  "customFields_some": MaterialItemCustomFieldWhereInput,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "expirationDateType_contains": "xyz789",
  "expirationDateType_ends_with": "xyz789",
  "expirationDateType_eq": "xyz789",
  "expirationDateType_exists": true,
  "expirationDateType_in": ["abc123"],
  "expirationDateType_ne": "abc123",
  "expirationDateType_nin": ["xyz789"],
  "expirationDateType_not_contains": "xyz789",
  "expirationDateType_not_ends_with": "abc123",
  "expirationDateType_not_starts_with": "abc123",
  "expirationDateType_starts_with": "xyz789",
  "expirationDate_eq": "2007-12-03T10:15:30Z",
  "expirationDate_exists": false,
  "expirationDate_gt": "2007-12-03T10:15:30Z",
  "expirationDate_gte": "2007-12-03T10:15:30Z",
  "expirationDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "expirationDate_lt": "2007-12-03T10:15:30Z",
  "expirationDate_lte": "2007-12-03T10:15:30Z",
  "expirationDate_ne": "2007-12-03T10:15:30Z",
  "expirationDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "hiddenFields_all": ["xyz789"],
  "hiddenFields_eq": ["abc123"],
  "hiddenFields_exists": false,
  "hiddenFields_in": ["xyz789"],
  "hiddenFields_nin": ["abc123"],
  "location": LocationWhereInput,
  "location_all": ["4"],
  "location_eq": 4,
  "location_exists": true,
  "location_in": [4],
  "location_ne": 4,
  "location_nin": [4],
  "material_all": [4],
  "material_eq": "4",
  "material_exists": false,
  "material_in": [4],
  "material_ne": 4,
  "material_nin": [4],
  "protected_eq": true,
  "protected_ne": false,
  "quantity_eq": 987.65,
  "quantity_exists": false,
  "quantity_gt": 123.45,
  "quantity_gte": 987.65,
  "quantity_in": [123.45],
  "quantity_lt": 123.45,
  "quantity_lte": 123.45,
  "quantity_ne": 987.65,
  "quantity_nin": [123.45],
  "serialNumber_contains": "abc123",
  "serialNumber_ends_with": "xyz789",
  "serialNumber_eq": "xyz789",
  "serialNumber_exists": false,
  "serialNumber_in": ["xyz789"],
  "serialNumber_ne": "abc123",
  "serialNumber_nin": ["abc123"],
  "serialNumber_not_contains": "xyz789",
  "serialNumber_not_ends_with": "xyz789",
  "serialNumber_not_starts_with": "abc123",
  "serialNumber_starts_with": "abc123",
  "state_contains": "xyz789",
  "state_ends_with": "abc123",
  "state_eq": "abc123",
  "state_exists": true,
  "state_in": ["xyz789"],
  "state_ne": "xyz789",
  "state_nin": ["abc123"],
  "state_not_contains": "xyz789",
  "state_not_ends_with": "xyz789",
  "state_not_starts_with": "abc123",
  "state_starts_with": "abc123",
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

MaterialItemWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

MaterialOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

brandModel_ASC

brandModel_DESC

brand_ASC

brand_DESC

code_ASC

code_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

dimension_height_ASC

dimension_height_DESC

dimension_lenght_ASC

dimension_lenght_DESC

dimension_unit_ASC

dimension_unit_DESC

dimension_width_ASC

dimension_width_DESC

iva_ASC

iva_DESC

name_ASC

name_DESC

price_ASC

price_DESC

quantity_ASC

quantity_DESC

sellingPrice_ASC

sellingPrice_DESC

totalStock_ASC

totalStock_DESC

type_ASC

type_DESC

unit_name_ASC

unit_name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

MaterialStockPerStorage

Fields
Field NameDescription
name - String
stock - Int
Example
{"name": "abc123", "stock": 987}

MaterialType

Values
Enum ValueDescription

SERIALIZED

STOCKED

Example
"SERIALIZED"

MaterialUpdateInput

Description

Represents a MaterialUpdateInput

Fields
Input FieldDescription
brand - StringMaterial Brand
brandModel - StringMaterial Brand
code - StringMaterial code
description - StringMaterial description
dimension - MaterialDimensionUpdateInput
images - [ID]
iva - FloatPrice with iva of a unit of material
labelValues - [ID]
name - StringMaterial name
price - FloatPrice of a unit of material
quantity - FloatMaterial quantity
sellingPrice - FloatSelling price without iva of a unit of material
type - MaterialType
unit - IDMaterial unit
Example
{
  "brand": "xyz789",
  "brandModel": "abc123",
  "code": "abc123",
  "description": "xyz789",
  "dimension": MaterialDimensionUpdateInput,
  "images": ["4"],
  "iva": 987.65,
  "labelValues": ["4"],
  "name": "xyz789",
  "price": 987.65,
  "quantity": 123.45,
  "sellingPrice": 987.65,
  "type": "SERIALIZED",
  "unit": 4
}

MaterialUsage

Fields
Field NameDescription
ID - String
group - String
quantity - Int
task - String
taskVariant - String
template - String
templateVariant - String
Example
{
  "ID": "abc123",
  "group": "abc123",
  "quantity": 987,
  "task": "abc123",
  "taskVariant": "xyz789",
  "template": "xyz789",
  "templateVariant": "xyz789"
}

MaterialUsageFilters

Fields
Input FieldDescription
ID_in - [String]
group_in - [ID]
search - String
taskVariant_in - [ID]
task_in - [ID]
templateVariant_in - [ID]
template_in - [ID]
Example
{
  "ID_in": ["abc123"],
  "group_in": [4],
  "search": "xyz789",
  "taskVariant_in": ["4"],
  "task_in": [4],
  "templateVariant_in": ["4"],
  "template_in": ["4"]
}

MaterialUsageOrderByEnum

Values
Enum ValueDescription

ID_ASC

ID_DESC

group_ASC

group_DESC

taskVariant_ASC

taskVariant_DESC

task_ASC

task_DESC

templateVariant_ASC

templateVariant_DESC

template_ASC

template_DESC

Example
"ID_ASC"

MaterialWhereInput

Description

Represents a Where input for: Material

Fields
Input FieldDescription
MaterialInput - MaterialInput
OR - [OrMaterialsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
brandModel_contains - StringField contains given value, case-insensitive
brandModel_ends_with - StringField ends with given value, case-insensitive
brandModel_eq - StringField is equal to given value
brandModel_exists - BooleanField is set and exists
brandModel_in - [String]Given value includes field
brandModel_ne - StringField is not equal to given value
brandModel_nin - [String]Given value does not includes field
brandModel_not_contains - StringField does not contains given value, case-insensitive
brandModel_not_ends_with - StringField does not end with given value, case-insensitive
brandModel_not_starts_with - StringField does not start with given value, case-insensitive
brandModel_starts_with - StringField starts with given value, case-insensitive
brand_contains - StringField contains given value, case-insensitive
brand_ends_with - StringField ends with given value, case-insensitive
brand_eq - StringField is equal to given value
brand_exists - BooleanField is set and exists
brand_in - [String]Given value includes field
brand_ne - StringField is not equal to given value
brand_nin - [String]Given value does not includes field
brand_not_contains - StringField does not contains given value, case-insensitive
brand_not_ends_with - StringField does not end with given value, case-insensitive
brand_not_starts_with - StringField does not start with given value, case-insensitive
brand_starts_with - StringField starts with given value, case-insensitive
code_contains - StringField contains given value, case-insensitive
code_ends_with - StringField ends with given value, case-insensitive
code_eq - StringField is equal to given value
code_exists - BooleanField is set and exists
code_in - [String]Given value includes field
code_ne - StringField is not equal to given value
code_nin - [String]Given value does not includes field
code_not_contains - StringField does not contains given value, case-insensitive
code_not_ends_with - StringField does not end with given value, case-insensitive
code_not_starts_with - StringField does not start with given value, case-insensitive
code_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
dimension - MaterialDimensionWhereInput
images_all - [ID]Field includes all given values.
images_eq - [ID]Given value is equal to field
images_exists - Boolean
images_in - [ID]Field includes one of given value.
images_nin - [ID]Field does not include any of the given values.
iva_eq - FloatField is equal to given value
iva_exists - BooleanField is set and exists
iva_gt - FloatField is greater than given value
iva_gte - FloatField is greater or equal than given value
iva_in - [Float]Given value includes field
iva_lt - FloatField is lower than given value
iva_lte - FloatField is lower or equal than given value
iva_ne - FloatField is not equal to given value
iva_nin - [Float]Given value does not includes field
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
materialItems - MaterialItemWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
price_eq - FloatField is equal to given value
price_exists - BooleanField is set and exists
price_gt - FloatField is greater than given value
price_gte - FloatField is greater or equal than given value
price_in - [Float]Given value includes field
price_lt - FloatField is lower than given value
price_lte - FloatField is lower or equal than given value
price_ne - FloatField is not equal to given value
price_nin - [Float]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
quantity_eq - FloatField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - FloatField is greater than given value
quantity_gte - FloatField is greater or equal than given value
quantity_in - [Float]Given value includes field
quantity_lt - FloatField is lower than given value
quantity_lte - FloatField is lower or equal than given value
quantity_ne - FloatField is not equal to given value
quantity_nin - [Float]Given value does not includes field
sellingPrice_eq - FloatField is equal to given value
sellingPrice_exists - BooleanField is set and exists
sellingPrice_gt - FloatField is greater than given value
sellingPrice_gte - FloatField is greater or equal than given value
sellingPrice_in - [Float]Given value includes field
sellingPrice_lt - FloatField is lower than given value
sellingPrice_lte - FloatField is lower or equal than given value
sellingPrice_ne - FloatField is not equal to given value
sellingPrice_nin - [Float]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
type_eq - MaterialTypeField is equal to given value
type_exists - MaterialTypeField is set and exists
type_in - [MaterialType]Given value includes field
type_ne - MaterialTypeField is not equal to given value
type_nin - [MaterialType]Given value does not includes field
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "MaterialInput": MaterialInput,
  "OR": [OrMaterialsWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "brandModel_contains": "abc123",
  "brandModel_ends_with": "xyz789",
  "brandModel_eq": "xyz789",
  "brandModel_exists": true,
  "brandModel_in": ["abc123"],
  "brandModel_ne": "xyz789",
  "brandModel_nin": ["xyz789"],
  "brandModel_not_contains": "xyz789",
  "brandModel_not_ends_with": "abc123",
  "brandModel_not_starts_with": "xyz789",
  "brandModel_starts_with": "xyz789",
  "brand_contains": "abc123",
  "brand_ends_with": "xyz789",
  "brand_eq": "abc123",
  "brand_exists": false,
  "brand_in": ["abc123"],
  "brand_ne": "xyz789",
  "brand_nin": ["xyz789"],
  "brand_not_contains": "xyz789",
  "brand_not_ends_with": "abc123",
  "brand_not_starts_with": "abc123",
  "brand_starts_with": "abc123",
  "code_contains": "xyz789",
  "code_ends_with": "abc123",
  "code_eq": "xyz789",
  "code_exists": true,
  "code_in": ["abc123"],
  "code_ne": "xyz789",
  "code_nin": ["abc123"],
  "code_not_contains": "xyz789",
  "code_not_ends_with": "xyz789",
  "code_not_starts_with": "abc123",
  "code_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "dimension": MaterialDimensionWhereInput,
  "images_all": ["4"],
  "images_eq": ["4"],
  "images_exists": false,
  "images_in": [4],
  "images_nin": ["4"],
  "iva_eq": 987.65,
  "iva_exists": false,
  "iva_gt": 987.65,
  "iva_gte": 987.65,
  "iva_in": [987.65],
  "iva_lt": 987.65,
  "iva_lte": 987.65,
  "iva_ne": 123.45,
  "iva_nin": [123.45],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "materialItems": MaterialItemWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "price_eq": 987.65,
  "price_exists": true,
  "price_gt": 987.65,
  "price_gte": 987.65,
  "price_in": [987.65],
  "price_lt": 987.65,
  "price_lte": 123.45,
  "price_ne": 123.45,
  "price_nin": [987.65],
  "protected_eq": true,
  "protected_ne": false,
  "quantity_eq": 987.65,
  "quantity_exists": true,
  "quantity_gt": 123.45,
  "quantity_gte": 123.45,
  "quantity_in": [123.45],
  "quantity_lt": 987.65,
  "quantity_lte": 123.45,
  "quantity_ne": 123.45,
  "quantity_nin": [123.45],
  "sellingPrice_eq": 987.65,
  "sellingPrice_exists": true,
  "sellingPrice_gt": 987.65,
  "sellingPrice_gte": 123.45,
  "sellingPrice_in": [987.65],
  "sellingPrice_lt": 987.65,
  "sellingPrice_lte": 987.65,
  "sellingPrice_ne": 123.45,
  "sellingPrice_nin": [123.45],
  "system_eq": false,
  "system_ne": false,
  "type_eq": "SERIALIZED",
  "type_exists": "SERIALIZED",
  "type_in": ["SERIALIZED"],
  "type_ne": "SERIALIZED",
  "type_nin": ["SERIALIZED"],
  "unit_all": ["4"],
  "unit_eq": 4,
  "unit_exists": false,
  "unit_in": [4],
  "unit_ne": 4,
  "unit_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

MaterialWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ModelInstance

Description

Represents a ModelInstance

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
model - File!File reference
modelId - ID!File reference
position - [Float!]!Model Position Coordinates
protected - Boolean
rotation - [Float!]!Model Orientation Coordinates
scale - [Float!]!Model Scale Coordinates
spatialAnchorId - String!Azure spatial anchor Id
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "model": File,
  "modelId": "4",
  "position": [987.65],
  "protected": false,
  "rotation": [123.45],
  "scale": [123.45],
  "spatialAnchorId": "abc123",
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ModelInstanceCreateInput

Description

Represents a ModelInstanceCreateInput

Fields
Input FieldDescription
model - ID!File reference
position - [Float!]!Model Position Coordinates
rotation - [Float!]!Model Orientation Coordinates
scale - [Float!]!Model Scale Coordinates
spatialAnchorId - String!Azure spatial anchor Id
Example
{
  "model": "4",
  "position": [123.45],
  "rotation": [987.65],
  "scale": [123.45],
  "spatialAnchorId": "abc123"
}

ModelInstanceOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

spatialAnchorId_ASC

spatialAnchorId_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ModelInstanceUpdateInput

Description

Represents a ModelInstanceUpdateInput

Fields
Input FieldDescription
model - IDFile reference
position - [Float]Model Position Coordinates
rotation - [Float]Model Orientation Coordinates
scale - [Float]Model Scale Coordinates
spatialAnchorId - StringAzure spatial anchor Id
Example
{
  "model": 4,
  "position": [123.45],
  "rotation": [123.45],
  "scale": [123.45],
  "spatialAnchorId": "abc123"
}

ModelInstanceWhereInput

Description

Represents a Where input for: ModelInstance

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
model_all - [ID]Given value includes all in array
model_eq - IDField is equal to given value
model_exists - BooleanField is set and exists
model_in - [ID]Given value includes field
model_ne - IDField is not equal to given value
model_nin - [ID]Given value does not include field
position_all - [Int]Field includes all given values.
position_eq - [Int]Given value is equal to field
position_exists - Boolean
position_in - [Int]Field includes one of given value.
position_nin - [Int]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
rotation_all - [Int]Field includes all given values.
rotation_eq - [Int]Given value is equal to field
rotation_exists - Boolean
rotation_in - [Int]Field includes one of given value.
rotation_nin - [Int]Field does not include any of the given values.
scale_all - [Int]Field includes all given values.
scale_eq - [Int]Given value is equal to field
scale_exists - Boolean
scale_in - [Int]Field includes one of given value.
scale_nin - [Int]Field does not include any of the given values.
spatialAnchorId_contains - StringField contains given value, case-insensitive
spatialAnchorId_ends_with - StringField ends with given value, case-insensitive
spatialAnchorId_eq - StringField is equal to given value
spatialAnchorId_exists - BooleanField is set and exists
spatialAnchorId_in - [String]Given value includes field
spatialAnchorId_ne - StringField is not equal to given value
spatialAnchorId_nin - [String]Given value does not includes field
spatialAnchorId_not_contains - StringField does not contains given value, case-insensitive
spatialAnchorId_not_ends_with - StringField does not end with given value, case-insensitive
spatialAnchorId_not_starts_with - StringField does not start with given value, case-insensitive
spatialAnchorId_starts_with - StringField starts with given value, case-insensitive
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "model_all": ["4"],
  "model_eq": "4",
  "model_exists": false,
  "model_in": ["4"],
  "model_ne": "4",
  "model_nin": ["4"],
  "position_all": [123],
  "position_eq": [987],
  "position_exists": true,
  "position_in": [987],
  "position_nin": [123],
  "protected_eq": true,
  "protected_ne": false,
  "rotation_all": [123],
  "rotation_eq": [987],
  "rotation_exists": false,
  "rotation_in": [123],
  "rotation_nin": [123],
  "scale_all": [123],
  "scale_eq": [987],
  "scale_exists": false,
  "scale_in": [123],
  "scale_nin": [987],
  "spatialAnchorId_contains": "xyz789",
  "spatialAnchorId_ends_with": "xyz789",
  "spatialAnchorId_eq": "abc123",
  "spatialAnchorId_exists": true,
  "spatialAnchorId_in": ["xyz789"],
  "spatialAnchorId_ne": "abc123",
  "spatialAnchorId_nin": ["xyz789"],
  "spatialAnchorId_not_contains": "xyz789",
  "spatialAnchorId_not_ends_with": "xyz789",
  "spatialAnchorId_not_starts_with": "xyz789",
  "spatialAnchorId_starts_with": "xyz789",
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ModelInstanceWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

MyCalendarWhereData

Fields
Input FieldDescription
OR - [OrAgendaJobsDataWhereInput]
approval - ApprovalWhere
catalog_eq - ID
closedAt_exists - Boolean
element_eq - ID
executedBy - AccountWhereInput
issue - DataIssueWhere
issue_exists - Boolean
name_contains - String
name_in - [String]
needsApproval_eq - Boolean
needsApproval_ne - Boolean
site_eq - ID
startDate_gte - DateTime
startDate_lt - DateTime
stateMachineInstance - DataStateMachineWhere
workPackage - WorkPackageWhere
workPackage_exists - Boolean
Example
{
  "OR": [OrAgendaJobsDataWhereInput],
  "approval": ApprovalWhere,
  "catalog_eq": "4",
  "closedAt_exists": false,
  "element_eq": "4",
  "executedBy": AccountWhereInput,
  "issue": DataIssueWhere,
  "issue_exists": true,
  "name_contains": "abc123",
  "name_in": ["abc123"],
  "needsApproval_eq": false,
  "needsApproval_ne": true,
  "site_eq": 4,
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_lt": "2007-12-03T10:15:30Z",
  "stateMachineInstance": DataStateMachineWhere,
  "workPackage": WorkPackageWhere,
  "workPackage_exists": false
}

MyClearances

Fields
Field NameDescription
bundle - PermissionBundle
clearance - String
level - Int
Example
{
  "bundle": PermissionBundle,
  "clearance": "abc123",
  "level": 987
}

NfcTag

Description

Represents a NfcTag

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
linkedTo - NfcTagLinkedTo
protected - Boolean
system - Boolean
uid - String!NFC Tag Unique ID
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "linkedTo": NfcTagLinkedTo,
  "protected": true,
  "system": true,
  "uid": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

NfcTagCreateInput

Description

Represents a NfcTagCreateInput

Fields
Input FieldDescription
linkedTo - NfcTagLinkedToCreateInput
uid - String!NFC Tag Unique ID
Example
{
  "linkedTo": NfcTagLinkedToCreateInput,
  "uid": "abc123"
}

NfcTagLinkedTo

Description

Represents a NfcTagLinkedTo

Fields
Field NameDescription
assetId - ID!
assetType - NfcTagLinkedToAssetType!
Example
{"assetId": 4, "assetType": "Element"}

NfcTagLinkedToAssetType

Values
Enum ValueDescription

Element

Site

ToolItem

Example
"Element"

NfcTagLinkedToCreateInput

Description

Represents a NfcTagLinkedToCreateInput

Fields
Input FieldDescription
assetId - ID!
assetType - NfcTagLinkedToAssetType!
Example
{"assetId": 4, "assetType": "Element"}

NfcTagLinkedToUpdateInput

Description

Represents a NfcTagLinkedToUpdateInput

Fields
Input FieldDescription
assetId - ID
assetType - NfcTagLinkedToAssetType
Example
{"assetId": "4", "assetType": "Element"}

NfcTagLinkedToWhereInput

Description

Represents a Where input for: NfcTagLinkedTo

Fields
Input FieldDescription
assetId_all - [ID]Given value includes all in array
assetId_eq - IDField is equal to given value
assetId_exists - BooleanField is set and exists
assetId_in - [ID]Given value includes field
assetId_ne - IDField is not equal to given value
assetId_nin - [ID]Given value does not include field
assetType_eq - NfcTagLinkedToAssetTypeField is equal to given value
assetType_exists - NfcTagLinkedToAssetTypeField is set and exists
assetType_in - [NfcTagLinkedToAssetType]Given value includes field
assetType_ne - NfcTagLinkedToAssetTypeField is not equal to given value
assetType_nin - [NfcTagLinkedToAssetType]Given value does not includes field
Example
{
  "assetId_all": [4],
  "assetId_eq": 4,
  "assetId_exists": false,
  "assetId_in": [4],
  "assetId_ne": "4",
  "assetId_nin": ["4"],
  "assetType_eq": "Element",
  "assetType_exists": "Element",
  "assetType_in": ["Element"],
  "assetType_ne": "Element",
  "assetType_nin": ["Element"]
}

NfcTagOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

linkedTo_assetType_ASC

linkedTo_assetType_DESC

uid_ASC

uid_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

NfcTagUpdateInput

Description

Represents a NfcTagUpdateInput

Fields
Input FieldDescription
linkedTo - NfcTagLinkedToUpdateInput
uid - StringNFC Tag Unique ID
Example
{
  "linkedTo": NfcTagLinkedToUpdateInput,
  "uid": "xyz789"
}

NfcTagWhereInput

Description

Represents a Where input for: NfcTag

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
linkedTo - NfcTagLinkedToWhereInput
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
uid_contains - StringField contains given value, case-insensitive
uid_ends_with - StringField ends with given value, case-insensitive
uid_eq - StringField is equal to given value
uid_exists - BooleanField is set and exists
uid_in - [String]Given value includes field
uid_ne - StringField is not equal to given value
uid_nin - [String]Given value does not includes field
uid_not_contains - StringField does not contains given value, case-insensitive
uid_not_ends_with - StringField does not end with given value, case-insensitive
uid_not_starts_with - StringField does not start with given value, case-insensitive
uid_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "linkedTo": NfcTagLinkedToWhereInput,
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": true,
  "uid_contains": "abc123",
  "uid_ends_with": "abc123",
  "uid_eq": "xyz789",
  "uid_exists": false,
  "uid_in": ["abc123"],
  "uid_ne": "abc123",
  "uid_nin": ["xyz789"],
  "uid_not_contains": "abc123",
  "uid_not_ends_with": "abc123",
  "uid_not_starts_with": "abc123",
  "uid_starts_with": "abc123",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

NfcTagWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

OnBoardingInput

Fields
Input FieldDescription
availableSteps - [String]
currentSubStep - Int
doingOnboarding - Boolean
finished - Boolean
issueInstance - ID
maxSubStep - Int
openIssue - ID
openIssueDraft - ID
progressTotal - Int
step - String
template - ID
templateDraft - ID
Example
{
  "availableSteps": ["xyz789"],
  "currentSubStep": 123,
  "doingOnboarding": false,
  "finished": true,
  "issueInstance": 4,
  "maxSubStep": 987,
  "openIssue": "4",
  "openIssueDraft": "4",
  "progressTotal": 987,
  "step": "abc123",
  "template": "4",
  "templateDraft": 4
}

OptionInputType

Fields
Input FieldDescription
conditionals - [String]
order - Int
response - String
Example
{
  "conditionals": ["xyz789"],
  "order": 987,
  "response": "abc123"
}

OrAccountsWhereInput

Fields
Input FieldDescription
email_contains - String
email_in - String
name_contains - String
Example
{
  "email_contains": "abc123",
  "email_in": "xyz789",
  "name_contains": "abc123"
}

OrActionsWhereInput

Fields
Input FieldDescription
ID_eq - Int
assignedAccounts_in - [ID]
assignedLabelValues_in - [ID]
element - ElementWhereInput
element_in - [ID]
input_eq - ID
issues - ActionIssueWhereInput
name_contains - String
site - SiteWhereInput
site_exists - Boolean
site_in - [ID]
Example
{
  "ID_eq": 123,
  "assignedAccounts_in": [4],
  "assignedLabelValues_in": ["4"],
  "element": ElementWhereInput,
  "element_in": ["4"],
  "input_eq": 4,
  "issues": ActionIssueWhereInput,
  "name_contains": "abc123",
  "site": SiteWhereInput,
  "site_exists": true,
  "site_in": [4]
}

OrAgendaJobsDataWhereInput

Fields
Input FieldDescription
site_exists - Boolean
site_in - [ID]
Example
{"site_exists": true, "site_in": ["4"]}

OrAgendaJobsWhereInput

Fields
Input FieldDescription
AND - [AndAgendaJobsWhereInput]
data - MyCalendarWhereData
lastRunAt_exists - Boolean
name_eq - String
name_in - [String]
nextRunAt_exists - Boolean
Example
{
  "AND": [AndAgendaJobsWhereInput],
  "data": MyCalendarWhereData,
  "lastRunAt_exists": true,
  "name_eq": "abc123",
  "name_in": ["xyz789"],
  "nextRunAt_exists": true
}

OrAnchorImagesWhereInput

Fields
Input FieldDescription
elements_some - ElementWhereInput
name_contains - String
Example
{
  "elements_some": ElementWhereInput,
  "name_contains": "xyz789"
}

OrDataIssueWhere

Fields
Input FieldDescription
canceledBySystem_eq - Boolean
canceledBySystem_exists - Boolean
canceledBy_exists - Boolean
canceledBy_ne - AccountWhereInput
currentState_in - [String]
element - ElementWhereInput
glarID_contains - String
name_contains - String
rootElement - ElementWhereInput
rootSite - SiteWhereInput
site - SiteWhereInput
site_exists - Boolean
Example
{
  "canceledBySystem_eq": true,
  "canceledBySystem_exists": true,
  "canceledBy_exists": true,
  "canceledBy_ne": AccountWhereInput,
  "currentState_in": ["xyz789"],
  "element": ElementWhereInput,
  "glarID_contains": "abc123",
  "name_contains": "xyz789",
  "rootElement": ElementWhereInput,
  "rootSite": SiteWhereInput,
  "site": SiteWhereInput,
  "site_exists": true
}

OrDeviceWhereInput

Fields
Input FieldDescription
parentsTree_some - [ID]
site - SiteWhereInput
site_eq - ID
Example
{
  "parentsTree_some": ["4"],
  "site": SiteWhereInput,
  "site_eq": 4
}

OrElementWhereInput

Fields
Input FieldDescription
createdAt_gte - DateTime
responsibles - ResponsiblesWhereInput
site - SiteWhereInput
updatedAt_gte - DateTime
Example
{
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "responsibles": ResponsiblesWhereInput,
  "site": SiteWhereInput,
  "updatedAt_gte": "2007-12-03T10:15:30Z"
}

OrIssueCatalogFolderWhereInput

Fields
Input FieldDescription
_id_eq - ID
context_eq - String
context_exists - Boolean
createdAt_gte - DateTime
name_contains - String
parent_eq - ID
parent_exists - Boolean
parentsTree_in - [ID]
updatedAt_gte - DateTime
Example
{
  "_id_eq": 4,
  "context_eq": "xyz789",
  "context_exists": false,
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "name_contains": "xyz789",
  "parent_eq": 4,
  "parent_exists": true,
  "parentsTree_in": ["4"],
  "updatedAt_gte": "2007-12-03T10:15:30Z"
}

OrIssueCatalogSchedulerScheduleSettingWhereInput

Fields
Input FieldDescription
element - ElementWhereInput
element_in - [ID]
Example
{
  "element": ElementWhereInput,
  "element_in": ["4"]
}

OrIssueCatalogWhereInput

Fields
Input FieldDescription
_id_in - [ID]
createdAt_gte - DateTime
deleted_ne - Boolean
element - ElementWhereInput
element_in - [ID]
folder - IssueCatalogFolderWhereInput
isActive_ne - Boolean
name_contains - String
scheduler_exists - Boolean
scheduler_some - IssueCatalogSchedulerWhereInput
site_in - [ID]
template_in - [ID]
updatedAt_gte - DateTime
Example
{
  "_id_in": [4],
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "deleted_ne": true,
  "element": ElementWhereInput,
  "element_in": [4],
  "folder": IssueCatalogFolderWhereInput,
  "isActive_ne": false,
  "name_contains": "xyz789",
  "scheduler_exists": true,
  "scheduler_some": IssueCatalogSchedulerWhereInput,
  "site_in": ["4"],
  "template_in": [4],
  "updatedAt_gte": "2007-12-03T10:15:30Z"
}

OrIssuesWhereInput

Fields
Input FieldDescription
assignedAccounts_in - [ID]
assignedLabelValues_in - [ID]
element - ElementWhereInput
element_in - [ID]
glarID_contains - String
name - String
name_contains - String
name_regex - String
rootElement - ElementWhereInput
rootSite - SiteWhereInput
site - SiteWhereInput
site_exists - Boolean
site_in - [ID]
Example
{
  "assignedAccounts_in": [4],
  "assignedLabelValues_in": [4],
  "element": ElementWhereInput,
  "element_in": [4],
  "glarID_contains": "xyz789",
  "name": "abc123",
  "name_contains": "abc123",
  "name_regex": "abc123",
  "rootElement": ElementWhereInput,
  "rootSite": SiteWhereInput,
  "site": SiteWhereInput,
  "site_exists": false,
  "site_in": ["4"]
}

OrLabelValuesWhereInput

Fields
Input FieldDescription
label - LabelWhereInput
value_contains - String
Example
{
  "label": LabelWhereInput,
  "value_contains": "xyz789"
}

OrLocationAddressWhereInput

Fields
Input FieldDescription
address - LocationAddressWhereInput
Example
{"address": LocationAddressWhereInput}

OrMaterialsWhereInput

Fields
Input FieldDescription
code_contains - String
name_contains - String
Example
{
  "code_contains": "xyz789",
  "name_contains": "abc123"
}

OrPostWhereInput

Fields
Input FieldDescription
createdBy - AccountWhereInput
description_contains - String
labelValues_eq - [ID]
labelValues_in - [ID]
subject_contains - String
Example
{
  "createdBy": AccountWhereInput,
  "description_contains": "xyz789",
  "labelValues_eq": [4],
  "labelValues_in": [4],
  "subject_contains": "xyz789"
}

OrRequestTemplateWhereInput

Fields
Input FieldDescription
labelValues_eq - [String]
labelValues_exists - Boolean
labelValues_in - [String]
title_contains - String
Example
{
  "labelValues_eq": ["xyz789"],
  "labelValues_exists": false,
  "labelValues_in": ["abc123"],
  "title_contains": "xyz789"
}

OrSiteWhereInput

Fields
Input FieldDescription
_id_eq - ID
createdAt_gte - DateTime
parent_eq - ID
parentsTree_eq - [ID]
parentsTree_some - [ID]
responsibles - ResponsiblesWhereInput
updatedAt_gte - DateTime
Example
{
  "_id_eq": 4,
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "parent_eq": "4",
  "parentsTree_eq": [4],
  "parentsTree_some": [4],
  "responsibles": ResponsiblesWhereInput,
  "updatedAt_gte": "2007-12-03T10:15:30Z"
}

OrTimesheetsWhereInput

Fields
Input FieldDescription
AND - AndTimesheetsWhereInput
assignedAccounts_in - [String]
assignedLabelValues_in - [String]
finishDate_gt - DateTime
finishDate_gte - DateTime
finishDate_lt - DateTime
finishDate_lte - DateTime
startDate_gt - DateTime
startDate_gte - DateTime
startDate_lt - DateTime
startDate_lte - DateTime
Example
{
  "AND": AndTimesheetsWhereInput,
  "assignedAccounts_in": ["abc123"],
  "assignedLabelValues_in": ["abc123"],
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "startDate_gt": "2007-12-03T10:15:30Z",
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_lt": "2007-12-03T10:15:30Z",
  "startDate_lte": "2007-12-03T10:15:30Z"
}

OrToolItemsWhereInput

Fields
Input FieldDescription
code_contains - String
tool - ToolWhereInput
Example
{
  "code_contains": "abc123",
  "tool": ToolWhereInput
}

OrToolsWhereInput

Fields
Input FieldDescription
designation_contains - String
partNumber_contains - String
Example
{
  "designation_contains": "xyz789",
  "partNumber_contains": "abc123"
}

PdfJob

Description

Represents a PdfJob

Fields
Field NameDescription
_id - ID
contentId - ID!
contentType - PdfJobContentType!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
error - String
pdfType - PdfJobPdfType
protected - Boolean
status - PdfJobStatus
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
url - String
validUntil - Int
Example
{
  "_id": "4",
  "contentId": 4,
  "contentType": "issue",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "error": "abc123",
  "pdfType": "detailed",
  "protected": false,
  "status": "failed",
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4,
  "url": "abc123",
  "validUntil": 987
}

PdfJobContentType

Values
Enum ValueDescription

issue

Example
"issue"

PdfJobCreateInput

Description

Represents a PdfJobCreateInput

Fields
Input FieldDescription
contentId - ID!
contentType - PdfJobContentType!
pdfType - PdfJobPdfType
Example
{"contentId": 4, "contentType": "issue", "pdfType": "detailed"}

PdfJobOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

contentType_ASC

contentType_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

error_ASC

error_DESC

pdfType_ASC

pdfType_DESC

status_ASC

status_DESC

updatedAt_ASC

updatedAt_DESC

url_ASC

url_DESC

validUntil_ASC

validUntil_DESC

Example
"_id_ASC"

PdfJobPdfType

Values
Enum ValueDescription

detailed

simple

Example
"detailed"

PdfJobStatus

Values
Enum ValueDescription

failed

finished

processing

queued

Example
"failed"

PdfJobUpdateInput

Description

Represents a PdfJobUpdateInput

Fields
Input FieldDescription
contentId - ID
contentType - PdfJobContentType
pdfType - PdfJobPdfType
Example
{"contentId": 4, "contentType": "issue", "pdfType": "detailed"}

PdfJobWhereInput

Description

Represents a Where input for: PdfJob

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
contentId_all - [ID]Given value includes all in array
contentId_eq - IDField is equal to given value
contentId_exists - BooleanField is set and exists
contentId_in - [ID]Given value includes field
contentId_ne - IDField is not equal to given value
contentId_nin - [ID]Given value does not include field
contentType_eq - PdfJobContentTypeField is equal to given value
contentType_exists - PdfJobContentTypeField is set and exists
contentType_in - [PdfJobContentType]Given value includes field
contentType_ne - PdfJobContentTypeField is not equal to given value
contentType_nin - [PdfJobContentType]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
error_contains - StringField contains given value, case-insensitive
error_ends_with - StringField ends with given value, case-insensitive
error_eq - StringField is equal to given value
error_exists - BooleanField is set and exists
error_in - [String]Given value includes field
error_ne - StringField is not equal to given value
error_nin - [String]Given value does not includes field
error_not_contains - StringField does not contains given value, case-insensitive
error_not_ends_with - StringField does not end with given value, case-insensitive
error_not_starts_with - StringField does not start with given value, case-insensitive
error_starts_with - StringField starts with given value, case-insensitive
pdfType_eq - PdfJobPdfTypeField is equal to given value
pdfType_exists - PdfJobPdfTypeField is set and exists
pdfType_in - [PdfJobPdfType]Given value includes field
pdfType_ne - PdfJobPdfTypeField is not equal to given value
pdfType_nin - [PdfJobPdfType]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
status_eq - PdfJobStatusField is equal to given value
status_exists - PdfJobStatusField is set and exists
status_in - [PdfJobStatus]Given value includes field
status_ne - PdfJobStatusField is not equal to given value
status_nin - [PdfJobStatus]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
url_contains - StringField contains given value, case-insensitive
url_ends_with - StringField ends with given value, case-insensitive
url_eq - StringField is equal to given value
url_exists - BooleanField is set and exists
url_in - [String]Given value includes field
url_ne - StringField is not equal to given value
url_nin - [String]Given value does not includes field
url_not_contains - StringField does not contains given value, case-insensitive
url_not_ends_with - StringField does not end with given value, case-insensitive
url_not_starts_with - StringField does not start with given value, case-insensitive
url_starts_with - StringField starts with given value, case-insensitive
validUntil_eq - IntField is equal to given value
validUntil_exists - BooleanField is set and exists
validUntil_gt - IntField is greater than given value
validUntil_gte - IntField is greater or equal than given value
validUntil_in - [Int]Given value includes field
validUntil_lt - IntField is lower than given value
validUntil_lte - IntField is lower or equal than given value
validUntil_ne - IntField is not equal to given value
validUntil_nin - [Int]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "contentId_all": ["4"],
  "contentId_eq": 4,
  "contentId_exists": true,
  "contentId_in": ["4"],
  "contentId_ne": 4,
  "contentId_nin": ["4"],
  "contentType_eq": "issue",
  "contentType_exists": "issue",
  "contentType_in": ["issue"],
  "contentType_ne": "issue",
  "contentType_nin": ["issue"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "error_contains": "xyz789",
  "error_ends_with": "xyz789",
  "error_eq": "abc123",
  "error_exists": false,
  "error_in": ["abc123"],
  "error_ne": "abc123",
  "error_nin": ["abc123"],
  "error_not_contains": "abc123",
  "error_not_ends_with": "xyz789",
  "error_not_starts_with": "xyz789",
  "error_starts_with": "xyz789",
  "pdfType_eq": "detailed",
  "pdfType_exists": "detailed",
  "pdfType_in": ["detailed"],
  "pdfType_ne": "detailed",
  "pdfType_nin": ["detailed"],
  "protected_eq": true,
  "protected_ne": false,
  "status_eq": "failed",
  "status_exists": "failed",
  "status_in": ["failed"],
  "status_ne": "failed",
  "status_nin": ["failed"],
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"],
  "url_contains": "abc123",
  "url_ends_with": "abc123",
  "url_eq": "xyz789",
  "url_exists": false,
  "url_in": ["xyz789"],
  "url_ne": "xyz789",
  "url_nin": ["xyz789"],
  "url_not_contains": "xyz789",
  "url_not_ends_with": "abc123",
  "url_not_starts_with": "abc123",
  "url_starts_with": "abc123",
  "validUntil_eq": 123,
  "validUntil_exists": true,
  "validUntil_gt": 123,
  "validUntil_gte": 987,
  "validUntil_in": [987],
  "validUntil_lt": 123,
  "validUntil_lte": 123,
  "validUntil_ne": 987,
  "validUntil_nin": [123]
}

PdfJobWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

PermissionAssignCreateInput

Fields
Input FieldDescription
accessLevel - Int!
group - String!
Example
{"accessLevel": 123, "group": "xyz789"}

PermissionBundle

Fields
Field NameDescription
groups - [PermissionBundleGroup]
name - String
Example
{
  "groups": [PermissionBundleGroup],
  "name": "abc123"
}

PermissionBundleGroup

Fields
Field NameDescription
name - String
Example
{"name": "xyz789"}

Post

Description

Represents a Post

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String!
editedAt - DateTime
files - [File]
filesIds - [ID]
hasSeen - Boolean
labelValues - [LabelValue]
labelValuesIds - [ID]
likes - [Account]
likesIds - [ID]
mentions - [PostMention]
seenBy - [Account]
subject - String
totalComments - Int
totalRootComments - Intuse commentsCount instead
Arguments
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "editedAt": "2007-12-03T10:15:30Z",
  "files": [File],
  "filesIds": [4],
  "hasSeen": true,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "likes": [Account],
  "likesIds": ["4"],
  "mentions": [PostMention],
  "seenBy": [Account],
  "subject": "abc123",
  "totalComments": 123,
  "totalRootComments": 123,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

PostCreateInput

Description

Represents a PostCreateInput

Fields
Input FieldDescription
description - String!
editedAt - DateTime
files - [ID]
labelValues - [ID]
likes - [ID]
mentions - [PostMentionCreateInput]
subject - String
Example
{
  "description": "abc123",
  "editedAt": "2007-12-03T10:15:30Z",
  "files": ["4"],
  "labelValues": [4],
  "likes": [4],
  "mentions": [PostMentionCreateInput],
  "subject": "xyz789"
}

PostMention

Description

Represents a PostMention

Fields
Field NameDescription
account - Account
accountId - ID
action - Action
actionId - ID
issue - IssueInstance
issueId - ID
text - String!
type - PostMentionType
Example
{
  "account": Account,
  "accountId": "4",
  "action": Action,
  "actionId": "4",
  "issue": IssueInstance,
  "issueId": "4",
  "text": "abc123",
  "type": "account"
}

PostMentionCreateInput

Description

Represents a PostMentionCreateInput

Fields
Input FieldDescription
account - ID
action - ID
issue - ID
text - String!
type - PostMentionType
Example
{
  "account": "4",
  "action": 4,
  "issue": "4",
  "text": "xyz789",
  "type": "account"
}

PostMentionType

Values
Enum ValueDescription

account

action

issue

Example
"account"

PostMentionUpdateInput

Description

Represents a PostMentionUpdateInput

Fields
Input FieldDescription
account - ID
action - ID
issue - ID
text - String
type - PostMentionType
Example
{
  "account": 4,
  "action": "4",
  "issue": 4,
  "text": "abc123",
  "type": "account"
}

PostMentionWhereInput

Description

Represents a Where input for: PostMention

Fields
Input FieldDescription
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
action_all - [ID]Given value includes all in array
action_eq - IDField is equal to given value
action_exists - BooleanField is set and exists
action_in - [ID]Given value includes field
action_ne - IDField is not equal to given value
action_nin - [ID]Given value does not include field
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
text_contains - StringField contains given value, case-insensitive
text_ends_with - StringField ends with given value, case-insensitive
text_eq - StringField is equal to given value
text_exists - BooleanField is set and exists
text_in - [String]Given value includes field
text_ne - StringField is not equal to given value
text_nin - [String]Given value does not includes field
text_not_contains - StringField does not contains given value, case-insensitive
text_not_ends_with - StringField does not end with given value, case-insensitive
text_not_starts_with - StringField does not start with given value, case-insensitive
text_starts_with - StringField starts with given value, case-insensitive
type_eq - PostMentionTypeField is equal to given value
type_exists - PostMentionTypeField is set and exists
type_in - [PostMentionType]Given value includes field
type_ne - PostMentionTypeField is not equal to given value
type_nin - [PostMentionType]Given value does not includes field
Example
{
  "account_all": ["4"],
  "account_eq": "4",
  "account_exists": false,
  "account_in": ["4"],
  "account_ne": "4",
  "account_nin": [4],
  "action_all": [4],
  "action_eq": "4",
  "action_exists": true,
  "action_in": ["4"],
  "action_ne": 4,
  "action_nin": [4],
  "issue_all": [4],
  "issue_eq": 4,
  "issue_exists": true,
  "issue_in": ["4"],
  "issue_ne": 4,
  "issue_nin": ["4"],
  "text_contains": "xyz789",
  "text_ends_with": "abc123",
  "text_eq": "xyz789",
  "text_exists": false,
  "text_in": ["abc123"],
  "text_ne": "xyz789",
  "text_nin": ["xyz789"],
  "text_not_contains": "abc123",
  "text_not_ends_with": "xyz789",
  "text_not_starts_with": "xyz789",
  "text_starts_with": "abc123",
  "type_eq": "account",
  "type_exists": "account",
  "type_in": ["account"],
  "type_ne": "account",
  "type_nin": ["account"]
}

PostOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

editedAt_ASC

editedAt_DESC

subject_ASC

subject_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

PostUpdateInput

Description

Represents a PostUpdateInput

Fields
Input FieldDescription
description - String
editedAt - DateTime
files - [ID]
labelValues - [ID]
likes - [ID]
mentions - [PostMentionUpdateInput]
subject - String
Example
{
  "description": "abc123",
  "editedAt": "2007-12-03T10:15:30Z",
  "files": [4],
  "labelValues": [4],
  "likes": ["4"],
  "mentions": [PostMentionUpdateInput],
  "subject": "xyz789"
}

PostWhereInput

Description

Represents a Where input for: Post

Fields
Input FieldDescription
OR - [OrPostWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy - AccountWhereInput
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
editedAt_eq - DateTimeField is equal to given value
editedAt_exists - BooleanField is set and exists
editedAt_gt - DateTimeField is greater than given value
editedAt_gte - DateTimeField is greater or equal than given value
editedAt_in - [DateTime]Given value includes field
editedAt_lt - DateTimeField is lower than given value
editedAt_lte - DateTimeField is lower or equal than given value
editedAt_ne - DateTimeField is not equal to given value
editedAt_nin - [DateTime]Given value does not includes field
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
likes_all - [ID]Field includes all given values.
likes_eq - [ID]Given value is equal to field
likes_exists - Boolean
likes_in - [ID]Field includes one of given value.
likes_nin - [ID]Field does not include any of the given values.
mentions_every - PostMentionWhereInput
mentions_exists - Boolean
mentions_none - PostMentionWhereInput
mentions_some - PostMentionWhereInput
subject_contains - StringField contains given value, case-insensitive
subject_ends_with - StringField ends with given value, case-insensitive
subject_eq - StringField is equal to given value
subject_exists - BooleanField is set and exists
subject_in - [String]Given value includes field
subject_ne - StringField is not equal to given value
subject_nin - [String]Given value does not includes field
subject_not_contains - StringField does not contains given value, case-insensitive
subject_not_ends_with - StringField does not end with given value, case-insensitive
subject_not_starts_with - StringField does not start with given value, case-insensitive
subject_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrPostWhereInput],
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy": AccountWhereInput,
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "editedAt_eq": "2007-12-03T10:15:30Z",
  "editedAt_exists": true,
  "editedAt_gt": "2007-12-03T10:15:30Z",
  "editedAt_gte": "2007-12-03T10:15:30Z",
  "editedAt_in": ["2007-12-03T10:15:30Z"],
  "editedAt_lt": "2007-12-03T10:15:30Z",
  "editedAt_lte": "2007-12-03T10:15:30Z",
  "editedAt_ne": "2007-12-03T10:15:30Z",
  "editedAt_nin": ["2007-12-03T10:15:30Z"],
  "files_all": ["4"],
  "files_eq": [4],
  "files_exists": true,
  "files_in": [4],
  "files_nin": [4],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "likes_all": ["4"],
  "likes_eq": [4],
  "likes_exists": false,
  "likes_in": ["4"],
  "likes_nin": ["4"],
  "mentions_every": PostMentionWhereInput,
  "mentions_exists": false,
  "mentions_none": PostMentionWhereInput,
  "mentions_some": PostMentionWhereInput,
  "subject_contains": "xyz789",
  "subject_ends_with": "xyz789",
  "subject_eq": "xyz789",
  "subject_exists": false,
  "subject_in": ["abc123"],
  "subject_ne": "abc123",
  "subject_nin": ["xyz789"],
  "subject_not_contains": "abc123",
  "subject_not_ends_with": "abc123",
  "subject_not_starts_with": "xyz789",
  "subject_starts_with": "abc123",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

PostWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

PresetWhereInput

Fields
Input FieldDescription
_id - ID
inputs - [ID]
options - [OptionInputType]
order - Int
Example
{
  "_id": "4",
  "inputs": ["4"],
  "options": [OptionInputType],
  "order": 123
}

PreviewWidgetData

Fields
Field NameDescription
data - JSON
Example
{"data": {}}

Profile

Description

Represents a Profile

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringProfile description
elementsCount - Int
folder - ProfileFolderProfile Folder
folderId - IDProfile Folder
inputs - [Input]
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!Profile name
parent - ProfileProfile Parent
parentId - IDProfile Parent
parentsTree - [Profile]
parentsTreeIds - [ID]
profilesCount - Int
protected - Boolean
system - Boolean
template - ProfileTemplate!
templateId - ID!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "elementsCount": 987,
  "folder": ProfileFolder,
  "folderId": 4,
  "inputs": [Input],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "abc123",
  "parent": Profile,
  "parentId": "4",
  "parentsTree": [Profile],
  "parentsTreeIds": [4],
  "profilesCount": 123,
  "protected": false,
  "system": true,
  "template": ProfileTemplate,
  "templateId": "4",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

ProfileCreateInput

Description

Represents a ProfileCreateInput

Fields
Input FieldDescription
description - StringProfile description
folder - IDProfile Folder
inputs - [InputCreateInput]
labelValues - [ID]
name - String!Profile name
parent - IDProfile Parent
template - ID!
Example
{
  "description": "abc123",
  "folder": 4,
  "inputs": [InputCreateInput],
  "labelValues": [4],
  "name": "abc123",
  "parent": 4,
  "template": 4
}

ProfileFolder

Description

Represents a ProfileFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - ProfileFolderProfileFolder Parent
parentId - IDProfileFolder Parent
parentsTree - [ProfileFolder]
parentsTreeCount - Int
parentsTreeIds - [ID]
profileFoldersCount - Int
profilesCount - Int
Arguments
tenant - ID
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "context": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "abc123",
  "parent": ProfileFolder,
  "parentId": "4",
  "parentsTree": [ProfileFolder],
  "parentsTreeCount": 987,
  "parentsTreeIds": [4],
  "profileFoldersCount": 987,
  "profilesCount": 123,
  "protected": false,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ProfileFolderCreateInput

Description

Represents a ProfileFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDProfileFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": 4
}

ProfileFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ProfileFolderUpdateInput

Description

Represents a ProfileFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDProfileFolder Parent
Example
{
  "context": "abc123",
  "name": "xyz789",
  "parent": "4"
}

ProfileFolderWhereInput

Description

Represents a Where input for: ProfileFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "context_contains": "xyz789",
  "context_ends_with": "abc123",
  "context_eq": "abc123",
  "context_exists": false,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "abc123",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": [4],
  "parent_ne": "4",
  "parent_nin": [4],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": ["4"],
  "parentsTree_nin": ["4"],
  "protected_eq": false,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

ProfileFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

ProfileOrFolder

Types
Union Types

Profile

ProfileFolder

Example
Profile

ProfileOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ProfileTemplate

Description

Represents a ProfileTemplate

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
folder - ProfileTemplateFolder!ProfileTemplate Folder
folderId - ID!ProfileTemplate Folder
frame - ProfileTemplateFrame
icon - String
protected - Boolean
system - Boolean
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "archived": false,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "folder": ProfileTemplateFolder,
  "folderId": "4",
  "frame": ProfileTemplateFrame,
  "icon": "abc123",
  "protected": false,
  "system": false,
  "title": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ProfileTemplateCreateInput

Description

Represents a ProfileTemplateCreateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - ID!ProfileTemplate Folder
frame - ProfileTemplateFrameCreateInput
icon - String
title - String!
Example
{
  "archived": true,
  "description": "abc123",
  "folder": 4,
  "frame": ProfileTemplateFrameCreateInput,
  "icon": "abc123",
  "title": "xyz789"
}

ProfileTemplateFolder

Description

Represents a ProfileTemplateFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - ProfileTemplateFolderProfileTemplateFolder Parent
parentId - IDProfileTemplateFolder Parent
parentsTree - [ProfileTemplateFolder]
parentsTreeCount - Int
parentsTreeIds - [ID]
profileTemplateFoldersCount - Int
profileTemplatesCount - Int
Arguments
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "abc123",
  "parent": ProfileTemplateFolder,
  "parentId": "4",
  "parentsTree": [ProfileTemplateFolder],
  "parentsTreeCount": 987,
  "parentsTreeIds": [4],
  "profileTemplateFoldersCount": 123,
  "profileTemplatesCount": 987,
  "protected": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ProfileTemplateFolderCreateInput

Description

Represents a ProfileTemplateFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDProfileTemplateFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": "4"
}

ProfileTemplateFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ProfileTemplateFolderUpdateInput

Description

Represents a ProfileTemplateFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDProfileTemplateFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": "4"
}

ProfileTemplateFolderWhereInput

Description

Represents a Where input for: ProfileTemplateFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "context_contains": "xyz789",
  "context_ends_with": "abc123",
  "context_eq": "abc123",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "abc123",
  "context_nin": ["abc123"],
  "context_not_contains": "xyz789",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "parent_all": ["4"],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": true,
  "parentsTree_in": ["4"],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ProfileTemplateFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

ProfileTemplateFrame

Description

Represents a ProfileTemplateFrame

Fields
Field NameDescription
inputs - [Input]
parent - Profile
parentId - ID
Example
{
  "inputs": [Input],
  "parent": Profile,
  "parentId": 4
}

ProfileTemplateFrameCreateInput

Description

Represents a ProfileTemplateFrameCreateInput

Fields
Input FieldDescription
inputs - [InputCreateInput]
parent - ID
Example
{"inputs": [InputCreateInput], "parent": 4}

ProfileTemplateFrameUpdateInput

Description

Represents a ProfileTemplateFrameUpdateInput

Fields
Input FieldDescription
inputs - [InputUpdateInput]
parent - ID
Example
{"inputs": [InputUpdateInput], "parent": 4}

ProfileTemplateFrameWhereInput

Description

Represents a Where input for: ProfileTemplateFrame

Fields
Input FieldDescription
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
Example
{
  "inputs_every": InputWhereInput,
  "inputs_exists": true,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": [4]
}

ProfileTemplateOrFolder

Example
ProfileTemplate

ProfileTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ProfileTemplateUpdateInput

Description

Represents a ProfileTemplateUpdateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - IDProfileTemplate Folder
frame - ProfileTemplateFrameUpdateInput
icon - String
title - String
Example
{
  "archived": false,
  "description": "abc123",
  "folder": 4,
  "frame": ProfileTemplateFrameUpdateInput,
  "icon": "xyz789",
  "title": "xyz789"
}

ProfileTemplateWhereInput

Description

Represents a Where input for: ProfileTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - ProfileTemplateFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - ProfileTemplateFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": false,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": [4],
  "archivedBy_eq": 4,
  "archivedBy_exists": true,
  "archivedBy_in": [4],
  "archivedBy_ne": 4,
  "archivedBy_nin": ["4"],
  "archived_eq": true,
  "archived_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "folder": ProfileTemplateFolderWhereInput,
  "folder_all": ["4"],
  "folder_eq": "4",
  "folder_exists": false,
  "folder_in": ["4"],
  "folder_ne": "4",
  "folder_nin": ["4"],
  "frame": ProfileTemplateFrameWhereInput,
  "icon_contains": "abc123",
  "icon_ends_with": "xyz789",
  "icon_eq": "xyz789",
  "icon_exists": true,
  "icon_in": ["xyz789"],
  "icon_ne": "xyz789",
  "icon_nin": ["abc123"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "xyz789",
  "icon_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "title_contains": "xyz789",
  "title_ends_with": "xyz789",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["abc123"],
  "title_ne": "xyz789",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "xyz789",
  "title_not_starts_with": "abc123",
  "title_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ProfileTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

ProfileUpdateInput

Description

Represents a ProfileUpdateInput

Fields
Input FieldDescription
description - StringProfile description
folder - IDProfile Folder
inputs - [InputUpdateInput]
labelValues - [ID]
name - StringProfile name
parent - IDProfile Parent
template - ID
Example
{
  "description": "xyz789",
  "folder": 4,
  "inputs": [InputUpdateInput],
  "labelValues": [4],
  "name": "xyz789",
  "parent": 4,
  "template": 4
}

ProfileWhereInput

Description

Represents a Where input for: Profile

Fields
Input FieldDescription
AND - [AndProfileWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - ProfileFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndProfileWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "folder": ProfileFolderWhereInput,
  "folder_all": [4],
  "folder_eq": "4",
  "folder_exists": true,
  "folder_in": ["4"],
  "folder_ne": "4",
  "folder_nin": [4],
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "parent_all": ["4"],
  "parent_eq": 4,
  "parent_exists": false,
  "parent_in": [4],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "protected_eq": false,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": true,
  "template_all": [4],
  "template_eq": "4",
  "template_exists": true,
  "template_in": [4],
  "template_ne": "4",
  "template_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

ProfileWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

PushNotification

Description

Represents a PushNotification

Fields
Field NameDescription
_id - ID
acknowledged - Boolean
body - String!Push body
createdAt - DateTime
data - PushNotificationDatum
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
files - [File]
filesIds - [ID]
protected - Boolean
system - Boolean
title - String!Push name
to - Account!
toId - ID!
updatedAt - DateTime
viewed - Boolean
Example
{
  "_id": "4",
  "acknowledged": true,
  "body": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "data": PushNotificationDatum,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "files": [File],
  "filesIds": ["4"],
  "protected": true,
  "system": false,
  "title": "abc123",
  "to": Account,
  "toId": "4",
  "updatedAt": "2007-12-03T10:15:30Z",
  "viewed": false
}

PushNotificationCreateInput

Description

Represents a PushNotificationCreateInput

Fields
Input FieldDescription
body - String!Push body
files - [ID]
title - String!Push name
to - PushNotificationToInput!
Example
{
  "body": "abc123",
  "files": ["4"],
  "title": "xyz789",
  "to": PushNotificationToInput
}

PushNotificationDatum

Description

Represents a PushNotificationDatum

Fields
Field NameDescription
_id - ID
clickAction - String
context - PushNotificationDatumContext!
extraData - StringExtra Custom data
messageFrom - PushNotificationDatumMessageFromWhere the chat message is sent from
Example
{
  "_id": 4,
  "clickAction": "xyz789",
  "context": "Action",
  "extraData": "abc123",
  "messageFrom": "ChatRoom"
}

PushNotificationDatumContext

Values
Enum ValueDescription

Action

ChatMessage

Comment

Element

Issue

Other

Request

Site

Task

WorkPackage

Example
"Action"

PushNotificationDatumMessageFrom

Values
Enum ValueDescription

ChatRoom

Issue

Example
"ChatRoom"

PushNotificationDatumWhereInput

Description

Represents a Where input for: PushNotificationDatum

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
clickAction_contains - StringField contains given value, case-insensitive
clickAction_ends_with - StringField ends with given value, case-insensitive
clickAction_eq - StringField is equal to given value
clickAction_exists - BooleanField is set and exists
clickAction_in - [String]Given value includes field
clickAction_ne - StringField is not equal to given value
clickAction_nin - [String]Given value does not includes field
clickAction_not_contains - StringField does not contains given value, case-insensitive
clickAction_not_ends_with - StringField does not end with given value, case-insensitive
clickAction_not_starts_with - StringField does not start with given value, case-insensitive
clickAction_starts_with - StringField starts with given value, case-insensitive
context_eq - PushNotificationDatumContextField is equal to given value
context_exists - PushNotificationDatumContextField is set and exists
context_in - [PushNotificationDatumContext]Given value includes field
context_ne - PushNotificationDatumContextField is not equal to given value
context_nin - [PushNotificationDatumContext]Given value does not includes field
extraData_contains - StringField contains given value, case-insensitive
extraData_ends_with - StringField ends with given value, case-insensitive
extraData_eq - StringField is equal to given value
extraData_exists - BooleanField is set and exists
extraData_in - [String]Given value includes field
extraData_ne - StringField is not equal to given value
extraData_nin - [String]Given value does not includes field
extraData_not_contains - StringField does not contains given value, case-insensitive
extraData_not_ends_with - StringField does not end with given value, case-insensitive
extraData_not_starts_with - StringField does not start with given value, case-insensitive
extraData_starts_with - StringField starts with given value, case-insensitive
messageFrom_eq - PushNotificationDatumMessageFromField is equal to given value
messageFrom_exists - PushNotificationDatumMessageFromField is set and exists
messageFrom_in - [PushNotificationDatumMessageFrom]Given value includes field
messageFrom_ne - PushNotificationDatumMessageFromField is not equal to given value
messageFrom_nin - [PushNotificationDatumMessageFrom]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "clickAction_contains": "xyz789",
  "clickAction_ends_with": "abc123",
  "clickAction_eq": "abc123",
  "clickAction_exists": true,
  "clickAction_in": ["abc123"],
  "clickAction_ne": "abc123",
  "clickAction_nin": ["abc123"],
  "clickAction_not_contains": "xyz789",
  "clickAction_not_ends_with": "abc123",
  "clickAction_not_starts_with": "xyz789",
  "clickAction_starts_with": "abc123",
  "context_eq": "Action",
  "context_exists": "Action",
  "context_in": ["Action"],
  "context_ne": "Action",
  "context_nin": ["Action"],
  "extraData_contains": "xyz789",
  "extraData_ends_with": "xyz789",
  "extraData_eq": "xyz789",
  "extraData_exists": false,
  "extraData_in": ["xyz789"],
  "extraData_ne": "xyz789",
  "extraData_nin": ["abc123"],
  "extraData_not_contains": "abc123",
  "extraData_not_ends_with": "abc123",
  "extraData_not_starts_with": "abc123",
  "extraData_starts_with": "xyz789",
  "messageFrom_eq": "ChatRoom",
  "messageFrom_exists": "ChatRoom",
  "messageFrom_in": ["ChatRoom"],
  "messageFrom_ne": "ChatRoom",
  "messageFrom_nin": ["ChatRoom"]
}

PushNotificationOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

body_ASC

body_DESC

createdAt_ASC

createdAt_DESC

data_clickAction_ASC

data_clickAction_DESC

data_context_ASC

data_context_DESC

data_extraData_ASC

data_extraData_DESC

data_messageFrom_ASC

data_messageFrom_DESC

deletedAt_ASC

deletedAt_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

PushNotificationToInput

Fields
Input FieldDescription
accounts - [ID]
labelValues - [ID]
Example
{"accounts": ["4"], "labelValues": [4]}

PushNotificationWhereInput

Description

Represents a Where input for: PushNotification

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
acknowledged_eq - BooleanField is equal to given value
acknowledged_ne - BooleanField is not equal to given value
body_contains - StringField contains given value, case-insensitive
body_ends_with - StringField ends with given value, case-insensitive
body_eq - StringField is equal to given value
body_exists - BooleanField is set and exists
body_in - [String]Given value includes field
body_ne - StringField is not equal to given value
body_nin - [String]Given value does not includes field
body_not_contains - StringField does not contains given value, case-insensitive
body_not_ends_with - StringField does not end with given value, case-insensitive
body_not_starts_with - StringField does not start with given value, case-insensitive
body_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
data - PushNotificationDatumWhereInput
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
to_all - [ID]Given value includes all in array
to_eq - IDField is equal to given value
to_exists - BooleanField is set and exists
to_in - [ID]Given value includes field
to_ne - IDField is not equal to given value
to_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
viewed_eq - BooleanField is equal to given value
viewed_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "acknowledged_eq": true,
  "acknowledged_ne": true,
  "body_contains": "abc123",
  "body_ends_with": "abc123",
  "body_eq": "abc123",
  "body_exists": true,
  "body_in": ["abc123"],
  "body_ne": "abc123",
  "body_nin": ["abc123"],
  "body_not_contains": "abc123",
  "body_not_ends_with": "abc123",
  "body_not_starts_with": "abc123",
  "body_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "data": PushNotificationDatumWhereInput,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "files_all": [4],
  "files_eq": [4],
  "files_exists": false,
  "files_in": [4],
  "files_nin": ["4"],
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": true,
  "title_contains": "xyz789",
  "title_ends_with": "xyz789",
  "title_eq": "abc123",
  "title_exists": false,
  "title_in": ["abc123"],
  "title_ne": "xyz789",
  "title_nin": ["abc123"],
  "title_not_contains": "abc123",
  "title_not_ends_with": "xyz789",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "xyz789",
  "to_all": [4],
  "to_eq": "4",
  "to_exists": true,
  "to_in": [4],
  "to_ne": 4,
  "to_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "viewed_eq": true,
  "viewed_ne": false
}

PushNotificationWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

PushNotificationsCounts

Fields
Field NameDescription
notAcknowledgedCount - Int
notViewedCount - Int
Example
{"notAcknowledgedCount": 987, "notViewedCount": 987}

RecordInfo

Fields
Field NameDescription
content_type - String
file_name - String
last_modified - Int
size - Int
Example
{
  "content_type": "xyz789",
  "file_name": "xyz789",
  "last_modified": 987,
  "size": 987
}

RecordType

Fields
Field NameDescription
expired_time_in_seconds - Int
started_at_in_seconds - Int
started_by - String
status - String
Example
{
  "expired_time_in_seconds": 123,
  "started_at_in_seconds": 123,
  "started_by": "abc123",
  "status": "abc123"
}

ReplaceLevelsItem

Fields
Input FieldDescription
_id - ID!
level - SkillLevelLevel
requiredLevel - SkillLevelRequiredLevel
Example
{"_id": 4, "level": "EXPERT", "requiredLevel": "EXPERT"}

ReportInfo

Fields
Field NameDescription
_id - ID
approvedAt - DateTime
approvedBy - [Account]
assignedAccounts - [Account]
assignedLabelValues - [LabelValue]
description - String
element - Element
endDate - Date
executedBy - [Account]
executionTime - Float
expectedTime - EstimatedDuration
frequency - IssueInstanceFrequency
glarID - String
issueCatalog - ID
issueId - ID
labels - [LabelValue]
lastAction - DateTime
name - String
parentElement - Element
parentSite - Site
reportGeneralFields - [String]
reportId - String
rootElement - Element
rootSite - Site
score - IssueReportScore
site - Site
startDate - Date
stateMachineInstance - StateMachineInstance
taskConditionalInputs - [Input]
taskInputs - [Input]
triggeredBy - TriggeredBy
wrongAnswer - Int
Example
{
  "_id": 4,
  "approvedAt": "2007-12-03T10:15:30Z",
  "approvedBy": [Account],
  "assignedAccounts": [Account],
  "assignedLabelValues": [LabelValue],
  "description": "xyz789",
  "element": Element,
  "endDate": "2007-12-03",
  "executedBy": [Account],
  "executionTime": 123.45,
  "expectedTime": EstimatedDuration,
  "frequency": IssueInstanceFrequency,
  "glarID": "abc123",
  "issueCatalog": "4",
  "issueId": "4",
  "labels": [LabelValue],
  "lastAction": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "parentElement": Element,
  "parentSite": Site,
  "reportGeneralFields": ["xyz789"],
  "reportId": "abc123",
  "rootElement": Element,
  "rootSite": Site,
  "score": IssueReportScore,
  "site": Site,
  "startDate": "2007-12-03",
  "stateMachineInstance": StateMachineInstance,
  "taskConditionalInputs": [Input],
  "taskInputs": [Input],
  "triggeredBy": TriggeredBy,
  "wrongAnswer": 987
}

ReportInfoInputOrderBy

Fields
Input FieldDescription
asc - Boolean
default - Boolean
input - ID
Example
{"asc": true, "default": false, "input": 4}

ReportInfoOrderByEnum

Values
Enum ValueDescription

approvedAt_ASC

approvedAt_DESC

approvedBy_ASC

approvedBy_DESC

assignedAccounts_name_ASC

assignedAccounts_name_DESC

assignedLabelValues_value_ASC

assignedLabelValues_value_DESC

description_ASC

description_DESC

element_name_ASC

element_name_DESC

endDate_ASC

endDate_DESC

executedBy_name_ASC

executedBy_name_DESC

executionTime_ASC

executionTime_DESC

expectedTime_amount_ASC

expectedTime_amount_DESC

frequency_amount_ASC

frequency_amount_DESC

glarID_ASC

glarID_DESC

labels_value_ASC

labels_value_DESC

lastAction_ASC

lastAction_DESC

name_ASC

name_DESC

parent_element_name_ASC

parent_element_name_DESC

parent_site_name_ASC

parent_site_name_DESC

root_element_name_ASC

root_element_name_DESC

root_site_name_ASC

root_site_name_DESC

site_name_ASC

site_name_DESC

startDate_ASC

startDate_DESC

stateMachineInstance_currentState_ASC

stateMachineInstance_currentState_DESC

taskConditionalInputs_string_ASC

taskConditionalInputs_string_DESC

taskInputs_string_values_ASC

taskInputs_string_values_DESC

triggeredBy_ASC

triggeredBy_DESC

wrongAnwer_ASC

wrongAnwer_DESC

Example
"approvedAt_ASC"

Request

Description

Represents a Request

Fields
Field NameDescription
_id - ID
approved - [Account]
approvedIds - [ID]
approvers - [Account]
approversIds - [ID]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
inputs - [Input]
lastFollowedUp - DateTime
limitDate - DateTime
logs - [RequestLog]
rejected - [Account]
rejectedIds - [ID]
status - RequestStatusType
template - RequestTemplate
templateId - ID
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "approved": [Account],
  "approvedIds": ["4"],
  "approvers": [Account],
  "approversIds": [4],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "inputs": [Input],
  "lastFollowedUp": "2007-12-03T10:15:30Z",
  "limitDate": "2007-12-03T10:15:30Z",
  "logs": [RequestLog],
  "rejected": [Account],
  "rejectedIds": [4],
  "status": "Approved",
  "template": RequestTemplate,
  "templateId": 4,
  "title": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

RequestCreateInput

Description

Represents a RequestCreateInput

Fields
Input FieldDescription
approved - [ID]
approvers - [ID]
inputs - [InputCreateInput]
limitDate - DateTime
rejected - [ID]
template - ID
title - String!
Example
{
  "approved": ["4"],
  "approvers": [4],
  "inputs": [InputCreateInput],
  "limitDate": "2007-12-03T10:15:30Z",
  "rejected": [4],
  "template": "4",
  "title": "xyz789"
}

RequestLog

Fields
Field NameDescription
_id - ID
action - RequestLogEnumType
by - Account
createdAt - Date
files - [ID]
message - String
status - RequestStatusInputType
to - Account
Example
{
  "_id": 4,
  "action": "ADDED_APPROVER",
  "by": Account,
  "createdAt": "2007-12-03",
  "files": ["4"],
  "message": "abc123",
  "status": "Approved",
  "to": Account
}

RequestLogEnumType

Values
Enum ValueDescription

ADDED_APPROVER

APPROVED

CREATED

FOLLOWUP

MESSAGE

OVERDUE

REJECTED

REMOVED_APPROVER

STATUS

Example
"ADDED_APPROVER"

RequestOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

lastFollowedUp_ASC

lastFollowedUp_DESC

limitDate_ASC

limitDate_DESC

status_ASC

status_DESC

template_title_ASC

template_title_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

RequestStatusInputType

Values
Enum ValueDescription

Approved

Cancelled

Rejected

Example
"Approved"

RequestStatusType

Values
Enum ValueDescription

Approved

Cancelled

Pending

Rejected

Example
"Approved"

RequestTemplate

Description

Represents a RequestTemplate

Fields
Field NameDescription
_id - ID
commentRequired - Boolean
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
expireDate - RequestTemplateExpireDate
frame - RequestTemplateFrame
labelValues - [LabelValue]
labelValuesIds - [ID]
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "commentRequired": true,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "expireDate": RequestTemplateExpireDate,
  "frame": RequestTemplateFrame,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "title": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

RequestTemplateConnection

Fields
Field NameDescription
connectionId - String!
nodes - [RequestTemplate]
pageInfo - RequestTemplatePageInfo
Example
{
  "connectionId": "abc123",
  "nodes": [RequestTemplate],
  "pageInfo": RequestTemplatePageInfo
}

RequestTemplateExpireDate

Description

Represents a RequestTemplateExpireDate

Fields
Field NameDescription
_id - ID
custom - RequestTemplateExpireDateCustom
defaults - RequestTemplateExpireDateDefaults
Example
{
  "_id": "4",
  "custom": RequestTemplateExpireDateCustom,
  "defaults": "actualDay"
}

RequestTemplateExpireDateCustom

Description

Represents a RequestTemplateExpireDateCustom

Fields
Field NameDescription
_id - ID
duration - RequestTemplateExpireDateCustomDuration!
quantity - Int!
Example
{"_id": 4, "duration": "day", "quantity": 123}

RequestTemplateExpireDateCustomDuration

Values
Enum ValueDescription

day

month

week

Example
"day"

RequestTemplateExpireDateCustomUpdateInput

Description

Represents a RequestTemplateExpireDateCustomUpdateInput

Fields
Input FieldDescription
duration - RequestTemplateExpireDateCustomDuration
quantity - Int
Example
{"duration": "day", "quantity": 123}

RequestTemplateExpireDateCustomWhereInput

Description

Represents a Where input for: RequestTemplateExpireDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
duration_eq - RequestTemplateExpireDateCustomDurationField is equal to given value
duration_exists - RequestTemplateExpireDateCustomDurationField is set and exists
duration_in - [RequestTemplateExpireDateCustomDuration]Given value includes field
duration_ne - RequestTemplateExpireDateCustomDurationField is not equal to given value
duration_nin - [RequestTemplateExpireDateCustomDuration]Given value does not includes field
quantity_eq - IntField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - IntField is greater than given value
quantity_gte - IntField is greater or equal than given value
quantity_in - [Int]Given value includes field
quantity_lt - IntField is lower than given value
quantity_lte - IntField is lower or equal than given value
quantity_ne - IntField is not equal to given value
quantity_nin - [Int]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "duration_eq": "day",
  "duration_exists": "day",
  "duration_in": ["day"],
  "duration_ne": "day",
  "duration_nin": ["day"],
  "quantity_eq": 987,
  "quantity_exists": true,
  "quantity_gt": 123,
  "quantity_gte": 123,
  "quantity_in": [987],
  "quantity_lt": 123,
  "quantity_lte": 987,
  "quantity_ne": 987,
  "quantity_nin": [123]
}

RequestTemplateExpireDateDefaults

Values
Enum ValueDescription

actualDay

actualMonth

next7Days

nextDay

noLimit

Example
"actualDay"

RequestTemplateExpireDateUpdateInput

Description

Represents a RequestTemplateExpireDateUpdateInput

Example
{
  "custom": RequestTemplateExpireDateCustomUpdateInput,
  "defaults": "actualDay"
}

RequestTemplateExpireDateWhereInput

Description

Represents a Where input for: RequestTemplateExpireDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
custom - RequestTemplateExpireDateCustomWhereInput
defaults_eq - RequestTemplateExpireDateDefaultsField is equal to given value
defaults_exists - RequestTemplateExpireDateDefaultsField is set and exists
defaults_in - [RequestTemplateExpireDateDefaults]Given value includes field
defaults_ne - RequestTemplateExpireDateDefaultsField is not equal to given value
defaults_nin - [RequestTemplateExpireDateDefaults]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "custom": RequestTemplateExpireDateCustomWhereInput,
  "defaults_eq": "actualDay",
  "defaults_exists": "actualDay",
  "defaults_in": ["actualDay"],
  "defaults_ne": "actualDay",
  "defaults_nin": ["actualDay"]
}

RequestTemplateFrame

Description

Represents a RequestTemplateFrame

Fields
Field NameDescription
inputs - [Input]
Example
{"inputs": [Input]}

RequestTemplateFrameUpdateInput

Description

Represents a RequestTemplateFrameUpdateInput

Fields
Input FieldDescription
inputs - [InputUpdateInput]
Example
{"inputs": [InputUpdateInput]}

RequestTemplateFrameWhereInput

Description

Represents a Where input for: RequestTemplateFrame

Fields
Input FieldDescription
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
Example
{
  "inputs_every": InputWhereInput,
  "inputs_exists": false,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput
}

RequestTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

expireDate_defaults_ASC

expireDate_defaults_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

RequestTemplatePageInfo

Fields
Field NameDescription
hasNextPage - Boolean!
hasPreviousPage - Boolean!
Example
{"hasNextPage": true, "hasPreviousPage": true}

RequestTemplateUpdateInput

Description

Represents a RequestTemplateUpdateInput

Fields
Input FieldDescription
commentRequired - Boolean
description - String
expireDate - RequestTemplateExpireDateUpdateInput
frame - RequestTemplateFrameUpdateInput
labelValues - [ID]
title - String
Example
{
  "commentRequired": true,
  "description": "xyz789",
  "expireDate": RequestTemplateExpireDateUpdateInput,
  "frame": RequestTemplateFrameUpdateInput,
  "labelValues": ["4"],
  "title": "abc123"
}

RequestTemplateWhereInput

Description

Represents a Where input for: RequestTemplate

Fields
Input FieldDescription
AND - [AndRequestTemplateWhereInput]
OR - [OrRequestTemplateWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
commentRequired_eq - BooleanField is equal to given value
commentRequired_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
expireDate - RequestTemplateExpireDateWhereInput
frame - RequestTemplateFrameWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndRequestTemplateWhereInput],
  "OR": [OrRequestTemplateWhereInput],
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "commentRequired_eq": false,
  "commentRequired_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "expireDate": RequestTemplateExpireDateWhereInput,
  "frame": RequestTemplateFrameWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "title_contains": "xyz789",
  "title_ends_with": "xyz789",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["xyz789"],
  "title_ne": "abc123",
  "title_nin": ["abc123"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "abc123",
  "title_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

RequestTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

RequestWhereInput

Description

Represents a Where input for: Request

Fields
Input FieldDescription
AND - [RequestWhereInput]
OR - [RequestWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
approved_all - [ID]Field includes all given values.
approved_eq - [ID]Given value is equal to field
approved_exists - Boolean
approved_in - [ID]Field includes one of given value.
approved_nin - [ID]Field does not include any of the given values.
approvers_all - [ID]Field includes all given values.
approvers_eq - [ID]Given value is equal to field
approvers_exists - Boolean
approvers_in - [ID]Field includes one of given value.
approvers_nin - [ID]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
limitDate_eq - DateTimeField is equal to given value
limitDate_exists - BooleanField is set and exists
limitDate_gt - DateTimeField is greater than given value
limitDate_gte - DateTimeField is greater or equal than given value
limitDate_in - [DateTime]Given value includes field
limitDate_lt - DateTimeField is lower than given value
limitDate_lte - DateTimeField is lower or equal than given value
limitDate_ne - DateTimeField is not equal to given value
limitDate_nin - [DateTime]Given value does not includes field
rejected_all - [ID]Field includes all given values.
rejected_eq - [ID]Given value is equal to field
rejected_exists - Boolean
rejected_in - [ID]Field includes one of given value.
rejected_nin - [ID]Field does not include any of the given values.
status_in - [RequestStatusType]
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [RequestWhereInput],
  "OR": [RequestWhereInput],
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "approved_all": ["4"],
  "approved_eq": [4],
  "approved_exists": false,
  "approved_in": ["4"],
  "approved_nin": [4],
  "approvers_all": ["4"],
  "approvers_eq": [4],
  "approvers_exists": true,
  "approvers_in": ["4"],
  "approvers_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "inputs_every": InputWhereInput,
  "inputs_exists": true,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "limitDate_eq": "2007-12-03T10:15:30Z",
  "limitDate_exists": true,
  "limitDate_gt": "2007-12-03T10:15:30Z",
  "limitDate_gte": "2007-12-03T10:15:30Z",
  "limitDate_in": ["2007-12-03T10:15:30Z"],
  "limitDate_lt": "2007-12-03T10:15:30Z",
  "limitDate_lte": "2007-12-03T10:15:30Z",
  "limitDate_ne": "2007-12-03T10:15:30Z",
  "limitDate_nin": ["2007-12-03T10:15:30Z"],
  "rejected_all": ["4"],
  "rejected_eq": [4],
  "rejected_exists": true,
  "rejected_in": [4],
  "rejected_nin": ["4"],
  "status_in": ["Approved"],
  "template_all": [4],
  "template_eq": "4",
  "template_exists": false,
  "template_in": [4],
  "template_ne": "4",
  "template_nin": [4],
  "title_contains": "abc123",
  "title_ends_with": "abc123",
  "title_eq": "abc123",
  "title_exists": true,
  "title_in": ["abc123"],
  "title_ne": "xyz789",
  "title_nin": ["abc123"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "abc123",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

RequestWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Responsibles

Fields
Field NameDescription
accounts - [Account]
labelValues - [LabelValue]
Example
{
  "accounts": [Account],
  "labelValues": [LabelValue]
}

ResponsiblesWhereInput

Fields
Input FieldDescription
accounts_in - [ID]
labelValues_in - [ID]
Example
{
  "accounts_in": ["4"],
  "labelValues_in": ["4"]
}

Role

Description

Represents a Role

Fields
Field NameDescription
_id - ID
assignedGroups - [RoleAssignedGroup]
clearances - [MyClearances]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
name - String!
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "assignedGroups": [RoleAssignedGroup],
  "clearances": [MyClearances],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "abc123",
  "name": "abc123",
  "protected": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

RoleAssignedGroup

Description

Represents a RoleAssignedGroup

Fields
Field NameDescription
accessLevel - Int
group - String!
Example
{"accessLevel": 123, "group": "abc123"}

RoleAssignedGroupCreateInput

Description

Represents a RoleAssignedGroupCreateInput

Fields
Input FieldDescription
accessLevel - Int
group - String!
Example
{"accessLevel": 123, "group": "xyz789"}

RoleAssignedGroupUpdateInput

Description

Represents a RoleAssignedGroupUpdateInput

Fields
Input FieldDescription
accessLevel - Int
group - String
Example
{"accessLevel": 987, "group": "xyz789"}

RoleAssignedGroupWhereInput

Description

Represents a Where input for: RoleAssignedGroup

Fields
Input FieldDescription
accessLevel_eq - IntField is equal to given value
accessLevel_exists - BooleanField is set and exists
accessLevel_gt - IntField is greater than given value
accessLevel_gte - IntField is greater or equal than given value
accessLevel_in - [Int]Given value includes field
accessLevel_lt - IntField is lower than given value
accessLevel_lte - IntField is lower or equal than given value
accessLevel_ne - IntField is not equal to given value
accessLevel_nin - [Int]Given value does not includes field
group_contains - StringField contains given value, case-insensitive
group_ends_with - StringField ends with given value, case-insensitive
group_eq - StringField is equal to given value
group_exists - BooleanField is set and exists
group_in - [String]Given value includes field
group_ne - StringField is not equal to given value
group_nin - [String]Given value does not includes field
group_not_contains - StringField does not contains given value, case-insensitive
group_not_ends_with - StringField does not end with given value, case-insensitive
group_not_starts_with - StringField does not start with given value, case-insensitive
group_starts_with - StringField starts with given value, case-insensitive
Example
{
  "accessLevel_eq": 123,
  "accessLevel_exists": false,
  "accessLevel_gt": 123,
  "accessLevel_gte": 123,
  "accessLevel_in": [987],
  "accessLevel_lt": 123,
  "accessLevel_lte": 987,
  "accessLevel_ne": 987,
  "accessLevel_nin": [987],
  "group_contains": "abc123",
  "group_ends_with": "xyz789",
  "group_eq": "xyz789",
  "group_exists": true,
  "group_in": ["abc123"],
  "group_ne": "abc123",
  "group_nin": ["xyz789"],
  "group_not_contains": "abc123",
  "group_not_ends_with": "abc123",
  "group_not_starts_with": "xyz789",
  "group_starts_with": "xyz789"
}

RoleCreateInput

Description

Represents a RoleCreateInput

Fields
Input FieldDescription
assignedGroups - [RoleAssignedGroupCreateInput]
description - String
name - String!
Example
{
  "assignedGroups": [RoleAssignedGroupCreateInput],
  "description": "abc123",
  "name": "xyz789"
}

RoleOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

RoleUpdateInput

Description

Represents a RoleUpdateInput

Fields
Input FieldDescription
assignedGroups - [RoleAssignedGroupUpdateInput]
description - String
name - String
Example
{
  "assignedGroups": [RoleAssignedGroupUpdateInput],
  "description": "abc123",
  "name": "xyz789"
}

RoleWhereInput

Description

Represents a Where input for: Role

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
assignedGroups_every - RoleAssignedGroupWhereInput
assignedGroups_exists - Boolean
assignedGroups_none - RoleAssignedGroupWhereInput
assignedGroups_some - RoleAssignedGroupWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "assignedGroups_every": RoleAssignedGroupWhereInput,
  "assignedGroups_exists": false,
  "assignedGroups_none": RoleAssignedGroupWhereInput,
  "assignedGroups_some": RoleAssignedGroupWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

RoleWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Room

Fields
Field NameDescription
chatroom_id - String
code - String
create_at - String
create_by - String
delete_at - String
duration - String
entity_id - String
id - String
labels - [String]
last_activity_at - String
name - String
permissions - RoomPermissions
tenant_id - String
update_at - String
user_details - RoomDetails
valid_until - String
Example
{
  "chatroom_id": "abc123",
  "code": "abc123",
  "create_at": "abc123",
  "create_by": "abc123",
  "delete_at": "xyz789",
  "duration": "abc123",
  "entity_id": "abc123",
  "id": "xyz789",
  "labels": ["xyz789"],
  "last_activity_at": "xyz789",
  "name": "xyz789",
  "permissions": RoomPermissions,
  "tenant_id": "xyz789",
  "update_at": "xyz789",
  "user_details": RoomDetails,
  "valid_until": "abc123"
}

RoomAccessLog

Fields
Field NameDescription
id - String
last_activity_at - String
room_id - String
session_id - String
user_id - String
Example
{
  "id": "abc123",
  "last_activity_at": "xyz789",
  "room_id": "abc123",
  "session_id": "xyz789",
  "user_id": "xyz789"
}

RoomDetails

Fields
Field NameDescription
entity_id - String
group_id - String
name - String
user_id - String
Example
{
  "entity_id": "xyz789",
  "group_id": "xyz789",
  "name": "abc123",
  "user_id": "xyz789"
}

RoomHistory

Fields
Field NameDescription
code - String!
create_at - DateTime
create_by - String!
duration - String!
id - String!
last_activity_at - DateTime
name - String!
room_id - String!
user_create_by - Account
Example
{
  "code": "abc123",
  "create_at": "2007-12-03T10:15:30Z",
  "create_by": "abc123",
  "duration": "xyz789",
  "id": "xyz789",
  "last_activity_at": "2007-12-03T10:15:30Z",
  "name": "xyz789",
  "room_id": "xyz789",
  "user_create_by": Account
}

RoomHistoryDetails

Fields
Field NameDescription
chatroom_id - String!
code - String!
create_at - DateTime
create_by - String!
duration - String!
id - String!
last_activity_at - DateTime
name - String!
participants - [Account]
user_create_by - Account
users - [String!]
valid_until - String
Example
{
  "chatroom_id": "xyz789",
  "code": "abc123",
  "create_at": "2007-12-03T10:15:30Z",
  "create_by": "abc123",
  "duration": "abc123",
  "id": "abc123",
  "last_activity_at": "2007-12-03T10:15:30Z",
  "name": "abc123",
  "participants": [Account],
  "user_create_by": Account,
  "users": ["abc123"],
  "valid_until": "abc123"
}

RoomHistoryResponse

Fields
Field NameDescription
logs - [RoomHistory!]
Example
{"logs": [RoomHistory]}

RoomPermissions

Fields
Field NameDescription
allowed_guest_features - [String]
Example
{"allowed_guest_features": ["xyz789"]}

RoomUser

Fields
Field NameDescription
approved - Boolean
is_guest - Boolean
session_id - String
user_details - SessionDetails
user_id - String
Example
{
  "approved": true,
  "is_guest": false,
  "session_id": "xyz789",
  "user_details": SessionDetails,
  "user_id": "xyz789"
}

RoomUserList

Fields
Field NameDescription
users - [RoomUser]
Example
{"users": [RoomUser]}

Session

Fields
Field NameDescription
approved - BooleanIndicates if the session is approved
create_at - IntThe creation timestamp of the session
details - SessionDetailsDetails of the session
device_id - StringThe device ID associated with the session
entity_roles - StringThe entity roles assigned to the session
expires_at - IntThe expiration timestamp of the session
id - StringThe unique identifier of the session
is_guest - BooleanIndicates if the session is for a guest user
is_oauth - BooleanIndicates if the session uses OAuth
language - StringThe language associated with the session
last_activity_at - IntThe last activity timestamp of the session
props - JSONAdditional properties associated with the session
roles - StringThe roles assigned to the session
room_id - StringThe ID of the room associated with the session
tenant_id - StringThe tenant ID associated with the session
token - StringThe session token
update_at - IntThe last update timestamp of the session
user_contact_list - JSONThe user contact list for the session
user_email - StringThe email of the user associated with the session
user_id - StringThe user ID associated with the session
vision_user_id - StringThe Vision user ID associated with the session
Example
{
  "approved": false,
  "create_at": 987,
  "details": SessionDetails,
  "device_id": "xyz789",
  "entity_roles": "xyz789",
  "expires_at": 987,
  "id": "xyz789",
  "is_guest": false,
  "is_oauth": true,
  "language": "xyz789",
  "last_activity_at": 987,
  "props": {},
  "roles": "xyz789",
  "room_id": "abc123",
  "tenant_id": "xyz789",
  "token": "abc123",
  "update_at": 987,
  "user_contact_list": {},
  "user_email": "xyz789",
  "user_id": "xyz789",
  "vision_user_id": "abc123"
}

SessionDetails

Fields
Field NameDescription
capabilities - JSONThe capabilities of the session
current_state - JSONThe current state of the session
microphone - BooleanIndicates if the microphone is enabled
name - StringThe name of the session
room_features - JSONThe features of the room associated with the session
video_track - BooleanIndicates if the video track is enabled
video_track_type - StringThe type of the video track
Example
{
  "capabilities": {},
  "current_state": {},
  "microphone": true,
  "name": "xyz789",
  "room_features": {},
  "video_track": false,
  "video_track_type": "xyz789"
}

Site

Description

Represents a Site

Fields
Field NameDescription
_id - ID
accessToSites - [Site]
actionsCount - Int
Arguments
awaitingApproval - Boolean
coordinates - [Float!]!
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
devicesCount - Int
elements - [Element]
elementsCount - Int
inputs - [Input]
isRoot - Boolean
issues - [IssueInstance]
Arguments
issuesCount - Int
Arguments
labelValues - [LabelValue]
labelValuesIds - [ID]
log - [SiteLog]
myCalendarCount - Int
Arguments
myIssuesCount - Int
Arguments
name - String!
nearbySites - [Site]
Arguments
radius - Float!

Radius in meters

needsApproval - Boolean
parent - SiteSite Parent
parentId - IDSite Parent
parentsTree - [Site]
parentsTreeIds - [ID]
pendingAt - Date
pendingBy - Account
pendingById - ID
pendingInputs - [Input]
protected - Boolean
responsibles - Responsibles
sites - [Site]
sitesCount - Int
system - Boolean
template - SiteTemplate!
templateId - ID!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "accessToSites": [Site],
  "actionsCount": 123,
  "awaitingApproval": false,
  "coordinates": [987.65],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "devicesCount": 123,
  "elements": [Element],
  "elementsCount": 123,
  "inputs": [Input],
  "isRoot": true,
  "issues": [IssueInstance],
  "issuesCount": 987,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "log": [SiteLog],
  "myCalendarCount": 987,
  "myIssuesCount": 123,
  "name": "xyz789",
  "nearbySites": [Site],
  "needsApproval": false,
  "parent": Site,
  "parentId": 4,
  "parentsTree": [Site],
  "parentsTreeIds": ["4"],
  "pendingAt": "2007-12-03",
  "pendingBy": Account,
  "pendingById": "4",
  "pendingInputs": [Input],
  "protected": false,
  "responsibles": Responsibles,
  "sites": [Site],
  "sitesCount": 987,
  "system": false,
  "template": SiteTemplate,
  "templateId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

SiteCreateInput

Description

Represents a SiteCreateInput

Fields
Input FieldDescription
coordinates - [Float!]!
description - String
inputs - [InputCreateInput]
labelValues - [ID]
log - [SiteLogCreateInput]Record of this Site state changes
name - String!
parent - IDSite Parent
template - ID!
Example
{
  "coordinates": [123.45],
  "description": "xyz789",
  "inputs": [InputCreateInput],
  "labelValues": [4],
  "log": [SiteLogCreateInput],
  "name": "xyz789",
  "parent": "4",
  "template": 4
}

SiteLog

Description

Represents a SiteLog

Fields
Field NameDescription
action - String
by - Account
byId - ID
createdAt - DateTime
field - String
status - SiteLogStatus
to - SiteLogTo
type - String
Example
{
  "action": "xyz789",
  "by": Account,
  "byId": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "field": "abc123",
  "status": "approved",
  "to": SiteLogTo,
  "type": "abc123"
}

SiteLogCreateInput

Description

Represents a SiteLogCreateInput

Fields
Input FieldDescription
action - String
by - ID
field - String
status - SiteLogStatus
to - SiteLogToCreateInput
type - String
Example
{
  "action": "abc123",
  "by": 4,
  "field": "xyz789",
  "status": "approved",
  "to": SiteLogToCreateInput,
  "type": "xyz789"
}

SiteLogStatus

Values
Enum ValueDescription

approved

pending

rejected

reverted

Example
"approved"

SiteLogTo

Description

Represents a SiteLogTo

Fields
Field NameDescription
labelValues - [LabelValue]
labelValuesIds - [ID]
value - String
Example
{
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "value": "abc123"
}

SiteLogToCreateInput

Description

Represents a SiteLogToCreateInput

Fields
Input FieldDescription
labelValues - [ID]
value - String
Example
{"labelValues": [4], "value": "abc123"}

SiteLogToUpdateInput

Description

Represents a SiteLogToUpdateInput

Fields
Input FieldDescription
labelValues - [ID]
value - String
Example
{
  "labelValues": ["4"],
  "value": "xyz789"
}

SiteLogToWhereInput

Description

Represents a Where input for: SiteLogTo

Fields
Input FieldDescription
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
value_contains - StringField contains given value, case-insensitive
value_ends_with - StringField ends with given value, case-insensitive
value_eq - StringField is equal to given value
value_exists - BooleanField is set and exists
value_in - [String]Given value includes field
value_ne - StringField is not equal to given value
value_nin - [String]Given value does not includes field
value_not_contains - StringField does not contains given value, case-insensitive
value_not_ends_with - StringField does not end with given value, case-insensitive
value_not_starts_with - StringField does not start with given value, case-insensitive
value_starts_with - StringField starts with given value, case-insensitive
Example
{
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "value_contains": "xyz789",
  "value_ends_with": "abc123",
  "value_eq": "xyz789",
  "value_exists": true,
  "value_in": ["abc123"],
  "value_ne": "abc123",
  "value_nin": ["abc123"],
  "value_not_contains": "abc123",
  "value_not_ends_with": "abc123",
  "value_not_starts_with": "abc123",
  "value_starts_with": "xyz789"
}

SiteLogUpdateInput

Description

Represents a SiteLogUpdateInput

Fields
Input FieldDescription
action - String
by - ID
field - String
status - SiteLogStatus
to - SiteLogToUpdateInput
type - String
Example
{
  "action": "xyz789",
  "by": 4,
  "field": "abc123",
  "status": "approved",
  "to": SiteLogToUpdateInput,
  "type": "abc123"
}

SiteLogWhereInput

Description

Represents a Where input for: SiteLog

Fields
Input FieldDescription
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
field_contains - StringField contains given value, case-insensitive
field_ends_with - StringField ends with given value, case-insensitive
field_eq - StringField is equal to given value
field_exists - BooleanField is set and exists
field_in - [String]Given value includes field
field_ne - StringField is not equal to given value
field_nin - [String]Given value does not includes field
field_not_contains - StringField does not contains given value, case-insensitive
field_not_ends_with - StringField does not end with given value, case-insensitive
field_not_starts_with - StringField does not start with given value, case-insensitive
field_starts_with - StringField starts with given value, case-insensitive
status_eq - SiteLogStatusField is equal to given value
status_exists - SiteLogStatusField is set and exists
status_in - [SiteLogStatus]Given value includes field
status_ne - SiteLogStatusField is not equal to given value
status_nin - [SiteLogStatus]Given value does not includes field
to - SiteLogToWhereInput
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "action_contains": "xyz789",
  "action_ends_with": "xyz789",
  "action_eq": "abc123",
  "action_exists": false,
  "action_in": ["abc123"],
  "action_ne": "abc123",
  "action_nin": ["abc123"],
  "action_not_contains": "xyz789",
  "action_not_ends_with": "abc123",
  "action_not_starts_with": "xyz789",
  "action_starts_with": "abc123",
  "by_all": [4],
  "by_eq": 4,
  "by_exists": true,
  "by_in": ["4"],
  "by_ne": "4",
  "by_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "field_contains": "abc123",
  "field_ends_with": "abc123",
  "field_eq": "xyz789",
  "field_exists": true,
  "field_in": ["abc123"],
  "field_ne": "xyz789",
  "field_nin": ["abc123"],
  "field_not_contains": "xyz789",
  "field_not_ends_with": "abc123",
  "field_not_starts_with": "abc123",
  "field_starts_with": "abc123",
  "status_eq": "approved",
  "status_exists": "approved",
  "status_in": ["approved"],
  "status_ne": "approved",
  "status_nin": ["approved"],
  "to": SiteLogToWhereInput,
  "type_contains": "abc123",
  "type_ends_with": "xyz789",
  "type_eq": "abc123",
  "type_exists": true,
  "type_in": ["xyz789"],
  "type_ne": "abc123",
  "type_nin": ["xyz789"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "abc123",
  "type_not_starts_with": "xyz789",
  "type_starts_with": "xyz789"
}

SiteOrElement

Example
LeanElement

SiteOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

pendingAt_ASC

pendingAt_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SiteTemplate

Description

Represents a SiteTemplate

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
folder - SiteTemplateFolder!SiteTemplate Folder
folderId - ID!SiteTemplate Folder
frame - SiteTemplateFrame
icon - String
protected - Boolean
system - Boolean
title - String!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "archived": false,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "folder": SiteTemplateFolder,
  "folderId": "4",
  "frame": SiteTemplateFrame,
  "icon": "xyz789",
  "protected": false,
  "system": true,
  "title": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

SiteTemplateCreateInput

Description

Represents a SiteTemplateCreateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - ID!SiteTemplate Folder
frame - SiteTemplateFrameCreateInput
icon - String
title - String!
Example
{
  "archived": false,
  "description": "xyz789",
  "folder": 4,
  "frame": SiteTemplateFrameCreateInput,
  "icon": "abc123",
  "title": "xyz789"
}

SiteTemplateFolder

Description

Represents a SiteTemplateFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - SiteTemplateFolderSiteTemplateFolder Parent
parentId - IDSiteTemplateFolder Parent
parentsTree - [SiteTemplateFolder]
parentsTreeCount - Int
parentsTreeIds - [ID]
protected - Boolean
siteTemplateFoldersCount - Int
siteTemplatesCount - Int
Arguments
tenant - ID
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "abc123",
  "parent": SiteTemplateFolder,
  "parentId": 4,
  "parentsTree": [SiteTemplateFolder],
  "parentsTreeCount": 987,
  "parentsTreeIds": ["4"],
  "protected": false,
  "siteTemplateFoldersCount": 123,
  "siteTemplatesCount": 123,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

SiteTemplateFolderCreateInput

Description

Represents a SiteTemplateFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDSiteTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": "4"
}

SiteTemplateFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SiteTemplateFolderUpdateInput

Description

Represents a SiteTemplateFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDSiteTemplateFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": 4
}

SiteTemplateFolderWhereInput

Description

Represents a Where input for: SiteTemplateFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "context_contains": "abc123",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": false,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["xyz789"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "abc123",
  "context_not_starts_with": "abc123",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "parent_all": ["4"],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": true,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

SiteTemplateFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

SiteTemplateFrame

Description

Represents a SiteTemplateFrame

Fields
Field NameDescription
inputs - [Input]
parent - Site
parentId - ID
Example
{
  "inputs": [Input],
  "parent": Site,
  "parentId": "4"
}

SiteTemplateFrameCreateInput

Description

Represents a SiteTemplateFrameCreateInput

Fields
Input FieldDescription
inputs - [InputCreateInput]
parent - ID
Example
{
  "inputs": [InputCreateInput],
  "parent": "4"
}

SiteTemplateFrameUpdateInput

Description

Represents a SiteTemplateFrameUpdateInput

Fields
Input FieldDescription
inputs - [InputUpdateInput]
parent - ID
Example
{
  "inputs": [InputUpdateInput],
  "parent": "4"
}

SiteTemplateFrameWhereInput

Description

Represents a Where input for: SiteTemplateFrame

Fields
Input FieldDescription
inputs_every - InputWhereInput
inputs_exists - Boolean
inputs_none - InputWhereInput
inputs_some - InputWhereInput
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
Example
{
  "inputs_every": InputWhereInput,
  "inputs_exists": false,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": [4]
}

SiteTemplateOrFolder

Example
SiteTemplate

SiteTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

icon_ASC

icon_DESC

title_ASC

title_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SiteTemplateUpdateInput

Description

Represents a SiteTemplateUpdateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
description - String
folder - IDSiteTemplate Folder
frame - SiteTemplateFrameUpdateInput
icon - String
title - String
Example
{
  "archived": false,
  "description": "xyz789",
  "folder": "4",
  "frame": SiteTemplateFrameUpdateInput,
  "icon": "xyz789",
  "title": "abc123"
}

SiteTemplateWhereInput

Description

Represents a Where input for: SiteTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - SiteTemplateFolderWhereInput
folder_all - [ID]Given value includes all in array
folder_eq - IDField is equal to given value
folder_exists - BooleanField is set and exists
folder_in - [ID]Given value includes field
folder_ne - IDField is not equal to given value
folder_nin - [ID]Given value does not include field
frame - SiteTemplateFrameWhereInput
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": false,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": ["4"],
  "archivedBy_eq": 4,
  "archivedBy_exists": true,
  "archivedBy_in": ["4"],
  "archivedBy_ne": "4",
  "archivedBy_nin": ["4"],
  "archived_eq": false,
  "archived_ne": false,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "folder": SiteTemplateFolderWhereInput,
  "folder_all": [4],
  "folder_eq": 4,
  "folder_exists": true,
  "folder_in": [4],
  "folder_ne": "4",
  "folder_nin": [4],
  "frame": SiteTemplateFrameWhereInput,
  "icon_contains": "xyz789",
  "icon_ends_with": "abc123",
  "icon_eq": "abc123",
  "icon_exists": true,
  "icon_in": ["abc123"],
  "icon_ne": "xyz789",
  "icon_nin": ["abc123"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "xyz789",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": false,
  "title_contains": "xyz789",
  "title_ends_with": "xyz789",
  "title_eq": "abc123",
  "title_exists": true,
  "title_in": ["xyz789"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "abc123",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "abc123",
  "title_starts_with": "xyz789",
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

SiteTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

SiteUpdateInput

Description

Represents a SiteUpdateInput

Fields
Input FieldDescription
coordinates - [Float]
description - String
inputs - [InputUpdateInput]
labelValues - [ID]
log - [SiteLogUpdateInput]Record of this Site state changes
name - String
parent - IDSite Parent
template - ID
Example
{
  "coordinates": [123.45],
  "description": "abc123",
  "inputs": [InputUpdateInput],
  "labelValues": [4],
  "log": [SiteLogUpdateInput],
  "name": "xyz789",
  "parent": 4,
  "template": 4
}

SiteWhereInput

Description

Represents a Where input for: Site

Fields
Input FieldDescription
AND - [AndSiteWhereInput]
OR - [OrSiteWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
awaitingApproval_eq - Boolean
coordinates_all - [Int]Field includes all given values.
coordinates_eq - [Int]Given value is equal to field
coordinates_exists - Boolean
coordinates_in - [Int]Field includes one of given value.
coordinates_nin - [Int]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
isRoot_eq - BooleanField is equal to given value
isRoot_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
log_every - SiteLogWhereInput
log_exists - Boolean
log_none - SiteLogWhereInput
log_some - SiteLogWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
needsApproval_eq - Boolean
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
responsibles - ResponsiblesWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
template_all - [ID]Given value includes all in array
template_eq - IDField is equal to given value
template_exists - BooleanField is set and exists
template_in - [ID]Given value includes field
template_ne - IDField is not equal to given value
template_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndSiteWhereInput],
  "OR": [OrSiteWhereInput],
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "awaitingApproval_eq": true,
  "coordinates_all": [123],
  "coordinates_eq": [123],
  "coordinates_exists": false,
  "coordinates_in": [987],
  "coordinates_nin": [123],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "isRoot_eq": false,
  "isRoot_ne": false,
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "log_every": SiteLogWhereInput,
  "log_exists": true,
  "log_none": SiteLogWhereInput,
  "log_some": SiteLogWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "needsApproval_eq": false,
  "parent_all": [4],
  "parent_eq": "4",
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": 4,
  "parent_nin": [4],
  "parentsTree_all": ["4"],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": true,
  "parentsTree_in": [4],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": true,
  "responsibles": ResponsiblesWhereInput,
  "system_eq": true,
  "system_ne": true,
  "template_all": ["4"],
  "template_eq": 4,
  "template_exists": false,
  "template_in": [4],
  "template_ne": "4",
  "template_nin": ["4"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

SiteWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Skill

Description

Represents a Skill

Fields
Field NameDescription
_id - ID
chosenSkillLevels - [String]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
name - String!
protected - Boolean
renewal - SkillRenewal
renewalWarning - SkillRenewalWarning
skillGroup - SkillGroup!
skillGroupId - ID!
skillSpecificLevelsData - SkillSkillSpecificLevelsDatum
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "chosenSkillLevels": ["xyz789"],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "name": "xyz789",
  "protected": false,
  "renewal": SkillRenewal,
  "renewalWarning": SkillRenewalWarning,
  "skillGroup": SkillGroup,
  "skillGroupId": 4,
  "skillSpecificLevelsData": SkillSkillSpecificLevelsDatum,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

SkillCreateInput

Description

Represents a SkillCreateInput

Fields
Input FieldDescription
chosenSkillLevels - [String]
description - String
name - String!
renewal - SkillRenewalCreateInput
renewalWarning - SkillRenewalWarningCreateInput
skillGroup - ID!
skillSpecificLevelsData - SkillSkillSpecificLevelsDatumCreateInput
Example
{
  "chosenSkillLevels": ["abc123"],
  "description": "xyz789",
  "name": "abc123",
  "renewal": SkillRenewalCreateInput,
  "renewalWarning": SkillRenewalWarningCreateInput,
  "skillGroup": "4",
  "skillSpecificLevelsData": SkillSkillSpecificLevelsDatumCreateInput
}

SkillGroup

Description

Represents a SkillGroup

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
protected - Boolean
skillCount - Int
skills - [Skill]
subject - SkillSubject!
subjectId - ID!
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "xyz789",
  "protected": true,
  "skillCount": 123,
  "skills": [Skill],
  "subject": SkillSubject,
  "subjectId": 4,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

SkillGroupCreateInput

Description

Represents a SkillGroupCreateInput

Fields
Input FieldDescription
name - String!
subject - ID!
Example
{"name": "xyz789", "subject": 4}

SkillGroupOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SkillGroupUpdateInput

Description

Represents a SkillGroupUpdateInput

Fields
Input FieldDescription
name - String
subject - ID
Example
{"name": "abc123", "subject": 4}

SkillGroupWhereInput

Description

Represents a Where input for: SkillGroup

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
subject_all - [ID]Given value includes all in array
subject_eq - IDField is equal to given value
subject_exists - BooleanField is set and exists
subject_in - [ID]Given value includes field
subject_ne - IDField is not equal to given value
subject_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": false,
  "subject_all": [4],
  "subject_eq": 4,
  "subject_exists": false,
  "subject_in": [4],
  "subject_ne": 4,
  "subject_nin": [4],
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

SkillGroupWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

SkillLevel

Description

Represents a SkillLevel

Fields
Field NameDescription
_id - ID
account - Account!
accountId - ID!
acquisitionDate - DateTime
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
files - [File]
filesIds - [ID]
level - SkillLevelLevel
protected - Boolean
requiredLevel - SkillLevelRequiredLevel
skill - Skill!
skillId - ID!
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "account": Account,
  "accountId": 4,
  "acquisitionDate": "2007-12-03T10:15:30Z",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "files": [File],
  "filesIds": [4],
  "level": "EXPERT",
  "protected": true,
  "requiredLevel": "EXPERT",
  "skill": Skill,
  "skillId": 4,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

SkillLevelLevel

Values
Enum ValueDescription

EXPERT

HIGH_COMPETENCE

LOW_COMPETENCE

MEDIUM_COMPETENCE

NOT_APPLICABLE

NO_COMPETENCE

Example
"EXPERT"

SkillLevelOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

account_name_ASC

account_name_DESC

acquisitionDate_ASC

acquisitionDate_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

level_ASC

level_DESC

requiredLevel_ASC

requiredLevel_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SkillLevelRequiredLevel

Values
Enum ValueDescription

EXPERT

HIGH_COMPETENCE

LOW_COMPETENCE

MEDIUM_COMPETENCE

NOT_APPLICABLE

NO_COMPETENCE

Example
"EXPERT"

SkillLevelUpdateInput

Description

Represents a SkillLevelUpdateInput

Fields
Input FieldDescription
account - ID
acquisitionDate - DateTime
files - [ID]
level - SkillLevelLevel
requiredLevel - SkillLevelRequiredLevel
skill - ID
Example
{
  "account": "4",
  "acquisitionDate": "2007-12-03T10:15:30Z",
  "files": ["4"],
  "level": "EXPERT",
  "requiredLevel": "EXPERT",
  "skill": 4
}

SkillLevelWhereInput

Description

Represents a Where input for: SkillLevel

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
account - AccountWhereInput
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
acquisitionDate_eq - DateTimeField is equal to given value
acquisitionDate_exists - BooleanField is set and exists
acquisitionDate_gt - DateTimeField is greater than given value
acquisitionDate_gte - DateTimeField is greater or equal than given value
acquisitionDate_in - [DateTime]Given value includes field
acquisitionDate_lt - DateTimeField is lower than given value
acquisitionDate_lte - DateTimeField is lower or equal than given value
acquisitionDate_ne - DateTimeField is not equal to given value
acquisitionDate_nin - [DateTime]Given value does not includes field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
files_all - [ID]Field includes all given values.
files_eq - [ID]Given value is equal to field
files_exists - Boolean
files_in - [ID]Field includes one of given value.
files_nin - [ID]Field does not include any of the given values.
level_eq - SkillLevelLevelField is equal to given value
level_exists - SkillLevelLevelField is set and exists
level_in - [SkillLevelLevel]Given value includes field
level_ne - SkillLevelLevelField is not equal to given value
level_nin - [SkillLevelLevel]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
requiredLevel_eq - SkillLevelRequiredLevelField is equal to given value
requiredLevel_exists - SkillLevelRequiredLevelField is set and exists
requiredLevel_in - [SkillLevelRequiredLevel]Given value includes field
requiredLevel_ne - SkillLevelRequiredLevelField is not equal to given value
requiredLevel_nin - [SkillLevelRequiredLevel]Given value does not includes field
skill_all - [ID]Given value includes all in array
skill_eq - IDField is equal to given value
skill_exists - BooleanField is set and exists
skill_in - [ID]Given value includes field
skill_ne - IDField is not equal to given value
skill_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "account": AccountWhereInput,
  "account_all": [4],
  "account_eq": 4,
  "account_exists": true,
  "account_in": [4],
  "account_ne": 4,
  "account_nin": ["4"],
  "acquisitionDate_eq": "2007-12-03T10:15:30Z",
  "acquisitionDate_exists": true,
  "acquisitionDate_gt": "2007-12-03T10:15:30Z",
  "acquisitionDate_gte": "2007-12-03T10:15:30Z",
  "acquisitionDate_in": [
    "2007-12-03T10:15:30Z"
  ],
  "acquisitionDate_lt": "2007-12-03T10:15:30Z",
  "acquisitionDate_lte": "2007-12-03T10:15:30Z",
  "acquisitionDate_ne": "2007-12-03T10:15:30Z",
  "acquisitionDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "files_all": ["4"],
  "files_eq": ["4"],
  "files_exists": true,
  "files_in": [4],
  "files_nin": [4],
  "level_eq": "EXPERT",
  "level_exists": "EXPERT",
  "level_in": ["EXPERT"],
  "level_ne": "EXPERT",
  "level_nin": ["EXPERT"],
  "protected_eq": true,
  "protected_ne": false,
  "requiredLevel_eq": "EXPERT",
  "requiredLevel_exists": "EXPERT",
  "requiredLevel_in": ["EXPERT"],
  "requiredLevel_ne": "EXPERT",
  "requiredLevel_nin": ["EXPERT"],
  "skill_all": [4],
  "skill_eq": "4",
  "skill_exists": true,
  "skill_in": [4],
  "skill_ne": "4",
  "skill_nin": [4],
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

SkillLevelWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

SkillMatrix

Fields
Field NameDescription
data - [SkillMatrixData]
headers - [SkillMatrixHeader]
Example
{
  "data": [SkillMatrixData],
  "headers": [SkillMatrixHeader]
}

SkillMatrixData

Fields
Field NameDescription
accountId - ID
levels - [SkillLevel]
name - String
photo - String
username - String
Example
{
  "accountId": 4,
  "levels": [SkillLevel],
  "name": "abc123",
  "photo": "xyz789",
  "username": "xyz789"
}

SkillMatrixHeader

Fields
Field NameDescription
name - String
skillGroupId - ID
subheaders - [SkillMatrixSubHeader]
Example
{
  "name": "abc123",
  "skillGroupId": 4,
  "subheaders": [SkillMatrixSubHeader]
}

SkillMatrixSubHeader

Fields
Field NameDescription
name - String
skillId - ID
Example
{
  "name": "xyz789",
  "skillId": "4"
}

SkillMatrixWhere

Fields
Input FieldDescription
name - String
Example
{"name": "xyz789"}

SkillOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

renewalWarning_amount_ASC

renewalWarning_amount_DESC

renewalWarning_condition_ASC

renewalWarning_condition_DESC

renewalWarning_showIn_ASC

renewalWarning_showIn_DESC

renewal_amount_ASC

renewal_amount_DESC

renewal_condition_ASC

renewal_condition_DESC

renewal_showIn_ASC

renewal_showIn_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

SkillRenewal

Description

Represents a SkillRenewal

Fields
Field NameDescription
amount - Int!Amount in minutes
condition - SkillRenewalCondition
showIn - SkillRenewalShowIn
Example
{"amount": 123, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

SkillRenewalCreateInput

Description

Represents a SkillRenewalCreateInput

Fields
Input FieldDescription
amount - Int!Amount in minutes
condition - SkillRenewalCondition
showIn - SkillRenewalShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

SkillRenewalUpdateInput

Description

Represents a SkillRenewalUpdateInput

Fields
Input FieldDescription
amount - IntAmount in minutes
condition - SkillRenewalCondition
showIn - SkillRenewalShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalWarning

Description

Represents a SkillRenewalWarning

Fields
Field NameDescription
amount - Int!Amount in minutes
condition - SkillRenewalWarningCondition
showIn - SkillRenewalWarningShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalWarningCondition

Values
Enum ValueDescription

AFTER

BEFORE

Example
"AFTER"

SkillRenewalWarningCreateInput

Description

Represents a SkillRenewalWarningCreateInput

Fields
Input FieldDescription
amount - Int!Amount in minutes
condition - SkillRenewalWarningCondition
showIn - SkillRenewalWarningShowIn
Example
{"amount": 123, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalWarningShowIn

Values
Enum ValueDescription

DAYS

MONTHS

WEEKS

YEARS

Example
"DAYS"

SkillRenewalWarningUpdateInput

Description

Represents a SkillRenewalWarningUpdateInput

Fields
Input FieldDescription
amount - IntAmount in minutes
condition - SkillRenewalWarningCondition
showIn - SkillRenewalWarningShowIn
Example
{"amount": 987, "condition": "AFTER", "showIn": "DAYS"}

SkillRenewalWarningWhereInput

Description

Represents a Where input for: SkillRenewalWarning

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - SkillRenewalWarningConditionField is equal to given value
condition_exists - SkillRenewalWarningConditionField is set and exists
condition_in - [SkillRenewalWarningCondition]Given value includes field
condition_ne - SkillRenewalWarningConditionField is not equal to given value
condition_nin - [SkillRenewalWarningCondition]Given value does not includes field
showIn_eq - SkillRenewalWarningShowInField is equal to given value
showIn_exists - SkillRenewalWarningShowInField is set and exists
showIn_in - [SkillRenewalWarningShowIn]Given value includes field
showIn_ne - SkillRenewalWarningShowInField is not equal to given value
showIn_nin - [SkillRenewalWarningShowIn]Given value does not includes field
Example
{
  "amount_eq": 987,
  "amount_exists": true,
  "amount_gt": 123,
  "amount_gte": 123,
  "amount_in": [987],
  "amount_lt": 123,
  "amount_lte": 987,
  "amount_ne": 987,
  "amount_nin": [987],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

SkillRenewalWhereInput

Description

Represents a Where input for: SkillRenewal

Fields
Input FieldDescription
amount_eq - IntField is equal to given value
amount_exists - BooleanField is set and exists
amount_gt - IntField is greater than given value
amount_gte - IntField is greater or equal than given value
amount_in - [Int]Given value includes field
amount_lt - IntField is lower than given value
amount_lte - IntField is lower or equal than given value
amount_ne - IntField is not equal to given value
amount_nin - [Int]Given value does not includes field
condition_eq - SkillRenewalConditionField is equal to given value
condition_exists - SkillRenewalConditionField is set and exists
condition_in - [SkillRenewalCondition]Given value includes field
condition_ne - SkillRenewalConditionField is not equal to given value
condition_nin - [SkillRenewalCondition]Given value does not includes field
showIn_eq - SkillRenewalShowInField is equal to given value
showIn_exists - SkillRenewalShowInField is set and exists
showIn_in - [SkillRenewalShowIn]Given value includes field
showIn_ne - SkillRenewalShowInField is not equal to given value
showIn_nin - [SkillRenewalShowIn]Given value does not includes field
Example
{
  "amount_eq": 123,
  "amount_exists": false,
  "amount_gt": 123,
  "amount_gte": 987,
  "amount_in": [123],
  "amount_lt": 987,
  "amount_lte": 123,
  "amount_ne": 123,
  "amount_nin": [123],
  "condition_eq": "AFTER",
  "condition_exists": "AFTER",
  "condition_in": ["AFTER"],
  "condition_ne": "AFTER",
  "condition_nin": ["AFTER"],
  "showIn_eq": "DAYS",
  "showIn_exists": "DAYS",
  "showIn_in": ["DAYS"],
  "showIn_ne": "DAYS",
  "showIn_nin": ["DAYS"]
}

SkillSkillSpecificLevelsDatum

Description

Represents a SkillSkillSpecificLevelsDatum

Example
{
  "EXPERT": SkillSkillSpecificLevelsDatumEXPERT,
  "HIGH_COMPETENCE": SkillSkillSpecificLevelsDatumHIGH_COMPETENCE,
  "LOW_COMPETENCE": SkillSkillSpecificLevelsDatumLOW_COMPETENCE,
  "MEDIUM_COMPETENCE": SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCE,
  "NOT_APPLICABLE": SkillSkillSpecificLevelsDatumNOT_APPLICABLE,
  "NO_COMPETENCE": SkillSkillSpecificLevelsDatumNO_COMPETENCE
}

SkillSkillSpecificLevelsDatumCreateInput

Example
{
  "EXPERT": SkillSkillSpecificLevelsDatumEXPERTCreateInput,
  "HIGH_COMPETENCE": SkillSkillSpecificLevelsDatumHIGH_COMPETENCECreateInput,
  "LOW_COMPETENCE": SkillSkillSpecificLevelsDatumLOW_COMPETENCECreateInput,
  "MEDIUM_COMPETENCE": SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCECreateInput,
  "NOT_APPLICABLE": SkillSkillSpecificLevelsDatumNOT_APPLICABLECreateInput,
  "NO_COMPETENCE": SkillSkillSpecificLevelsDatumNO_COMPETENCECreateInput
}

SkillSkillSpecificLevelsDatumEXPERT

Description

Represents a SkillSkillSpecificLevelsDatumEXPERT

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumEXPERTCreateInput

Description

Represents a SkillSkillSpecificLevelsDatumEXPERTCreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumEXPERTUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumEXPERTUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumEXPERTWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumEXPERT

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

SkillSkillSpecificLevelsDatumHIGH_COMPETENCE

Description

Represents a SkillSkillSpecificLevelsDatumHIGH_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumHIGH_COMPETENCECreateInput

Description

Represents a SkillSkillSpecificLevelsDatumHIGH_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumHIGH_COMPETENCEUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumHIGH_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumHIGH_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumHIGH_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

SkillSkillSpecificLevelsDatumLOW_COMPETENCE

Description

Represents a SkillSkillSpecificLevelsDatumLOW_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumLOW_COMPETENCECreateInput

Description

Represents a SkillSkillSpecificLevelsDatumLOW_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumLOW_COMPETENCEUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumLOW_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumLOW_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumLOW_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCE

Description

Represents a SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCECreateInput

Description

Represents a SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCEUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSkillSpecificLevelsDatumNOT_APPLICABLE

Description

Represents a SkillSkillSpecificLevelsDatumNOT_APPLICABLE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumNOT_APPLICABLECreateInput

Description

Represents a SkillSkillSpecificLevelsDatumNOT_APPLICABLECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumNOT_APPLICABLEUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumNOT_APPLICABLEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumNOT_APPLICABLEWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumNOT_APPLICABLE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

SkillSkillSpecificLevelsDatumNO_COMPETENCE

Description

Represents a SkillSkillSpecificLevelsDatumNO_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSkillSpecificLevelsDatumNO_COMPETENCECreateInput

Description

Represents a SkillSkillSpecificLevelsDatumNO_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumNO_COMPETENCEUpdateInput

Description

Represents a SkillSkillSpecificLevelsDatumNO_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSkillSpecificLevelsDatumNO_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSkillSpecificLevelsDatumNO_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

SkillSkillSpecificLevelsDatumUpdateInput

Example
{
  "EXPERT": SkillSkillSpecificLevelsDatumEXPERTUpdateInput,
  "HIGH_COMPETENCE": SkillSkillSpecificLevelsDatumHIGH_COMPETENCEUpdateInput,
  "LOW_COMPETENCE": SkillSkillSpecificLevelsDatumLOW_COMPETENCEUpdateInput,
  "MEDIUM_COMPETENCE": SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCEUpdateInput,
  "NOT_APPLICABLE": SkillSkillSpecificLevelsDatumNOT_APPLICABLEUpdateInput,
  "NO_COMPETENCE": SkillSkillSpecificLevelsDatumNO_COMPETENCEUpdateInput
}

SkillSkillSpecificLevelsDatumWhereInput

Example
{
  "EXPERT": SkillSkillSpecificLevelsDatumEXPERTWhereInput,
  "HIGH_COMPETENCE": SkillSkillSpecificLevelsDatumHIGH_COMPETENCEWhereInput,
  "LOW_COMPETENCE": SkillSkillSpecificLevelsDatumLOW_COMPETENCEWhereInput,
  "MEDIUM_COMPETENCE": SkillSkillSpecificLevelsDatumMEDIUM_COMPETENCEWhereInput,
  "NOT_APPLICABLE": SkillSkillSpecificLevelsDatumNOT_APPLICABLEWhereInput,
  "NO_COMPETENCE": SkillSkillSpecificLevelsDatumNO_COMPETENCEWhereInput
}

SkillSubject

Description

Represents a SkillSubject

Fields
Field NameDescription
_id - ID
chosenSubjectLevels - [String]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
protected - Boolean
skillCount - Int
skillGroupCount - Int
subjectLevelsData - SkillSubjectSubjectLevelsDatum
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
userCount - Int
Example
{
  "_id": 4,
  "chosenSubjectLevels": ["abc123"],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "xyz789",
  "protected": true,
  "skillCount": 987,
  "skillGroupCount": 123,
  "subjectLevelsData": SkillSubjectSubjectLevelsDatum,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "userCount": 123
}

SkillSubjectCreateInput

Description

Represents a SkillSubjectCreateInput

Fields
Input FieldDescription
chosenSubjectLevels - [String]
name - String!
subjectLevelsData - SkillSubjectSubjectLevelsDatumCreateInput
Example
{
  "chosenSubjectLevels": ["xyz789"],
  "name": "abc123",
  "subjectLevelsData": SkillSubjectSubjectLevelsDatumCreateInput
}

SkillSubjectOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

skillCount_ASC

skillCount_DESC

skillGroupCount_ASC

skillGroupCount_DESC

updatedAt_ASC

updatedAt_DESC

userCount_ASC

userCount_DESC

Example
"_id_ASC"

SkillSubjectSubjectLevelsDatum

Description

Represents a SkillSubjectSubjectLevelsDatum

Example
{
  "EXPERT": SkillSubjectSubjectLevelsDatumEXPERT,
  "HIGH_COMPETENCE": SkillSubjectSubjectLevelsDatumHIGH_COMPETENCE,
  "LOW_COMPETENCE": SkillSubjectSubjectLevelsDatumLOW_COMPETENCE,
  "MEDIUM_COMPETENCE": SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCE,
  "NOT_APPLICABLE": SkillSubjectSubjectLevelsDatumNOT_APPLICABLE,
  "NO_COMPETENCE": SkillSubjectSubjectLevelsDatumNO_COMPETENCE
}

SkillSubjectSubjectLevelsDatumCreateInput

Example
{
  "EXPERT": SkillSubjectSubjectLevelsDatumEXPERTCreateInput,
  "HIGH_COMPETENCE": SkillSubjectSubjectLevelsDatumHIGH_COMPETENCECreateInput,
  "LOW_COMPETENCE": SkillSubjectSubjectLevelsDatumLOW_COMPETENCECreateInput,
  "MEDIUM_COMPETENCE": SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCECreateInput,
  "NOT_APPLICABLE": SkillSubjectSubjectLevelsDatumNOT_APPLICABLECreateInput,
  "NO_COMPETENCE": SkillSubjectSubjectLevelsDatumNO_COMPETENCECreateInput
}

SkillSubjectSubjectLevelsDatumEXPERT

Description

Represents a SkillSubjectSubjectLevelsDatumEXPERT

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumEXPERTCreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumEXPERTCreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumEXPERTUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumEXPERTUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumEXPERTWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumEXPERT

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "abc123",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSubjectSubjectLevelsDatumHIGH_COMPETENCE

Description

Represents a SkillSubjectSubjectLevelsDatumHIGH_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumHIGH_COMPETENCECreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumHIGH_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumHIGH_COMPETENCEUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumHIGH_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumHIGH_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumHIGH_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSubjectSubjectLevelsDatumLOW_COMPETENCE

Description

Represents a SkillSubjectSubjectLevelsDatumLOW_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumLOW_COMPETENCECreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumLOW_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumLOW_COMPETENCEUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumLOW_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumLOW_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumLOW_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCE

Description

Represents a SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCECreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCEUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSubjectSubjectLevelsDatumNOT_APPLICABLE

Description

Represents a SkillSubjectSubjectLevelsDatumNOT_APPLICABLE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumNOT_APPLICABLECreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumNOT_APPLICABLECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumNOT_APPLICABLEUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumNOT_APPLICABLEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "abc123"
}

SkillSubjectSubjectLevelsDatumNOT_APPLICABLEWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumNOT_APPLICABLE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

SkillSubjectSubjectLevelsDatumNO_COMPETENCE

Description

Represents a SkillSubjectSubjectLevelsDatumNO_COMPETENCE

Fields
Field NameDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumNO_COMPETENCECreateInput

Description

Represents a SkillSubjectSubjectLevelsDatumNO_COMPETENCECreateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "abc123",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumNO_COMPETENCEUpdateInput

Description

Represents a SkillSubjectSubjectLevelsDatumNO_COMPETENCEUpdateInput

Fields
Input FieldDescription
description - String
name - String
Example
{
  "description": "xyz789",
  "name": "xyz789"
}

SkillSubjectSubjectLevelsDatumNO_COMPETENCEWhereInput

Description

Represents a Where input for: SkillSubjectSubjectLevelsDatumNO_COMPETENCE

Fields
Input FieldDescription
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

SkillSubjectSubjectLevelsDatumUpdateInput

Example
{
  "EXPERT": SkillSubjectSubjectLevelsDatumEXPERTUpdateInput,
  "HIGH_COMPETENCE": SkillSubjectSubjectLevelsDatumHIGH_COMPETENCEUpdateInput,
  "LOW_COMPETENCE": SkillSubjectSubjectLevelsDatumLOW_COMPETENCEUpdateInput,
  "MEDIUM_COMPETENCE": SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCEUpdateInput,
  "NOT_APPLICABLE": SkillSubjectSubjectLevelsDatumNOT_APPLICABLEUpdateInput,
  "NO_COMPETENCE": SkillSubjectSubjectLevelsDatumNO_COMPETENCEUpdateInput
}

SkillSubjectSubjectLevelsDatumWhereInput

Example
{
  "EXPERT": SkillSubjectSubjectLevelsDatumEXPERTWhereInput,
  "HIGH_COMPETENCE": SkillSubjectSubjectLevelsDatumHIGH_COMPETENCEWhereInput,
  "LOW_COMPETENCE": SkillSubjectSubjectLevelsDatumLOW_COMPETENCEWhereInput,
  "MEDIUM_COMPETENCE": SkillSubjectSubjectLevelsDatumMEDIUM_COMPETENCEWhereInput,
  "NOT_APPLICABLE": SkillSubjectSubjectLevelsDatumNOT_APPLICABLEWhereInput,
  "NO_COMPETENCE": SkillSubjectSubjectLevelsDatumNO_COMPETENCEWhereInput
}

SkillSubjectUpdateInput

Description

Represents a SkillSubjectUpdateInput

Fields
Input FieldDescription
chosenSubjectLevels - [String]
name - String
subjectLevelsData - SkillSubjectSubjectLevelsDatumUpdateInput
Example
{
  "chosenSubjectLevels": ["abc123"],
  "name": "xyz789",
  "subjectLevelsData": SkillSubjectSubjectLevelsDatumUpdateInput
}

SkillSubjectWhereInput

Description

Represents a Where input for: SkillSubject

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
chosenSubjectLevels_all - [String]Field includes all given values.
chosenSubjectLevels_eq - [String]Given value is equal to field
chosenSubjectLevels_exists - Boolean
chosenSubjectLevels_in - [String]Field includes one of given value.
chosenSubjectLevels_nin - [String]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
subjectLevelsData - SkillSubjectSubjectLevelsDatumWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "chosenSubjectLevels_all": ["abc123"],
  "chosenSubjectLevels_eq": ["abc123"],
  "chosenSubjectLevels_exists": false,
  "chosenSubjectLevels_in": ["xyz789"],
  "chosenSubjectLevels_nin": ["abc123"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": false,
  "subjectLevelsData": SkillSubjectSubjectLevelsDatumWhereInput,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

SkillSubjectWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

SkillUpdateInput

Description

Represents a SkillUpdateInput

Fields
Input FieldDescription
chosenSkillLevels - [String]
description - String
name - String
renewal - SkillRenewalUpdateInput
renewalWarning - SkillRenewalWarningUpdateInput
skillGroup - ID
skillSpecificLevelsData - SkillSkillSpecificLevelsDatumUpdateInput
Example
{
  "chosenSkillLevels": ["abc123"],
  "description": "abc123",
  "name": "xyz789",
  "renewal": SkillRenewalUpdateInput,
  "renewalWarning": SkillRenewalWarningUpdateInput,
  "skillGroup": 4,
  "skillSpecificLevelsData": SkillSkillSpecificLevelsDatumUpdateInput
}

SkillWhereInput

Description

Represents a Where input for: Skill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
chosenSkillLevels_all - [String]Field includes all given values.
chosenSkillLevels_eq - [String]Given value is equal to field
chosenSkillLevels_exists - Boolean
chosenSkillLevels_in - [String]Field includes one of given value.
chosenSkillLevels_nin - [String]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
renewal - SkillRenewalWhereInput
renewalWarning - SkillRenewalWarningWhereInput
skillGroup_all - [ID]Given value includes all in array
skillGroup_eq - IDField is equal to given value
skillGroup_exists - BooleanField is set and exists
skillGroup_in - [ID]Given value includes field
skillGroup_ne - IDField is not equal to given value
skillGroup_nin - [ID]Given value does not include field
skillSpecificLevelsData - SkillSkillSpecificLevelsDatumWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "chosenSkillLevels_all": ["abc123"],
  "chosenSkillLevels_eq": ["xyz789"],
  "chosenSkillLevels_exists": true,
  "chosenSkillLevels_in": ["abc123"],
  "chosenSkillLevels_nin": ["abc123"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": false,
  "renewal": SkillRenewalWhereInput,
  "renewalWarning": SkillRenewalWarningWhereInput,
  "skillGroup_all": ["4"],
  "skillGroup_eq": "4",
  "skillGroup_exists": true,
  "skillGroup_in": ["4"],
  "skillGroup_ne": 4,
  "skillGroup_nin": ["4"],
  "skillSpecificLevelsData": SkillSkillSpecificLevelsDatumWhereInput,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

SkillWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

StateMachine

Description

Represents a StateMachine

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
folder - StateMachineFolder!StateMachine Folder
folderId - ID!StateMachine Folder
initState - String!State-Machine initial State
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!State-Machine Name
protected - Boolean
states - [StateMachineState]
system - Boolean
timeBomb - StateMachineTimeBomb
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "folder": StateMachineFolder,
  "folderId": "4",
  "initState": "abc123",
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "name": "xyz789",
  "protected": true,
  "states": [StateMachineState],
  "system": true,
  "timeBomb": StateMachineTimeBomb,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

StateMachineCreateInput

Description

Represents a StateMachineCreateInput

Fields
Input FieldDescription
folder - ID!StateMachine Folder
initState - String!State-Machine initial State
labelValues - [ID]
name - String!State-Machine Name
states - [StateMachineStateCreateInput]A set of states for this State-Machine
timeBomb - StateMachineTimeBombCreateInput
Example
{
  "folder": 4,
  "initState": "xyz789",
  "labelValues": [4],
  "name": "xyz789",
  "states": [StateMachineStateCreateInput],
  "timeBomb": StateMachineTimeBombCreateInput
}

StateMachineFolder

Description

Represents a StateMachineFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - StateMachineFolderStateMachineFolder Parent
parentId - IDStateMachineFolder Parent
parentsTree - [StateMachineFolder]
parentsTreeIds - [ID]
protected - Boolean
stateMachineFoldersCount - Int
stateMachinesCount - Int
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "xyz789",
  "parent": StateMachineFolder,
  "parentId": "4",
  "parentsTree": [StateMachineFolder],
  "parentsTreeIds": ["4"],
  "protected": true,
  "stateMachineFoldersCount": 987,
  "stateMachinesCount": 987,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

StateMachineFolderCreateInput

Description

Represents a StateMachineFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDStateMachineFolder Parent
Example
{
  "context": "xyz789",
  "name": "abc123",
  "parent": 4
}

StateMachineFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

StateMachineFolderUpdateInput

Description

Represents a StateMachineFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDStateMachineFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": "4"
}

StateMachineFolderWhereInput

Description

Represents a Where input for: StateMachineFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "context_contains": "abc123",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": false,
  "context_in": ["abc123"],
  "context_ne": "abc123",
  "context_nin": ["abc123"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "xyz789",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": [4],
  "parent_eq": 4,
  "parent_exists": true,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": true,
  "parentsTree_in": ["4"],
  "parentsTree_nin": ["4"],
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": true,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

StateMachineFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

StateMachineInstance

Description

Represents a StateMachineInstance

Fields
Field NameDescription
_id - ID
canceled - Boolean
canceledBy - Account
canceledById - ID
canceledBySystem - Boolean
canceledMessage - String
catalog - StateMachine!
catalogId - ID!
changeStateToken - String
createdAt - DateTime
currentState - String!
finishedAt - DateTimeTimestamp in which instance was finished
isRunning - BooleanFalse if instance is in a final state, true otherwise
log - [StateMachineInstanceLog]
states - [StateMachineInstanceState]
timeBomb - StateMachineInstanceTimeBomb
updatedAt - DateTime
wip - BooleanTrue is instance is on execution, false otherwise
Example
{
  "_id": 4,
  "canceled": false,
  "canceledBy": Account,
  "canceledById": "4",
  "canceledBySystem": true,
  "canceledMessage": "abc123",
  "catalog": StateMachine,
  "catalogId": "4",
  "changeStateToken": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "currentState": "xyz789",
  "finishedAt": "2007-12-03T10:15:30Z",
  "isRunning": true,
  "log": [StateMachineInstanceLog],
  "states": [StateMachineInstanceState],
  "timeBomb": StateMachineInstanceTimeBomb,
  "updatedAt": "2007-12-03T10:15:30Z",
  "wip": false
}

StateMachineInstanceCreateInput

Description

Represents a StateMachineInstanceCreateInput

Fields
Input FieldDescription
canceledBy - ID
catalog - ID!
changeStateToken - String
currentState - String!
finishedAt - DateTimeTimestamp in which instance was finished
isRunning - BooleanFalse if instance is in a final state, true otherwise
log - [StateMachineInstanceLogCreateInput]Record of this Instance state changes
states - [StateMachineInstanceStateCreateInput]
timeBomb - StateMachineInstanceTimeBombCreateInput
wip - BooleanTrue is instance is on execution, false otherwise
Example
{
  "canceledBy": "4",
  "catalog": 4,
  "changeStateToken": "abc123",
  "currentState": "xyz789",
  "finishedAt": "2007-12-03T10:15:30Z",
  "isRunning": false,
  "log": [StateMachineInstanceLogCreateInput],
  "states": [StateMachineInstanceStateCreateInput],
  "timeBomb": StateMachineInstanceTimeBombCreateInput,
  "wip": true
}

StateMachineInstanceLog

Description

Represents a StateMachineInstanceLog

Fields
Field NameDescription
action - String
by - Account
byId - ID
color - String
createdAt - DateTime
executed - [StateMachineInstanceLogExecuted]
from - String
icon - String
to - String
Example
{
  "action": "abc123",
  "by": Account,
  "byId": 4,
  "color": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "executed": [StateMachineInstanceLogExecuted],
  "from": "xyz789",
  "icon": "abc123",
  "to": "abc123"
}

StateMachineInstanceLogCreateInput

Description

Represents a StateMachineInstanceLogCreateInput

Fields
Input FieldDescription
action - String
by - ID
color - String
executed - [StateMachineInstanceLogExecutedCreateInput]
from - String
icon - String
to - String
Example
{
  "action": "xyz789",
  "by": "4",
  "color": "abc123",
  "executed": [
    StateMachineInstanceLogExecutedCreateInput
  ],
  "from": "xyz789",
  "icon": "abc123",
  "to": "xyz789"
}

StateMachineInstanceLogExecuted

Description

Represents a StateMachineInstanceLogExecuted

Fields
Field NameDescription
result - JSON
trigger - String
Example
{"result": {}, "trigger": "xyz789"}

StateMachineInstanceLogExecutedCreateInput

Description

Represents a StateMachineInstanceLogExecutedCreateInput

Fields
Input FieldDescription
result - JSON
trigger - String
Example
{"result": {}, "trigger": "abc123"}

StateMachineInstanceLogExecutedUpdateInput

Description

Represents a StateMachineInstanceLogExecutedUpdateInput

Fields
Input FieldDescription
result - JSON
trigger - String
Example
{"result": {}, "trigger": "xyz789"}

StateMachineInstanceLogExecutedWhereInput

Description

Represents a Where input for: StateMachineInstanceLogExecuted

Fields
Input FieldDescription
result - JSON
trigger_contains - StringField contains given value, case-insensitive
trigger_ends_with - StringField ends with given value, case-insensitive
trigger_eq - StringField is equal to given value
trigger_exists - BooleanField is set and exists
trigger_in - [String]Given value includes field
trigger_ne - StringField is not equal to given value
trigger_nin - [String]Given value does not includes field
trigger_not_contains - StringField does not contains given value, case-insensitive
trigger_not_ends_with - StringField does not end with given value, case-insensitive
trigger_not_starts_with - StringField does not start with given value, case-insensitive
trigger_starts_with - StringField starts with given value, case-insensitive
Example
{
  "result": {},
  "trigger_contains": "xyz789",
  "trigger_ends_with": "abc123",
  "trigger_eq": "abc123",
  "trigger_exists": true,
  "trigger_in": ["abc123"],
  "trigger_ne": "xyz789",
  "trigger_nin": ["xyz789"],
  "trigger_not_contains": "abc123",
  "trigger_not_ends_with": "abc123",
  "trigger_not_starts_with": "xyz789",
  "trigger_starts_with": "abc123"
}

StateMachineInstanceLogUpdateInput

Description

Represents a StateMachineInstanceLogUpdateInput

Fields
Input FieldDescription
action - String
by - ID
color - String
executed - [StateMachineInstanceLogExecutedUpdateInput]
from - String
icon - String
to - String
Example
{
  "action": "xyz789",
  "by": 4,
  "color": "xyz789",
  "executed": [
    StateMachineInstanceLogExecutedUpdateInput
  ],
  "from": "xyz789",
  "icon": "xyz789",
  "to": "xyz789"
}

StateMachineInstanceLogWhereInput

Description

Represents a Where input for: StateMachineInstanceLog

Fields
Input FieldDescription
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
by_all - [ID]Given value includes all in array
by_eq - IDField is equal to given value
by_exists - BooleanField is set and exists
by_in - [ID]Given value includes field
by_ne - IDField is not equal to given value
by_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
executed_every - StateMachineInstanceLogExecutedWhereInput
executed_exists - Boolean
executed_none - StateMachineInstanceLogExecutedWhereInput
executed_some - StateMachineInstanceLogExecutedWhereInput
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
Example
{
  "action_contains": "abc123",
  "action_ends_with": "xyz789",
  "action_eq": "abc123",
  "action_exists": false,
  "action_in": ["xyz789"],
  "action_ne": "xyz789",
  "action_nin": ["xyz789"],
  "action_not_contains": "abc123",
  "action_not_ends_with": "xyz789",
  "action_not_starts_with": "abc123",
  "action_starts_with": "abc123",
  "by_all": ["4"],
  "by_eq": 4,
  "by_exists": true,
  "by_in": [4],
  "by_ne": 4,
  "by_nin": ["4"],
  "color_contains": "abc123",
  "color_ends_with": "abc123",
  "color_eq": "xyz789",
  "color_exists": false,
  "color_in": ["xyz789"],
  "color_ne": "xyz789",
  "color_nin": ["xyz789"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "executed_every": StateMachineInstanceLogExecutedWhereInput,
  "executed_exists": false,
  "executed_none": StateMachineInstanceLogExecutedWhereInput,
  "executed_some": StateMachineInstanceLogExecutedWhereInput,
  "from_contains": "xyz789",
  "from_ends_with": "xyz789",
  "from_eq": "abc123",
  "from_exists": false,
  "from_in": ["xyz789"],
  "from_ne": "abc123",
  "from_nin": ["abc123"],
  "from_not_contains": "xyz789",
  "from_not_ends_with": "abc123",
  "from_not_starts_with": "xyz789",
  "from_starts_with": "xyz789",
  "icon_contains": "abc123",
  "icon_ends_with": "xyz789",
  "icon_eq": "xyz789",
  "icon_exists": false,
  "icon_in": ["xyz789"],
  "icon_ne": "xyz789",
  "icon_nin": ["abc123"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "xyz789",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "to_contains": "abc123",
  "to_ends_with": "abc123",
  "to_eq": "abc123",
  "to_exists": true,
  "to_in": ["xyz789"],
  "to_ne": "xyz789",
  "to_nin": ["abc123"],
  "to_not_contains": "xyz789",
  "to_not_ends_with": "xyz789",
  "to_not_starts_with": "abc123",
  "to_starts_with": "xyz789"
}

StateMachineInstanceState

Description

Represents a StateMachineInstanceState

Fields
Field NameDescription
_id - ID
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - String!State Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineInstanceStateTransition]
Example
{
  "_id": 4,
  "color": "xyz789",
  "executable": true,
  "failure": true,
  "name": "xyz789",
  "refreshTimer": 987,
  "transitions": [StateMachineInstanceStateTransition]
}

StateMachineInstanceStateCreateInput

Description

Represents a StateMachineInstanceStateCreateInput

Fields
Input FieldDescription
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - String!State Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineInstanceStateTransitionCreateInput]A set of Transitions for this State
Example
{
  "color": "abc123",
  "executable": true,
  "failure": false,
  "name": "abc123",
  "refreshTimer": 987,
  "transitions": [
    StateMachineInstanceStateTransitionCreateInput
  ]
}

StateMachineInstanceStateTransition

Description

Represents a StateMachineInstanceStateTransition

Fields
Field NameDescription
_id - ID
action - String!Name/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
isFinal - BooleanIf this Transition leads to a final state
isToExecutable - BooleanIf this Transition leads to an execution state
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineInstanceStateTransitionPost
pre - StateMachineInstanceStateTransitionPre
to - String!Current State After this Transition is executed
Example
{
  "_id": "4",
  "action": "xyz789",
  "color": "xyz789",
  "icon": "abc123",
  "isFinal": true,
  "isToExecutable": false,
  "order": 123,
  "position": 123,
  "post": StateMachineInstanceStateTransitionPost,
  "pre": StateMachineInstanceStateTransitionPre,
  "to": "xyz789"
}

StateMachineInstanceStateTransitionCreateInput

Description

Represents a StateMachineInstanceStateTransitionCreateInput

Fields
Input FieldDescription
action - String!Name/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineInstanceStateTransitionPostCreateInput
pre - StateMachineInstanceStateTransitionPreCreateInput
to - String!Current State After this Transition is executed
Example
{
  "action": "abc123",
  "color": "abc123",
  "icon": "xyz789",
  "order": 987,
  "position": 123,
  "post": StateMachineInstanceStateTransitionPostCreateInput,
  "pre": StateMachineInstanceStateTransitionPreCreateInput,
  "to": "abc123"
}

StateMachineInstanceStateTransitionPost

Description

Represents a StateMachineInstanceStateTransitionPost

Fields
Field NameDescription
fillForm - [StateMachineInstanceStateTransitionPostFillForm]
Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPostFillForm
  ]
}

StateMachineInstanceStateTransitionPostCreateInput

Description

Represents a StateMachineInstanceStateTransitionPostCreateInput

Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPostFillFormCreateInput
  ]
}

StateMachineInstanceStateTransitionPostFillForm

Description

Represents a StateMachineInstanceStateTransitionPostFillForm

Example
{
  "_id": "4",
  "form": [
    StateMachineInstanceStateTransitionPostFillFormForm
  ],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPostFillFormCreateInput

Description

Represents a StateMachineInstanceStateTransitionPostFillFormCreateInput

Example
{
  "form": [
    StateMachineInstanceStateTransitionPostFillFormFormCreateInput
  ],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPostFillFormForm

Description

Represents a StateMachineInstanceStateTransitionPostFillFormForm

Fields
Field NameDescription
_id - ID
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "_id": 4,
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "xyz789",
  "required": true
}

StateMachineInstanceStateTransitionPostFillFormFormCreateInput

Description

Represents a StateMachineInstanceStateTransitionPostFillFormFormCreateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "answer": "abc123",
  "options": ["xyz789"],
  "question": "abc123",
  "required": true
}

StateMachineInstanceStateTransitionPostFillFormFormUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPostFillFormFormUpdateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String
required - Boolean
Example
{
  "answer": "abc123",
  "options": ["xyz789"],
  "question": "xyz789",
  "required": false
}

StateMachineInstanceStateTransitionPostFillFormFormWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPostFillFormForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
answer_contains - StringField contains given value, case-insensitive
answer_ends_with - StringField ends with given value, case-insensitive
answer_eq - StringField is equal to given value
answer_exists - BooleanField is set and exists
answer_in - [String]Given value includes field
answer_ne - StringField is not equal to given value
answer_nin - [String]Given value does not includes field
answer_not_contains - StringField does not contains given value, case-insensitive
answer_not_ends_with - StringField does not end with given value, case-insensitive
answer_not_starts_with - StringField does not start with given value, case-insensitive
answer_starts_with - StringField starts with given value, case-insensitive
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
question_contains - StringField contains given value, case-insensitive
question_ends_with - StringField ends with given value, case-insensitive
question_eq - StringField is equal to given value
question_exists - BooleanField is set and exists
question_in - [String]Given value includes field
question_ne - StringField is not equal to given value
question_nin - [String]Given value does not includes field
question_not_contains - StringField does not contains given value, case-insensitive
question_not_ends_with - StringField does not end with given value, case-insensitive
question_not_starts_with - StringField does not start with given value, case-insensitive
question_starts_with - StringField starts with given value, case-insensitive
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "answer_contains": "abc123",
  "answer_ends_with": "abc123",
  "answer_eq": "xyz789",
  "answer_exists": false,
  "answer_in": ["abc123"],
  "answer_ne": "xyz789",
  "answer_nin": ["xyz789"],
  "answer_not_contains": "abc123",
  "answer_not_ends_with": "xyz789",
  "answer_not_starts_with": "abc123",
  "answer_starts_with": "abc123",
  "options_all": ["abc123"],
  "options_eq": ["abc123"],
  "options_exists": true,
  "options_in": ["xyz789"],
  "options_nin": ["abc123"],
  "question_contains": "xyz789",
  "question_ends_with": "abc123",
  "question_eq": "xyz789",
  "question_exists": true,
  "question_in": ["xyz789"],
  "question_ne": "abc123",
  "question_nin": ["xyz789"],
  "question_not_contains": "xyz789",
  "question_not_ends_with": "abc123",
  "question_not_starts_with": "xyz789",
  "question_starts_with": "xyz789",
  "required_eq": false,
  "required_ne": true
}

StateMachineInstanceStateTransitionPostFillFormType

Values
Enum ValueDescription

Confirmation

Example
"Confirmation"

StateMachineInstanceStateTransitionPostFillFormUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPostFillFormUpdateInput

Example
{
  "form": [
    StateMachineInstanceStateTransitionPostFillFormFormUpdateInput
  ],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPostFillFormWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPostFillForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
form_every - StateMachineInstanceStateTransitionPostFillFormFormWhereInput
form_exists - Boolean
form_none - StateMachineInstanceStateTransitionPostFillFormFormWhereInput
form_some - StateMachineInstanceStateTransitionPostFillFormFormWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
type_eq - StateMachineInstanceStateTransitionPostFillFormTypeField is equal to given value
type_exists - StateMachineInstanceStateTransitionPostFillFormTypeField is set and exists
type_in - [StateMachineInstanceStateTransitionPostFillFormType]Given value includes field
type_ne - StateMachineInstanceStateTransitionPostFillFormTypeField is not equal to given value
type_nin - [StateMachineInstanceStateTransitionPostFillFormType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "form_every": StateMachineInstanceStateTransitionPostFillFormFormWhereInput,
  "form_exists": true,
  "form_none": StateMachineInstanceStateTransitionPostFillFormFormWhereInput,
  "form_some": StateMachineInstanceStateTransitionPostFillFormFormWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "type_eq": "Confirmation",
  "type_exists": "Confirmation",
  "type_in": ["Confirmation"],
  "type_ne": "Confirmation",
  "type_nin": ["Confirmation"]
}

StateMachineInstanceStateTransitionPostUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPostUpdateInput

Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPostFillFormUpdateInput
  ]
}

StateMachineInstanceStateTransitionPostWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPost

Example
{
  "fillForm_every": StateMachineInstanceStateTransitionPostFillFormWhereInput,
  "fillForm_exists": true,
  "fillForm_none": StateMachineInstanceStateTransitionPostFillFormWhereInput,
  "fillForm_some": StateMachineInstanceStateTransitionPostFillFormWhereInput
}

StateMachineInstanceStateTransitionPre

Description

Represents a StateMachineInstanceStateTransitionPre

Fields
Field NameDescription
fillForm - [StateMachineInstanceStateTransitionPreFillForm]
Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPreFillForm
  ]
}

StateMachineInstanceStateTransitionPreCreateInput

Description

Represents a StateMachineInstanceStateTransitionPreCreateInput

Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPreFillFormCreateInput
  ]
}

StateMachineInstanceStateTransitionPreFillForm

Description

Represents a StateMachineInstanceStateTransitionPreFillForm

Example
{
  "_id": "4",
  "form": [
    StateMachineInstanceStateTransitionPreFillFormForm
  ],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPreFillFormCreateInput

Description

Represents a StateMachineInstanceStateTransitionPreFillFormCreateInput

Example
{
  "form": [
    StateMachineInstanceStateTransitionPreFillFormFormCreateInput
  ],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPreFillFormForm

Description

Represents a StateMachineInstanceStateTransitionPreFillFormForm

Fields
Field NameDescription
_id - ID
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "_id": "4",
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "xyz789",
  "required": true
}

StateMachineInstanceStateTransitionPreFillFormFormCreateInput

Description

Represents a StateMachineInstanceStateTransitionPreFillFormFormCreateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "abc123",
  "required": false
}

StateMachineInstanceStateTransitionPreFillFormFormUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPreFillFormFormUpdateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String
required - Boolean
Example
{
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "xyz789",
  "required": true
}

StateMachineInstanceStateTransitionPreFillFormFormWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPreFillFormForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
answer_contains - StringField contains given value, case-insensitive
answer_ends_with - StringField ends with given value, case-insensitive
answer_eq - StringField is equal to given value
answer_exists - BooleanField is set and exists
answer_in - [String]Given value includes field
answer_ne - StringField is not equal to given value
answer_nin - [String]Given value does not includes field
answer_not_contains - StringField does not contains given value, case-insensitive
answer_not_ends_with - StringField does not end with given value, case-insensitive
answer_not_starts_with - StringField does not start with given value, case-insensitive
answer_starts_with - StringField starts with given value, case-insensitive
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
question_contains - StringField contains given value, case-insensitive
question_ends_with - StringField ends with given value, case-insensitive
question_eq - StringField is equal to given value
question_exists - BooleanField is set and exists
question_in - [String]Given value includes field
question_ne - StringField is not equal to given value
question_nin - [String]Given value does not includes field
question_not_contains - StringField does not contains given value, case-insensitive
question_not_ends_with - StringField does not end with given value, case-insensitive
question_not_starts_with - StringField does not start with given value, case-insensitive
question_starts_with - StringField starts with given value, case-insensitive
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "answer_contains": "xyz789",
  "answer_ends_with": "abc123",
  "answer_eq": "xyz789",
  "answer_exists": false,
  "answer_in": ["abc123"],
  "answer_ne": "abc123",
  "answer_nin": ["abc123"],
  "answer_not_contains": "abc123",
  "answer_not_ends_with": "xyz789",
  "answer_not_starts_with": "abc123",
  "answer_starts_with": "abc123",
  "options_all": ["xyz789"],
  "options_eq": ["abc123"],
  "options_exists": false,
  "options_in": ["abc123"],
  "options_nin": ["abc123"],
  "question_contains": "abc123",
  "question_ends_with": "xyz789",
  "question_eq": "xyz789",
  "question_exists": true,
  "question_in": ["abc123"],
  "question_ne": "xyz789",
  "question_nin": ["xyz789"],
  "question_not_contains": "abc123",
  "question_not_ends_with": "abc123",
  "question_not_starts_with": "xyz789",
  "question_starts_with": "abc123",
  "required_eq": false,
  "required_ne": true
}

StateMachineInstanceStateTransitionPreFillFormType

Values
Enum ValueDescription

Confirmation

Example
"Confirmation"

StateMachineInstanceStateTransitionPreFillFormUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPreFillFormUpdateInput

Example
{
  "form": [
    StateMachineInstanceStateTransitionPreFillFormFormUpdateInput
  ],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineInstanceStateTransitionPreFillFormWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPreFillForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
form_every - StateMachineInstanceStateTransitionPreFillFormFormWhereInput
form_exists - Boolean
form_none - StateMachineInstanceStateTransitionPreFillFormFormWhereInput
form_some - StateMachineInstanceStateTransitionPreFillFormFormWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
type_eq - StateMachineInstanceStateTransitionPreFillFormTypeField is equal to given value
type_exists - StateMachineInstanceStateTransitionPreFillFormTypeField is set and exists
type_in - [StateMachineInstanceStateTransitionPreFillFormType]Given value includes field
type_ne - StateMachineInstanceStateTransitionPreFillFormTypeField is not equal to given value
type_nin - [StateMachineInstanceStateTransitionPreFillFormType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "form_every": StateMachineInstanceStateTransitionPreFillFormFormWhereInput,
  "form_exists": true,
  "form_none": StateMachineInstanceStateTransitionPreFillFormFormWhereInput,
  "form_some": StateMachineInstanceStateTransitionPreFillFormFormWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "type_eq": "Confirmation",
  "type_exists": "Confirmation",
  "type_in": ["Confirmation"],
  "type_ne": "Confirmation",
  "type_nin": ["Confirmation"]
}

StateMachineInstanceStateTransitionPreUpdateInput

Description

Represents a StateMachineInstanceStateTransitionPreUpdateInput

Example
{
  "fillForm": [
    StateMachineInstanceStateTransitionPreFillFormUpdateInput
  ]
}

StateMachineInstanceStateTransitionPreWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransitionPre

Example
{
  "fillForm_every": StateMachineInstanceStateTransitionPreFillFormWhereInput,
  "fillForm_exists": true,
  "fillForm_none": StateMachineInstanceStateTransitionPreFillFormWhereInput,
  "fillForm_some": StateMachineInstanceStateTransitionPreFillFormWhereInput
}

StateMachineInstanceStateTransitionUpdateInput

Description

Represents a StateMachineInstanceStateTransitionUpdateInput

Fields
Input FieldDescription
action - StringName/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineInstanceStateTransitionPostUpdateInput
pre - StateMachineInstanceStateTransitionPreUpdateInput
to - StringCurrent State After this Transition is executed
Example
{
  "action": "xyz789",
  "color": "xyz789",
  "icon": "xyz789",
  "order": 123,
  "position": 123,
  "post": StateMachineInstanceStateTransitionPostUpdateInput,
  "pre": StateMachineInstanceStateTransitionPreUpdateInput,
  "to": "xyz789"
}

StateMachineInstanceStateTransitionWhereInput

Description

Represents a Where input for: StateMachineInstanceStateTransition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
isFinal_eq - BooleanField is equal to given value
isFinal_ne - BooleanField is not equal to given value
isToExecutable_eq - BooleanField is equal to given value
isToExecutable_ne - BooleanField is not equal to given value
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
post - StateMachineInstanceStateTransitionPostWhereInput
pre - StateMachineInstanceStateTransitionPreWhereInput
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "action_contains": "abc123",
  "action_ends_with": "xyz789",
  "action_eq": "abc123",
  "action_exists": true,
  "action_in": ["xyz789"],
  "action_ne": "xyz789",
  "action_nin": ["xyz789"],
  "action_not_contains": "abc123",
  "action_not_ends_with": "abc123",
  "action_not_starts_with": "abc123",
  "action_starts_with": "abc123",
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["xyz789"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "icon_contains": "xyz789",
  "icon_ends_with": "xyz789",
  "icon_eq": "xyz789",
  "icon_exists": true,
  "icon_in": ["xyz789"],
  "icon_ne": "xyz789",
  "icon_nin": ["abc123"],
  "icon_not_contains": "abc123",
  "icon_not_ends_with": "abc123",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "isFinal_eq": true,
  "isFinal_ne": false,
  "isToExecutable_eq": false,
  "isToExecutable_ne": true,
  "order_eq": 123,
  "order_exists": true,
  "order_gt": 987,
  "order_gte": 123,
  "order_in": [987],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [123],
  "position_eq": 987,
  "position_exists": false,
  "position_gt": 987,
  "position_gte": 123,
  "position_in": [123],
  "position_lt": 123,
  "position_lte": 987,
  "position_ne": 987,
  "position_nin": [987],
  "post": StateMachineInstanceStateTransitionPostWhereInput,
  "pre": StateMachineInstanceStateTransitionPreWhereInput,
  "to_contains": "xyz789",
  "to_ends_with": "xyz789",
  "to_eq": "xyz789",
  "to_exists": true,
  "to_in": ["abc123"],
  "to_ne": "xyz789",
  "to_nin": ["abc123"],
  "to_not_contains": "xyz789",
  "to_not_ends_with": "xyz789",
  "to_not_starts_with": "xyz789",
  "to_starts_with": "xyz789"
}

StateMachineInstanceStateUpdateInput

Description

Represents a StateMachineInstanceStateUpdateInput

Fields
Input FieldDescription
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - StringState Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineInstanceStateTransitionUpdateInput]A set of Transitions for this State
Example
{
  "color": "xyz789",
  "executable": false,
  "failure": true,
  "name": "xyz789",
  "refreshTimer": 987,
  "transitions": [
    StateMachineInstanceStateTransitionUpdateInput
  ]
}

StateMachineInstanceStateWhereInput

Description

Represents a Where input for: StateMachineInstanceState

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
executable_eq - BooleanField is equal to given value
executable_ne - BooleanField is not equal to given value
failure_eq - BooleanField is equal to given value
failure_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
refreshTimer_eq - IntField is equal to given value
refreshTimer_exists - BooleanField is set and exists
refreshTimer_gt - IntField is greater than given value
refreshTimer_gte - IntField is greater or equal than given value
refreshTimer_in - [Int]Given value includes field
refreshTimer_lt - IntField is lower than given value
refreshTimer_lte - IntField is lower or equal than given value
refreshTimer_ne - IntField is not equal to given value
refreshTimer_nin - [Int]Given value does not includes field
transitions_every - StateMachineInstanceStateTransitionWhereInput
transitions_exists - Boolean
transitions_none - StateMachineInstanceStateTransitionWhereInput
transitions_some - StateMachineInstanceStateTransitionWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "executable_eq": true,
  "executable_ne": true,
  "failure_eq": true,
  "failure_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "refreshTimer_eq": 123,
  "refreshTimer_exists": true,
  "refreshTimer_gt": 123,
  "refreshTimer_gte": 987,
  "refreshTimer_in": [123],
  "refreshTimer_lt": 987,
  "refreshTimer_lte": 987,
  "refreshTimer_ne": 987,
  "refreshTimer_nin": [987],
  "transitions_every": StateMachineInstanceStateTransitionWhereInput,
  "transitions_exists": false,
  "transitions_none": StateMachineInstanceStateTransitionWhereInput,
  "transitions_some": StateMachineInstanceStateTransitionWhereInput
}

StateMachineInstanceTimeBomb

Description

Represents a StateMachineInstanceTimeBomb

Fields
Field NameDescription
_id - ID
activation - StateMachineInstanceTimeBombActivation
deactivation - StateMachineInstanceTimeBombDeactivation
fallback - StateMachineInstanceTimeBombFallback
isActive - Boolean
timer - Int!In Seconds
Example
{
  "_id": "4",
  "activation": StateMachineInstanceTimeBombActivation,
  "deactivation": StateMachineInstanceTimeBombDeactivation,
  "fallback": StateMachineInstanceTimeBombFallback,
  "isActive": false,
  "timer": 123
}

StateMachineInstanceTimeBombActivation

Description

Represents a StateMachineInstanceTimeBombActivation

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "abc123",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineInstanceTimeBombActivationCreateInput

Description

Represents a StateMachineInstanceTimeBombActivationCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "xyz789"}

StateMachineInstanceTimeBombActivationUpdateInput

Description

Represents a StateMachineInstanceTimeBombActivationUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "xyz789"}

StateMachineInstanceTimeBombActivationWhereInput

Description

Represents a Where input for: StateMachineInstanceTimeBombActivation

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "xyz789",
  "state_ends_with": "xyz789",
  "state_eq": "abc123",
  "state_exists": true,
  "state_in": ["abc123"],
  "state_ne": "abc123",
  "state_nin": ["xyz789"],
  "state_not_contains": "xyz789",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "abc123",
  "state_starts_with": "abc123",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": false,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineInstanceTimeBombCreateInput

Description

Represents a StateMachineInstanceTimeBombCreateInput

Example
{
  "activation": StateMachineInstanceTimeBombActivationCreateInput,
  "deactivation": StateMachineInstanceTimeBombDeactivationCreateInput,
  "fallback": StateMachineInstanceTimeBombFallbackCreateInput,
  "timer": 123
}

StateMachineInstanceTimeBombDeactivation

Description

Represents a StateMachineInstanceTimeBombDeactivation

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "xyz789",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineInstanceTimeBombDeactivationCreateInput

Description

Represents a StateMachineInstanceTimeBombDeactivationCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "abc123"}

StateMachineInstanceTimeBombDeactivationUpdateInput

Description

Represents a StateMachineInstanceTimeBombDeactivationUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "abc123"}

StateMachineInstanceTimeBombDeactivationWhereInput

Description

Represents a Where input for: StateMachineInstanceTimeBombDeactivation

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "xyz789",
  "state_ends_with": "xyz789",
  "state_eq": "abc123",
  "state_exists": true,
  "state_in": ["xyz789"],
  "state_ne": "abc123",
  "state_nin": ["abc123"],
  "state_not_contains": "xyz789",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "xyz789",
  "state_starts_with": "abc123",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": true,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineInstanceTimeBombFallback

Description

Represents a StateMachineInstanceTimeBombFallback

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "xyz789",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineInstanceTimeBombFallbackCreateInput

Description

Represents a StateMachineInstanceTimeBombFallbackCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "xyz789"}

StateMachineInstanceTimeBombFallbackUpdateInput

Description

Represents a StateMachineInstanceTimeBombFallbackUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "abc123"}

StateMachineInstanceTimeBombFallbackWhereInput

Description

Represents a Where input for: StateMachineInstanceTimeBombFallback

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "xyz789",
  "state_ends_with": "xyz789",
  "state_eq": "xyz789",
  "state_exists": false,
  "state_in": ["abc123"],
  "state_ne": "abc123",
  "state_nin": ["xyz789"],
  "state_not_contains": "xyz789",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "xyz789",
  "state_starts_with": "abc123",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": true,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineInstanceTimeBombUpdateInput

Description

Represents a StateMachineInstanceTimeBombUpdateInput

Example
{
  "activation": StateMachineInstanceTimeBombActivationUpdateInput,
  "deactivation": StateMachineInstanceTimeBombDeactivationUpdateInput,
  "fallback": StateMachineInstanceTimeBombFallbackUpdateInput,
  "timer": 987
}

StateMachineInstanceTimeBombWhereInput

Description

Represents a Where input for: StateMachineInstanceTimeBomb

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
activation - StateMachineInstanceTimeBombActivationWhereInput
deactivation - StateMachineInstanceTimeBombDeactivationWhereInput
fallback - StateMachineInstanceTimeBombFallbackWhereInput
isActive_eq - BooleanField is equal to given value
isActive_ne - BooleanField is not equal to given value
timer_eq - IntField is equal to given value
timer_exists - BooleanField is set and exists
timer_gt - IntField is greater than given value
timer_gte - IntField is greater or equal than given value
timer_in - [Int]Given value includes field
timer_lt - IntField is lower than given value
timer_lte - IntField is lower or equal than given value
timer_ne - IntField is not equal to given value
timer_nin - [Int]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "activation": StateMachineInstanceTimeBombActivationWhereInput,
  "deactivation": StateMachineInstanceTimeBombDeactivationWhereInput,
  "fallback": StateMachineInstanceTimeBombFallbackWhereInput,
  "isActive_eq": true,
  "isActive_ne": false,
  "timer_eq": 123,
  "timer_exists": false,
  "timer_gt": 987,
  "timer_gte": 987,
  "timer_in": [123],
  "timer_lt": 123,
  "timer_lte": 987,
  "timer_ne": 123,
  "timer_nin": [987]
}

StateMachineInstanceUpdateInput

Description

Represents a StateMachineInstanceUpdateInput

Fields
Input FieldDescription
canceledBy - ID
catalog - ID
changeStateToken - String
currentState - String
finishedAt - DateTimeTimestamp in which instance was finished
isRunning - BooleanFalse if instance is in a final state, true otherwise
log - [StateMachineInstanceLogUpdateInput]Record of this Instance state changes
states - [StateMachineInstanceStateUpdateInput]
timeBomb - StateMachineInstanceTimeBombUpdateInput
wip - BooleanTrue is instance is on execution, false otherwise
Example
{
  "canceledBy": "4",
  "catalog": 4,
  "changeStateToken": "abc123",
  "currentState": "abc123",
  "finishedAt": "2007-12-03T10:15:30Z",
  "isRunning": true,
  "log": [StateMachineInstanceLogUpdateInput],
  "states": [StateMachineInstanceStateUpdateInput],
  "timeBomb": StateMachineInstanceTimeBombUpdateInput,
  "wip": true
}

StateMachineInstanceWhereInput

Description

Represents a Where input for: StateMachineInstance

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
canceledBySystem_eq - BooleanField is equal to given value
canceledBySystem_ne - BooleanField is not equal to given value
canceledBy_all - [ID]Given value includes all in array
canceledBy_eq - IDField is equal to given value
canceledBy_exists - BooleanField is set and exists
canceledBy_in - [ID]Given value includes field
canceledBy_ne - IDField is not equal to given value
canceledBy_nin - [ID]Given value does not include field
canceledMessage_contains - StringField contains given value, case-insensitive
canceledMessage_ends_with - StringField ends with given value, case-insensitive
canceledMessage_eq - StringField is equal to given value
canceledMessage_exists - BooleanField is set and exists
canceledMessage_in - [String]Given value includes field
canceledMessage_ne - StringField is not equal to given value
canceledMessage_nin - [String]Given value does not includes field
canceledMessage_not_contains - StringField does not contains given value, case-insensitive
canceledMessage_not_ends_with - StringField does not end with given value, case-insensitive
canceledMessage_not_starts_with - StringField does not start with given value, case-insensitive
canceledMessage_starts_with - StringField starts with given value, case-insensitive
canceled_eq - BooleanField is equal to given value
canceled_ne - BooleanField is not equal to given value
catalog_all - [ID]Given value includes all in array
catalog_eq - IDField is equal to given value
catalog_exists - BooleanField is set and exists
catalog_in - [ID]Given value includes field
catalog_ne - IDField is not equal to given value
catalog_nin - [ID]Given value does not include field
changeStateToken_contains - StringField contains given value, case-insensitive
changeStateToken_ends_with - StringField ends with given value, case-insensitive
changeStateToken_eq - StringField is equal to given value
changeStateToken_exists - BooleanField is set and exists
changeStateToken_in - [String]Given value includes field
changeStateToken_ne - StringField is not equal to given value
changeStateToken_nin - [String]Given value does not includes field
changeStateToken_not_contains - StringField does not contains given value, case-insensitive
changeStateToken_not_ends_with - StringField does not end with given value, case-insensitive
changeStateToken_not_starts_with - StringField does not start with given value, case-insensitive
changeStateToken_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
currentState_contains - StringField contains given value, case-insensitive
currentState_ends_with - StringField ends with given value, case-insensitive
currentState_eq - StringField is equal to given value
currentState_exists - BooleanField is set and exists
currentState_in - [String]Given value includes field
currentState_ne - StringField is not equal to given value
currentState_nin - [String]Given value does not includes field
currentState_not_contains - StringField does not contains given value, case-insensitive
currentState_not_ends_with - StringField does not end with given value, case-insensitive
currentState_not_starts_with - StringField does not start with given value, case-insensitive
currentState_starts_with - StringField starts with given value, case-insensitive
finishedAt_eq - DateTimeField is equal to given value
finishedAt_exists - BooleanField is set and exists
finishedAt_gt - DateTimeField is greater than given value
finishedAt_gte - DateTimeField is greater or equal than given value
finishedAt_in - [DateTime]Given value includes field
finishedAt_lt - DateTimeField is lower than given value
finishedAt_lte - DateTimeField is lower or equal than given value
finishedAt_ne - DateTimeField is not equal to given value
finishedAt_nin - [DateTime]Given value does not includes field
isRunning_eq - BooleanField is equal to given value
isRunning_ne - BooleanField is not equal to given value
log_every - StateMachineInstanceLogWhereInput
log_exists - Boolean
log_none - StateMachineInstanceLogWhereInput
log_some - StateMachineInstanceLogWhereInput
states_every - StateMachineInstanceStateWhereInput
states_exists - Boolean
states_none - StateMachineInstanceStateWhereInput
states_some - StateMachineInstanceStateWhereInput
timeBomb - StateMachineInstanceTimeBombWhereInput
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
wip_eq - BooleanField is equal to given value
wip_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "canceledBySystem_eq": false,
  "canceledBySystem_ne": true,
  "canceledBy_all": [4],
  "canceledBy_eq": 4,
  "canceledBy_exists": false,
  "canceledBy_in": ["4"],
  "canceledBy_ne": "4",
  "canceledBy_nin": [4],
  "canceledMessage_contains": "xyz789",
  "canceledMessage_ends_with": "xyz789",
  "canceledMessage_eq": "abc123",
  "canceledMessage_exists": true,
  "canceledMessage_in": ["xyz789"],
  "canceledMessage_ne": "xyz789",
  "canceledMessage_nin": ["abc123"],
  "canceledMessage_not_contains": "xyz789",
  "canceledMessage_not_ends_with": "xyz789",
  "canceledMessage_not_starts_with": "abc123",
  "canceledMessage_starts_with": "xyz789",
  "canceled_eq": true,
  "canceled_ne": false,
  "catalog_all": [4],
  "catalog_eq": "4",
  "catalog_exists": true,
  "catalog_in": ["4"],
  "catalog_ne": 4,
  "catalog_nin": ["4"],
  "changeStateToken_contains": "xyz789",
  "changeStateToken_ends_with": "xyz789",
  "changeStateToken_eq": "abc123",
  "changeStateToken_exists": false,
  "changeStateToken_in": ["abc123"],
  "changeStateToken_ne": "xyz789",
  "changeStateToken_nin": ["xyz789"],
  "changeStateToken_not_contains": "xyz789",
  "changeStateToken_not_ends_with": "xyz789",
  "changeStateToken_not_starts_with": "xyz789",
  "changeStateToken_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "currentState_contains": "xyz789",
  "currentState_ends_with": "xyz789",
  "currentState_eq": "abc123",
  "currentState_exists": true,
  "currentState_in": ["abc123"],
  "currentState_ne": "xyz789",
  "currentState_nin": ["abc123"],
  "currentState_not_contains": "xyz789",
  "currentState_not_ends_with": "xyz789",
  "currentState_not_starts_with": "xyz789",
  "currentState_starts_with": "xyz789",
  "finishedAt_eq": "2007-12-03T10:15:30Z",
  "finishedAt_exists": false,
  "finishedAt_gt": "2007-12-03T10:15:30Z",
  "finishedAt_gte": "2007-12-03T10:15:30Z",
  "finishedAt_in": ["2007-12-03T10:15:30Z"],
  "finishedAt_lt": "2007-12-03T10:15:30Z",
  "finishedAt_lte": "2007-12-03T10:15:30Z",
  "finishedAt_ne": "2007-12-03T10:15:30Z",
  "finishedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "isRunning_eq": false,
  "isRunning_ne": false,
  "log_every": StateMachineInstanceLogWhereInput,
  "log_exists": true,
  "log_none": StateMachineInstanceLogWhereInput,
  "log_some": StateMachineInstanceLogWhereInput,
  "states_every": StateMachineInstanceStateWhereInput,
  "states_exists": false,
  "states_none": StateMachineInstanceStateWhereInput,
  "states_some": StateMachineInstanceStateWhereInput,
  "timeBomb": StateMachineInstanceTimeBombWhereInput,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "wip_eq": false,
  "wip_ne": false
}

StateMachineOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

initState_ASC

initState_DESC

name_ASC

name_DESC

timeBomb_timer_ASC

timeBomb_timer_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

StateMachineState

Description

Represents a StateMachineState

Fields
Field NameDescription
_id - ID
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - String!State Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineStateTransition]
Example
{
  "_id": "4",
  "color": "abc123",
  "executable": true,
  "failure": false,
  "name": "abc123",
  "refreshTimer": 123,
  "transitions": [StateMachineStateTransition]
}

StateMachineStateCreateInput

Description

Represents a StateMachineStateCreateInput

Fields
Input FieldDescription
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - String!State Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineStateTransitionCreateInput]A set of Transitions for this State
Example
{
  "color": "abc123",
  "executable": true,
  "failure": false,
  "name": "xyz789",
  "refreshTimer": 987,
  "transitions": [StateMachineStateTransitionCreateInput]
}

StateMachineStateTransition

Description

Represents a StateMachineStateTransition

Fields
Field NameDescription
_id - ID
action - String!Name/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
isFinal - BooleanIf this Transition leads to a final state
isToExecutable - BooleanIf this Transition leads to an execution state
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineStateTransitionPost
pre - StateMachineStateTransitionPre
to - String!Current State After this Transition is executed
Example
{
  "_id": 4,
  "action": "xyz789",
  "color": "abc123",
  "icon": "abc123",
  "isFinal": false,
  "isToExecutable": false,
  "order": 987,
  "position": 987,
  "post": StateMachineStateTransitionPost,
  "pre": StateMachineStateTransitionPre,
  "to": "xyz789"
}

StateMachineStateTransitionCreateInput

Description

Represents a StateMachineStateTransitionCreateInput

Fields
Input FieldDescription
action - String!Name/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineStateTransitionPostCreateInput
pre - StateMachineStateTransitionPreCreateInput
to - String!Current State After this Transition is executed
Example
{
  "action": "xyz789",
  "color": "xyz789",
  "icon": "abc123",
  "order": 123,
  "position": 123,
  "post": StateMachineStateTransitionPostCreateInput,
  "pre": StateMachineStateTransitionPreCreateInput,
  "to": "xyz789"
}

StateMachineStateTransitionPost

Description

Represents a StateMachineStateTransitionPost

Fields
Field NameDescription
fillForm - [StateMachineStateTransitionPostFillForm]
Example
{"fillForm": [StateMachineStateTransitionPostFillForm]}

StateMachineStateTransitionPostCreateInput

Description

Represents a StateMachineStateTransitionPostCreateInput

Fields
Input FieldDescription
fillForm - [StateMachineStateTransitionPostFillFormCreateInput]
Example
{
  "fillForm": [
    StateMachineStateTransitionPostFillFormCreateInput
  ]
}

StateMachineStateTransitionPostFillForm

Description

Represents a StateMachineStateTransitionPostFillForm

Example
{
  "_id": 4,
  "form": [StateMachineStateTransitionPostFillFormForm],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineStateTransitionPostFillFormCreateInput

Description

Represents a StateMachineStateTransitionPostFillFormCreateInput

Example
{
  "form": [
    StateMachineStateTransitionPostFillFormFormCreateInput
  ],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineStateTransitionPostFillFormForm

Description

Represents a StateMachineStateTransitionPostFillFormForm

Fields
Field NameDescription
_id - ID
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "_id": "4",
  "answer": "xyz789",
  "options": ["xyz789"],
  "question": "xyz789",
  "required": false
}

StateMachineStateTransitionPostFillFormFormCreateInput

Description

Represents a StateMachineStateTransitionPostFillFormFormCreateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "xyz789",
  "required": false
}

StateMachineStateTransitionPostFillFormFormUpdateInput

Description

Represents a StateMachineStateTransitionPostFillFormFormUpdateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String
required - Boolean
Example
{
  "answer": "abc123",
  "options": ["abc123"],
  "question": "abc123",
  "required": true
}

StateMachineStateTransitionPostFillFormFormWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPostFillFormForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
answer_contains - StringField contains given value, case-insensitive
answer_ends_with - StringField ends with given value, case-insensitive
answer_eq - StringField is equal to given value
answer_exists - BooleanField is set and exists
answer_in - [String]Given value includes field
answer_ne - StringField is not equal to given value
answer_nin - [String]Given value does not includes field
answer_not_contains - StringField does not contains given value, case-insensitive
answer_not_ends_with - StringField does not end with given value, case-insensitive
answer_not_starts_with - StringField does not start with given value, case-insensitive
answer_starts_with - StringField starts with given value, case-insensitive
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
question_contains - StringField contains given value, case-insensitive
question_ends_with - StringField ends with given value, case-insensitive
question_eq - StringField is equal to given value
question_exists - BooleanField is set and exists
question_in - [String]Given value includes field
question_ne - StringField is not equal to given value
question_nin - [String]Given value does not includes field
question_not_contains - StringField does not contains given value, case-insensitive
question_not_ends_with - StringField does not end with given value, case-insensitive
question_not_starts_with - StringField does not start with given value, case-insensitive
question_starts_with - StringField starts with given value, case-insensitive
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "answer_contains": "xyz789",
  "answer_ends_with": "abc123",
  "answer_eq": "xyz789",
  "answer_exists": false,
  "answer_in": ["xyz789"],
  "answer_ne": "abc123",
  "answer_nin": ["abc123"],
  "answer_not_contains": "abc123",
  "answer_not_ends_with": "abc123",
  "answer_not_starts_with": "xyz789",
  "answer_starts_with": "xyz789",
  "options_all": ["abc123"],
  "options_eq": ["xyz789"],
  "options_exists": false,
  "options_in": ["abc123"],
  "options_nin": ["xyz789"],
  "question_contains": "abc123",
  "question_ends_with": "xyz789",
  "question_eq": "xyz789",
  "question_exists": false,
  "question_in": ["abc123"],
  "question_ne": "abc123",
  "question_nin": ["abc123"],
  "question_not_contains": "xyz789",
  "question_not_ends_with": "xyz789",
  "question_not_starts_with": "xyz789",
  "question_starts_with": "xyz789",
  "required_eq": false,
  "required_ne": true
}

StateMachineStateTransitionPostFillFormType

Values
Enum ValueDescription

Confirmation

Example
"Confirmation"

StateMachineStateTransitionPostFillFormUpdateInput

Description

Represents a StateMachineStateTransitionPostFillFormUpdateInput

Example
{
  "form": [
    StateMachineStateTransitionPostFillFormFormUpdateInput
  ],
  "name": "xyz789",
  "type": "Confirmation"
}

StateMachineStateTransitionPostFillFormWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPostFillForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
form_every - StateMachineStateTransitionPostFillFormFormWhereInput
form_exists - Boolean
form_none - StateMachineStateTransitionPostFillFormFormWhereInput
form_some - StateMachineStateTransitionPostFillFormFormWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
type_eq - StateMachineStateTransitionPostFillFormTypeField is equal to given value
type_exists - StateMachineStateTransitionPostFillFormTypeField is set and exists
type_in - [StateMachineStateTransitionPostFillFormType]Given value includes field
type_ne - StateMachineStateTransitionPostFillFormTypeField is not equal to given value
type_nin - [StateMachineStateTransitionPostFillFormType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "form_every": StateMachineStateTransitionPostFillFormFormWhereInput,
  "form_exists": true,
  "form_none": StateMachineStateTransitionPostFillFormFormWhereInput,
  "form_some": StateMachineStateTransitionPostFillFormFormWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "type_eq": "Confirmation",
  "type_exists": "Confirmation",
  "type_in": ["Confirmation"],
  "type_ne": "Confirmation",
  "type_nin": ["Confirmation"]
}

StateMachineStateTransitionPostUpdateInput

Description

Represents a StateMachineStateTransitionPostUpdateInput

Fields
Input FieldDescription
fillForm - [StateMachineStateTransitionPostFillFormUpdateInput]
Example
{
  "fillForm": [
    StateMachineStateTransitionPostFillFormUpdateInput
  ]
}

StateMachineStateTransitionPostWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPost

Example
{
  "fillForm_every": StateMachineStateTransitionPostFillFormWhereInput,
  "fillForm_exists": false,
  "fillForm_none": StateMachineStateTransitionPostFillFormWhereInput,
  "fillForm_some": StateMachineStateTransitionPostFillFormWhereInput
}

StateMachineStateTransitionPre

Description

Represents a StateMachineStateTransitionPre

Fields
Field NameDescription
fillForm - [StateMachineStateTransitionPreFillForm]
Example
{"fillForm": [StateMachineStateTransitionPreFillForm]}

StateMachineStateTransitionPreCreateInput

Description

Represents a StateMachineStateTransitionPreCreateInput

Fields
Input FieldDescription
fillForm - [StateMachineStateTransitionPreFillFormCreateInput]
Example
{
  "fillForm": [
    StateMachineStateTransitionPreFillFormCreateInput
  ]
}

StateMachineStateTransitionPreFillForm

Description

Represents a StateMachineStateTransitionPreFillForm

Example
{
  "_id": 4,
  "form": [StateMachineStateTransitionPreFillFormForm],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineStateTransitionPreFillFormCreateInput

Description

Represents a StateMachineStateTransitionPreFillFormCreateInput

Example
{
  "form": [
    StateMachineStateTransitionPreFillFormFormCreateInput
  ],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineStateTransitionPreFillFormForm

Description

Represents a StateMachineStateTransitionPreFillFormForm

Fields
Field NameDescription
_id - ID
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "_id": 4,
  "answer": "abc123",
  "options": ["abc123"],
  "question": "abc123",
  "required": false
}

StateMachineStateTransitionPreFillFormFormCreateInput

Description

Represents a StateMachineStateTransitionPreFillFormFormCreateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String!
required - Boolean
Example
{
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "abc123",
  "required": true
}

StateMachineStateTransitionPreFillFormFormUpdateInput

Description

Represents a StateMachineStateTransitionPreFillFormFormUpdateInput

Fields
Input FieldDescription
answer - String
options - [String]
question - String
required - Boolean
Example
{
  "answer": "xyz789",
  "options": ["abc123"],
  "question": "abc123",
  "required": true
}

StateMachineStateTransitionPreFillFormFormWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPreFillFormForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
answer_contains - StringField contains given value, case-insensitive
answer_ends_with - StringField ends with given value, case-insensitive
answer_eq - StringField is equal to given value
answer_exists - BooleanField is set and exists
answer_in - [String]Given value includes field
answer_ne - StringField is not equal to given value
answer_nin - [String]Given value does not includes field
answer_not_contains - StringField does not contains given value, case-insensitive
answer_not_ends_with - StringField does not end with given value, case-insensitive
answer_not_starts_with - StringField does not start with given value, case-insensitive
answer_starts_with - StringField starts with given value, case-insensitive
options_all - [String]Field includes all given values.
options_eq - [String]Given value is equal to field
options_exists - Boolean
options_in - [String]Field includes one of given value.
options_nin - [String]Field does not include any of the given values.
question_contains - StringField contains given value, case-insensitive
question_ends_with - StringField ends with given value, case-insensitive
question_eq - StringField is equal to given value
question_exists - BooleanField is set and exists
question_in - [String]Given value includes field
question_ne - StringField is not equal to given value
question_nin - [String]Given value does not includes field
question_not_contains - StringField does not contains given value, case-insensitive
question_not_ends_with - StringField does not end with given value, case-insensitive
question_not_starts_with - StringField does not start with given value, case-insensitive
question_starts_with - StringField starts with given value, case-insensitive
required_eq - BooleanField is equal to given value
required_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "answer_contains": "abc123",
  "answer_ends_with": "xyz789",
  "answer_eq": "abc123",
  "answer_exists": true,
  "answer_in": ["abc123"],
  "answer_ne": "abc123",
  "answer_nin": ["xyz789"],
  "answer_not_contains": "xyz789",
  "answer_not_ends_with": "abc123",
  "answer_not_starts_with": "xyz789",
  "answer_starts_with": "xyz789",
  "options_all": ["xyz789"],
  "options_eq": ["abc123"],
  "options_exists": false,
  "options_in": ["xyz789"],
  "options_nin": ["xyz789"],
  "question_contains": "abc123",
  "question_ends_with": "xyz789",
  "question_eq": "abc123",
  "question_exists": true,
  "question_in": ["abc123"],
  "question_ne": "abc123",
  "question_nin": ["xyz789"],
  "question_not_contains": "abc123",
  "question_not_ends_with": "abc123",
  "question_not_starts_with": "abc123",
  "question_starts_with": "xyz789",
  "required_eq": false,
  "required_ne": false
}

StateMachineStateTransitionPreFillFormType

Values
Enum ValueDescription

Confirmation

Example
"Confirmation"

StateMachineStateTransitionPreFillFormUpdateInput

Description

Represents a StateMachineStateTransitionPreFillFormUpdateInput

Example
{
  "form": [
    StateMachineStateTransitionPreFillFormFormUpdateInput
  ],
  "name": "abc123",
  "type": "Confirmation"
}

StateMachineStateTransitionPreFillFormWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPreFillForm

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
form_every - StateMachineStateTransitionPreFillFormFormWhereInput
form_exists - Boolean
form_none - StateMachineStateTransitionPreFillFormFormWhereInput
form_some - StateMachineStateTransitionPreFillFormFormWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
type_eq - StateMachineStateTransitionPreFillFormTypeField is equal to given value
type_exists - StateMachineStateTransitionPreFillFormTypeField is set and exists
type_in - [StateMachineStateTransitionPreFillFormType]Given value includes field
type_ne - StateMachineStateTransitionPreFillFormTypeField is not equal to given value
type_nin - [StateMachineStateTransitionPreFillFormType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "form_every": StateMachineStateTransitionPreFillFormFormWhereInput,
  "form_exists": true,
  "form_none": StateMachineStateTransitionPreFillFormFormWhereInput,
  "form_some": StateMachineStateTransitionPreFillFormFormWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "type_eq": "Confirmation",
  "type_exists": "Confirmation",
  "type_in": ["Confirmation"],
  "type_ne": "Confirmation",
  "type_nin": ["Confirmation"]
}

StateMachineStateTransitionPreUpdateInput

Description

Represents a StateMachineStateTransitionPreUpdateInput

Fields
Input FieldDescription
fillForm - [StateMachineStateTransitionPreFillFormUpdateInput]
Example
{
  "fillForm": [
    StateMachineStateTransitionPreFillFormUpdateInput
  ]
}

StateMachineStateTransitionPreWhereInput

Description

Represents a Where input for: StateMachineStateTransitionPre

Example
{
  "fillForm_every": StateMachineStateTransitionPreFillFormWhereInput,
  "fillForm_exists": false,
  "fillForm_none": StateMachineStateTransitionPreFillFormWhereInput,
  "fillForm_some": StateMachineStateTransitionPreFillFormWhereInput
}

StateMachineStateTransitionUpdateInput

Description

Represents a StateMachineStateTransitionUpdateInput

Fields
Input FieldDescription
action - StringName/Action for Transition Button
color - StringColor for Transition Button
icon - StringIcon for Transition Button
order - IntOrder in wich the button should be located
position - IntPosition in wich the button should be located
post - StateMachineStateTransitionPostUpdateInput
pre - StateMachineStateTransitionPreUpdateInput
to - StringCurrent State After this Transition is executed
Example
{
  "action": "xyz789",
  "color": "abc123",
  "icon": "abc123",
  "order": 987,
  "position": 987,
  "post": StateMachineStateTransitionPostUpdateInput,
  "pre": StateMachineStateTransitionPreUpdateInput,
  "to": "abc123"
}

StateMachineStateTransitionWhereInput

Description

Represents a Where input for: StateMachineStateTransition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_contains - StringField contains given value, case-insensitive
action_ends_with - StringField ends with given value, case-insensitive
action_eq - StringField is equal to given value
action_exists - BooleanField is set and exists
action_in - [String]Given value includes field
action_ne - StringField is not equal to given value
action_nin - [String]Given value does not includes field
action_not_contains - StringField does not contains given value, case-insensitive
action_not_ends_with - StringField does not end with given value, case-insensitive
action_not_starts_with - StringField does not start with given value, case-insensitive
action_starts_with - StringField starts with given value, case-insensitive
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
icon_contains - StringField contains given value, case-insensitive
icon_ends_with - StringField ends with given value, case-insensitive
icon_eq - StringField is equal to given value
icon_exists - BooleanField is set and exists
icon_in - [String]Given value includes field
icon_ne - StringField is not equal to given value
icon_nin - [String]Given value does not includes field
icon_not_contains - StringField does not contains given value, case-insensitive
icon_not_ends_with - StringField does not end with given value, case-insensitive
icon_not_starts_with - StringField does not start with given value, case-insensitive
icon_starts_with - StringField starts with given value, case-insensitive
isFinal_eq - BooleanField is equal to given value
isFinal_ne - BooleanField is not equal to given value
isToExecutable_eq - BooleanField is equal to given value
isToExecutable_ne - BooleanField is not equal to given value
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
post - StateMachineStateTransitionPostWhereInput
pre - StateMachineStateTransitionPreWhereInput
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "action_contains": "abc123",
  "action_ends_with": "xyz789",
  "action_eq": "xyz789",
  "action_exists": false,
  "action_in": ["abc123"],
  "action_ne": "abc123",
  "action_nin": ["xyz789"],
  "action_not_contains": "xyz789",
  "action_not_ends_with": "xyz789",
  "action_not_starts_with": "abc123",
  "action_starts_with": "abc123",
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "icon_contains": "abc123",
  "icon_ends_with": "xyz789",
  "icon_eq": "abc123",
  "icon_exists": true,
  "icon_in": ["abc123"],
  "icon_ne": "xyz789",
  "icon_nin": ["xyz789"],
  "icon_not_contains": "xyz789",
  "icon_not_ends_with": "xyz789",
  "icon_not_starts_with": "abc123",
  "icon_starts_with": "abc123",
  "isFinal_eq": false,
  "isFinal_ne": false,
  "isToExecutable_eq": true,
  "isToExecutable_ne": false,
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 123,
  "order_gte": 987,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 987,
  "order_ne": 123,
  "order_nin": [987],
  "position_eq": 987,
  "position_exists": false,
  "position_gt": 123,
  "position_gte": 123,
  "position_in": [123],
  "position_lt": 987,
  "position_lte": 123,
  "position_ne": 123,
  "position_nin": [987],
  "post": StateMachineStateTransitionPostWhereInput,
  "pre": StateMachineStateTransitionPreWhereInput,
  "to_contains": "abc123",
  "to_ends_with": "abc123",
  "to_eq": "abc123",
  "to_exists": false,
  "to_in": ["abc123"],
  "to_ne": "xyz789",
  "to_nin": ["abc123"],
  "to_not_contains": "xyz789",
  "to_not_ends_with": "abc123",
  "to_not_starts_with": "abc123",
  "to_starts_with": "abc123"
}

StateMachineStateUpdateInput

Description

Represents a StateMachineStateUpdateInput

Fields
Input FieldDescription
color - StringState Color
executable - BooleanIf this state is executable
failure - BooleanIf this state is a failure state, must be Final if true
name - StringState Name
refreshTimer - IntTime to refresh info on this state
transitions - [StateMachineStateTransitionUpdateInput]A set of Transitions for this State
Example
{
  "color": "xyz789",
  "executable": false,
  "failure": true,
  "name": "xyz789",
  "refreshTimer": 123,
  "transitions": [StateMachineStateTransitionUpdateInput]
}

StateMachineStateWhereInput

Description

Represents a Where input for: StateMachineState

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
executable_eq - BooleanField is equal to given value
executable_ne - BooleanField is not equal to given value
failure_eq - BooleanField is equal to given value
failure_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
refreshTimer_eq - IntField is equal to given value
refreshTimer_exists - BooleanField is set and exists
refreshTimer_gt - IntField is greater than given value
refreshTimer_gte - IntField is greater or equal than given value
refreshTimer_in - [Int]Given value includes field
refreshTimer_lt - IntField is lower than given value
refreshTimer_lte - IntField is lower or equal than given value
refreshTimer_ne - IntField is not equal to given value
refreshTimer_nin - [Int]Given value does not includes field
transitions_every - StateMachineStateTransitionWhereInput
transitions_exists - Boolean
transitions_none - StateMachineStateTransitionWhereInput
transitions_some - StateMachineStateTransitionWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "executable_eq": false,
  "executable_ne": true,
  "failure_eq": true,
  "failure_ne": true,
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "refreshTimer_eq": 987,
  "refreshTimer_exists": true,
  "refreshTimer_gt": 123,
  "refreshTimer_gte": 123,
  "refreshTimer_in": [987],
  "refreshTimer_lt": 987,
  "refreshTimer_lte": 123,
  "refreshTimer_ne": 123,
  "refreshTimer_nin": [987],
  "transitions_every": StateMachineStateTransitionWhereInput,
  "transitions_exists": true,
  "transitions_none": StateMachineStateTransitionWhereInput,
  "transitions_some": StateMachineStateTransitionWhereInput
}

StateMachineTimeBomb

Description

Represents a StateMachineTimeBomb

Fields
Field NameDescription
_id - ID
activation - StateMachineTimeBombActivation
deactivation - StateMachineTimeBombDeactivation
fallback - StateMachineTimeBombFallback
timer - Int!In Seconds
Example
{
  "_id": 4,
  "activation": StateMachineTimeBombActivation,
  "deactivation": StateMachineTimeBombDeactivation,
  "fallback": StateMachineTimeBombFallback,
  "timer": 123
}

StateMachineTimeBombActivation

Description

Represents a StateMachineTimeBombActivation

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "xyz789",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineTimeBombActivationCreateInput

Description

Represents a StateMachineTimeBombActivationCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "xyz789"}

StateMachineTimeBombActivationUpdateInput

Description

Represents a StateMachineTimeBombActivationUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "abc123"}

StateMachineTimeBombActivationWhereInput

Description

Represents a Where input for: StateMachineTimeBombActivation

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "xyz789",
  "state_ends_with": "xyz789",
  "state_eq": "xyz789",
  "state_exists": true,
  "state_in": ["xyz789"],
  "state_ne": "xyz789",
  "state_nin": ["abc123"],
  "state_not_contains": "abc123",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "xyz789",
  "state_starts_with": "abc123",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": false,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineTimeBombCreateInput

Description

Represents a StateMachineTimeBombCreateInput

Example
{
  "activation": StateMachineTimeBombActivationCreateInput,
  "deactivation": StateMachineTimeBombDeactivationCreateInput,
  "fallback": StateMachineTimeBombFallbackCreateInput,
  "timer": 123
}

StateMachineTimeBombDeactivation

Description

Represents a StateMachineTimeBombDeactivation

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "xyz789",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineTimeBombDeactivationCreateInput

Description

Represents a StateMachineTimeBombDeactivationCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "abc123"}

StateMachineTimeBombDeactivationUpdateInput

Description

Represents a StateMachineTimeBombDeactivationUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "abc123"}

StateMachineTimeBombDeactivationWhereInput

Description

Represents a Where input for: StateMachineTimeBombDeactivation

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "abc123",
  "state_ends_with": "abc123",
  "state_eq": "xyz789",
  "state_exists": false,
  "state_in": ["abc123"],
  "state_ne": "abc123",
  "state_nin": ["xyz789"],
  "state_not_contains": "xyz789",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "xyz789",
  "state_starts_with": "xyz789",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": false,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineTimeBombFallback

Description

Represents a StateMachineTimeBombFallback

Fields
Field NameDescription
state - String!
time - DateTime
Example
{
  "state": "abc123",
  "time": "2007-12-03T10:15:30Z"
}

StateMachineTimeBombFallbackCreateInput

Description

Represents a StateMachineTimeBombFallbackCreateInput

Fields
Input FieldDescription
state - String!
Example
{"state": "abc123"}

StateMachineTimeBombFallbackUpdateInput

Description

Represents a StateMachineTimeBombFallbackUpdateInput

Fields
Input FieldDescription
state - String
Example
{"state": "xyz789"}

StateMachineTimeBombFallbackWhereInput

Description

Represents a Where input for: StateMachineTimeBombFallback

Fields
Input FieldDescription
state_contains - StringField contains given value, case-insensitive
state_ends_with - StringField ends with given value, case-insensitive
state_eq - StringField is equal to given value
state_exists - BooleanField is set and exists
state_in - [String]Given value includes field
state_ne - StringField is not equal to given value
state_nin - [String]Given value does not includes field
state_not_contains - StringField does not contains given value, case-insensitive
state_not_ends_with - StringField does not end with given value, case-insensitive
state_not_starts_with - StringField does not start with given value, case-insensitive
state_starts_with - StringField starts with given value, case-insensitive
time_eq - DateTimeField is equal to given value
time_exists - BooleanField is set and exists
time_gt - DateTimeField is greater than given value
time_gte - DateTimeField is greater or equal than given value
time_in - [DateTime]Given value includes field
time_lt - DateTimeField is lower than given value
time_lte - DateTimeField is lower or equal than given value
time_ne - DateTimeField is not equal to given value
time_nin - [DateTime]Given value does not includes field
Example
{
  "state_contains": "abc123",
  "state_ends_with": "abc123",
  "state_eq": "xyz789",
  "state_exists": false,
  "state_in": ["xyz789"],
  "state_ne": "xyz789",
  "state_nin": ["abc123"],
  "state_not_contains": "abc123",
  "state_not_ends_with": "abc123",
  "state_not_starts_with": "abc123",
  "state_starts_with": "xyz789",
  "time_eq": "2007-12-03T10:15:30Z",
  "time_exists": false,
  "time_gt": "2007-12-03T10:15:30Z",
  "time_gte": "2007-12-03T10:15:30Z",
  "time_in": ["2007-12-03T10:15:30Z"],
  "time_lt": "2007-12-03T10:15:30Z",
  "time_lte": "2007-12-03T10:15:30Z",
  "time_ne": "2007-12-03T10:15:30Z",
  "time_nin": ["2007-12-03T10:15:30Z"]
}

StateMachineTimeBombUpdateInput

Description

Represents a StateMachineTimeBombUpdateInput

Fields
Input FieldDescription
activation - StateMachineTimeBombActivationUpdateInput
deactivation - StateMachineTimeBombDeactivationUpdateInput
fallback - StateMachineTimeBombFallbackUpdateInput
timer - IntIn Seconds
Example
{
  "activation": StateMachineTimeBombActivationUpdateInput,
  "deactivation": StateMachineTimeBombDeactivationUpdateInput,
  "fallback": StateMachineTimeBombFallbackUpdateInput,
  "timer": 987
}

StateMachineTimeBombWhereInput

Description

Represents a Where input for: StateMachineTimeBomb

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
activation - StateMachineTimeBombActivationWhereInput
deactivation - StateMachineTimeBombDeactivationWhereInput
fallback - StateMachineTimeBombFallbackWhereInput
timer_eq - IntField is equal to given value
timer_exists - BooleanField is set and exists
timer_gt - IntField is greater than given value
timer_gte - IntField is greater or equal than given value
timer_in - [Int]Given value includes field
timer_lt - IntField is lower than given value
timer_lte - IntField is lower or equal than given value
timer_ne - IntField is not equal to given value
timer_nin - [Int]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "activation": StateMachineTimeBombActivationWhereInput,
  "deactivation": StateMachineTimeBombDeactivationWhereInput,
  "fallback": StateMachineTimeBombFallbackWhereInput,
  "timer_eq": 123,
  "timer_exists": true,
  "timer_gt": 987,
  "timer_gte": 987,
  "timer_in": [123],
  "timer_lt": 987,
  "timer_lte": 987,
  "timer_ne": 123,
  "timer_nin": [987]
}

StateMachineUpdateInput

Description

Represents a StateMachineUpdateInput

Fields
Input FieldDescription
folder - IDStateMachine Folder
initState - StringState-Machine initial State
labelValues - [ID]
name - StringState-Machine Name
states - [StateMachineStateUpdateInput]A set of states for this State-Machine
timeBomb - StateMachineTimeBombUpdateInput
Example
{
  "folder": 4,
  "initState": "abc123",
  "labelValues": ["4"],
  "name": "abc123",
  "states": [StateMachineStateUpdateInput],
  "timeBomb": StateMachineTimeBombUpdateInput
}

StateMachineWhereInput

Description

Represents a Where input for: StateMachine

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
folder - StateMachineFolderWhereInput
initState_contains - StringField contains given value, case-insensitive
initState_ends_with - StringField ends with given value, case-insensitive
initState_eq - StringField is equal to given value
initState_exists - BooleanField is set and exists
initState_in - [String]Given value includes field
initState_ne - StringField is not equal to given value
initState_nin - [String]Given value does not includes field
initState_not_contains - StringField does not contains given value, case-insensitive
initState_not_ends_with - StringField does not end with given value, case-insensitive
initState_not_starts_with - StringField does not start with given value, case-insensitive
initState_starts_with - StringField starts with given value, case-insensitive
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
states_every - StateMachineStateWhereInput
states_exists - Boolean
states_none - StateMachineStateWhereInput
states_some - StateMachineStateWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
timeBomb - StateMachineTimeBombWhereInput
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "folder": StateMachineFolderWhereInput,
  "initState_contains": "abc123",
  "initState_ends_with": "abc123",
  "initState_eq": "xyz789",
  "initState_exists": false,
  "initState_in": ["abc123"],
  "initState_ne": "xyz789",
  "initState_nin": ["xyz789"],
  "initState_not_contains": "abc123",
  "initState_not_ends_with": "xyz789",
  "initState_not_starts_with": "xyz789",
  "initState_starts_with": "abc123",
  "labelValues_all": [4],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": false,
  "states_every": StateMachineStateWhereInput,
  "states_exists": true,
  "states_none": StateMachineStateWhereInput,
  "states_some": StateMachineStateWhereInput,
  "system_eq": true,
  "system_ne": false,
  "timeBomb": StateMachineTimeBombWhereInput,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

StateMachineWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

StaticWidgetData

Fields
Field NameDescription
lastTenantsCreated - [Tenant]
lastUsersCreated - [Account]
lastUsersLogged - [Account]
totalActions - Int
totalAssets - Int
totalProcedures - Int
Arguments
isClosed - Boolean
totalTenants - Int
totalUsers - Int
Example
{
  "lastTenantsCreated": [Tenant],
  "lastUsersCreated": [Account],
  "lastUsersLogged": [Account],
  "totalActions": 123,
  "totalAssets": 123,
  "totalProcedures": 987,
  "totalTenants": 123,
  "totalUsers": 987
}

Storage

Description

Represents a Storage

Fields
Field NameDescription
_id - ID
address - StorageAddress
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringMaterial description
locations - [Location]
locationsIds - [ID]
name - String!Storage name
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "address": StorageAddress,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "locations": [Location],
  "locationsIds": ["4"],
  "name": "abc123",
  "protected": true,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

StorageAddress

Description

Represents a StorageAddress

Fields
Field NameDescription
element - Element
elementId - ID
site - Site
siteId - ID
street - String
type - StorageAddressType!
Example
{
  "element": Element,
  "elementId": 4,
  "site": Site,
  "siteId": 4,
  "street": "xyz789",
  "type": "Element"
}

StorageAddressCreateInput

Description

Represents a StorageAddressCreateInput

Fields
Input FieldDescription
element - ID
site - ID
street - String
type - StorageAddressType!
Example
{
  "element": "4",
  "site": 4,
  "street": "xyz789",
  "type": "Element"
}

StorageAddressType

Values
Enum ValueDescription

Element

Site

Street

Example
"Element"

StorageAddressUpdateInput

Description

Represents a StorageAddressUpdateInput

Fields
Input FieldDescription
element - ID
site - ID
street - String
type - StorageAddressType
Example
{
  "element": "4",
  "site": "4",
  "street": "xyz789",
  "type": "Element"
}

StorageAddressWhereInput

Description

Represents a Where input for: StorageAddress

Fields
Input FieldDescription
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
street_contains - StringField contains given value, case-insensitive
street_ends_with - StringField ends with given value, case-insensitive
street_eq - StringField is equal to given value
street_exists - BooleanField is set and exists
street_in - [String]Given value includes field
street_ne - StringField is not equal to given value
street_nin - [String]Given value does not includes field
street_not_contains - StringField does not contains given value, case-insensitive
street_not_ends_with - StringField does not end with given value, case-insensitive
street_not_starts_with - StringField does not start with given value, case-insensitive
street_starts_with - StringField starts with given value, case-insensitive
type_eq - StorageAddressTypeField is equal to given value
type_exists - StorageAddressTypeField is set and exists
type_in - [StorageAddressType]Given value includes field
type_ne - StorageAddressTypeField is not equal to given value
type_nin - [StorageAddressType]Given value does not includes field
Example
{
  "element_all": [4],
  "element_eq": 4,
  "element_exists": false,
  "element_in": ["4"],
  "element_ne": 4,
  "element_nin": ["4"],
  "site_all": ["4"],
  "site_eq": "4",
  "site_exists": false,
  "site_in": [4],
  "site_ne": "4",
  "site_nin": ["4"],
  "street_contains": "xyz789",
  "street_ends_with": "xyz789",
  "street_eq": "abc123",
  "street_exists": false,
  "street_in": ["xyz789"],
  "street_ne": "xyz789",
  "street_nin": ["abc123"],
  "street_not_contains": "abc123",
  "street_not_ends_with": "xyz789",
  "street_not_starts_with": "abc123",
  "street_starts_with": "abc123",
  "type_eq": "Element",
  "type_exists": "Element",
  "type_in": ["Element"],
  "type_ne": "Element",
  "type_nin": ["Element"]
}

StorageCreateInput

Description

Represents a StorageCreateInput

Fields
Input FieldDescription
address - StorageAddressCreateInput
description - StringMaterial description
locations - [ID]
name - String!Storage name
Example
{
  "address": StorageAddressCreateInput,
  "description": "abc123",
  "locations": [4],
  "name": "abc123"
}

StorageOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

address_street_ASC

address_street_DESC

address_type_ASC

address_type_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

StorageUpdateInput

Description

Represents a StorageUpdateInput

Fields
Input FieldDescription
address - StorageAddressUpdateInput
description - StringMaterial description
locations - [ID]
name - StringStorage name
Example
{
  "address": StorageAddressUpdateInput,
  "description": "abc123",
  "locations": ["4"],
  "name": "xyz789"
}

StorageWhereInput

Description

Represents a Where input for: Storage

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
address - StorageAddressWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
locations_all - [ID]Field includes all given values.
locations_eq - [ID]Given value is equal to field
locations_exists - Boolean
locations_in - [ID]Field includes one of given value.
locations_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "address": StorageAddressWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "locations_all": [4],
  "locations_eq": [4],
  "locations_exists": false,
  "locations_in": [4],
  "locations_nin": [4],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

StorageWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

String

Description

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

Example
"xyz789"

Tab

Description

Represents a Tab

Fields
Field NameDescription
_id - ID
account - Account
accountId - ID
columns - [TabColumn]
context - StringTable context for the current tab (ex: issues, actions, issueReports, ...)
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "account": Account,
  "accountId": "4",
  "columns": [TabColumn],
  "context": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "name": "xyz789",
  "protected": false,
  "system": false,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

TabColumn

Description

Represents a TabColumn

Fields
Field NameDescription
name - String
order - Int
size - IntWidth of a given column
Example
{
  "name": "abc123",
  "order": 123,
  "size": 987
}

TabColumnCreateInput

Description

Represents a TabColumnCreateInput

Fields
Input FieldDescription
name - String
order - Int
size - IntWidth of a given column
Example
{
  "name": "xyz789",
  "order": 123,
  "size": 123
}

TabColumnUpdateInput

Description

Represents a TabColumnUpdateInput

Fields
Input FieldDescription
name - String
order - Int
size - IntWidth of a given column
Example
{
  "name": "xyz789",
  "order": 987,
  "size": 987
}

TabColumnWhereInput

Description

Represents a Where input for: TabColumn

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
size_eq - IntField is equal to given value
size_exists - BooleanField is set and exists
size_gt - IntField is greater than given value
size_gte - IntField is greater or equal than given value
size_in - [Int]Given value includes field
size_lt - IntField is lower than given value
size_lte - IntField is lower or equal than given value
size_ne - IntField is not equal to given value
size_nin - [Int]Given value does not includes field
Example
{
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [987],
  "order_lt": 987,
  "order_lte": 987,
  "order_ne": 123,
  "order_nin": [123],
  "size_eq": 987,
  "size_exists": true,
  "size_gt": 123,
  "size_gte": 123,
  "size_in": [987],
  "size_lt": 987,
  "size_lte": 987,
  "size_ne": 123,
  "size_nin": [123]
}

TabCreateInput

Description

Represents a TabCreateInput

Fields
Input FieldDescription
account - ID
columns - [TabColumnCreateInput]
context - StringTable context for the current tab (ex: issues, actions, issueReports, ...)
name - String
Example
{
  "account": 4,
  "columns": [TabColumnCreateInput],
  "context": "xyz789",
  "name": "xyz789"
}

TabOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TabUpdateInput

Description

Represents a TabUpdateInput

Fields
Input FieldDescription
account - ID
columns - [TabColumnUpdateInput]
context - StringTable context for the current tab (ex: issues, actions, issueReports, ...)
name - String
Example
{
  "account": "4",
  "columns": [TabColumnUpdateInput],
  "context": "abc123",
  "name": "abc123"
}

TabWhereInput

Description

Represents a Where input for: Tab

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
columns_every - TabColumnWhereInput
columns_exists - Boolean
columns_none - TabColumnWhereInput
columns_some - TabColumnWhereInput
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "account_all": ["4"],
  "account_eq": "4",
  "account_exists": true,
  "account_in": [4],
  "account_ne": 4,
  "account_nin": [4],
  "columns_every": TabColumnWhereInput,
  "columns_exists": true,
  "columns_none": TabColumnWhereInput,
  "columns_some": TabColumnWhereInput,
  "context_contains": "abc123",
  "context_ends_with": "abc123",
  "context_eq": "xyz789",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "abc123",
  "context_nin": ["xyz789"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "abc123",
  "context_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "protected_eq": false,
  "protected_ne": false,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": [4]
}

TabWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Task

Description

Represents a Task

Fields
Field NameDescription
_id - ID
advancedLabelSelection - TaskAdvancedLabelSelection
arConfiguration - TaskArConfiguration
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedMaterials - [TaskAssignedMaterial]
assignedSkills - [TaskAssignedSkill]
assignedTools - [TaskAssignedTool]
createdAt - DateTime
description - StringTask description
element - Element
elementId - ID
estimatedDuration - IntEstimated execution duration in minutes
executedBy - [Account]
executedByIds - [ID]
executionInputs - [Input]
inputs - [Input]
isActiveByOnResponse - BooleanIf task is available to answer by one onResponse answer
isLocked - Boolean
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!Task name
onResponseId - IDInput that generate this task
order - IntOrder in which this Task should be executed
originalTaskId - IDOriginal task id
parentsTree - [ID]
possibleActions - [String]
remarks - [TaskRemark]
score - TaskScore
site - SiteThis Task site
siteId - IDThis Task site
stateMachineInstance - StateMachineInstance
taskTemplate - IDTask template id of this task
updatedAt - DateTime
Example
{
  "_id": "4",
  "advancedLabelSelection": TaskAdvancedLabelSelection,
  "arConfiguration": TaskArConfiguration,
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedMaterials": [TaskAssignedMaterial],
  "assignedSkills": [TaskAssignedSkill],
  "assignedTools": [TaskAssignedTool],
  "createdAt": "2007-12-03T10:15:30Z",
  "description": "xyz789",
  "element": Element,
  "elementId": 4,
  "estimatedDuration": 987,
  "executedBy": [Account],
  "executedByIds": [4],
  "executionInputs": [Input],
  "inputs": [Input],
  "isActiveByOnResponse": false,
  "isLocked": false,
  "isRepeatable": true,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "xyz789",
  "onResponseId": 4,
  "order": 123,
  "originalTaskId": 4,
  "parentsTree": ["4"],
  "possibleActions": ["xyz789"],
  "remarks": [TaskRemark],
  "score": TaskScore,
  "site": Site,
  "siteId": 4,
  "stateMachineInstance": StateMachineInstance,
  "taskTemplate": 4,
  "updatedAt": "2007-12-03T10:15:30Z"
}

TaskAction

Values
Enum ValueDescription

ADD

DELETE

EDIT

Example
"ADD"

TaskAdvancedLabelSelection

Description

Represents a TaskAdvancedLabelSelection

Fields
Field NameDescription
filter - [TaskAdvancedLabelSelectionFilter]
name - String!
Example
{
  "filter": [TaskAdvancedLabelSelectionFilter],
  "name": "abc123"
}

TaskAdvancedLabelSelectionCreateInput

Description

Represents a TaskAdvancedLabelSelectionCreateInput

Fields
Input FieldDescription
filter - [TaskAdvancedLabelSelectionFilterCreateInput]
name - String!
Example
{
  "filter": [TaskAdvancedLabelSelectionFilterCreateInput],
  "name": "abc123"
}

TaskAdvancedLabelSelectionFilter

Description

Represents a TaskAdvancedLabelSelectionFilter

Fields
Field NameDescription
_id - ID
conditions - [TaskAdvancedLabelSelectionFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": 4,
  "conditions": [
    TaskAdvancedLabelSelectionFilterCondition
  ],
  "includeAllLabels": false
}

TaskAdvancedLabelSelectionFilterCondition

Description

Represents a TaskAdvancedLabelSelectionFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - TaskAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{
  "_id": 4,
  "labelValue": LabelValue,
  "labelValueId": "4",
  "operator": "CONTAINS"
}

TaskAdvancedLabelSelectionFilterConditionCreateInput

Description

Represents a TaskAdvancedLabelSelectionFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - TaskAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

TaskAdvancedLabelSelectionFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

TaskAdvancedLabelSelectionFilterConditionUpdateInput

Description

Represents a TaskAdvancedLabelSelectionFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - TaskAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": 4, "operator": "CONTAINS"}

TaskAdvancedLabelSelectionFilterConditionWhereInput

Description

Represents a Where input for: TaskAdvancedLabelSelectionFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - TaskAdvancedLabelSelectionFilterConditionOperatorField is equal to given value
operator_exists - TaskAdvancedLabelSelectionFilterConditionOperatorField is set and exists
operator_in - [TaskAdvancedLabelSelectionFilterConditionOperator]Given value includes field
operator_ne - TaskAdvancedLabelSelectionFilterConditionOperatorField is not equal to given value
operator_nin - [TaskAdvancedLabelSelectionFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "labelValue_all": ["4"],
  "labelValue_eq": "4",
  "labelValue_exists": false,
  "labelValue_in": ["4"],
  "labelValue_ne": "4",
  "labelValue_nin": [4],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

TaskAdvancedLabelSelectionFilterCreateInput

Description

Represents a TaskAdvancedLabelSelectionFilterCreateInput

Fields
Input FieldDescription
conditions - [TaskAdvancedLabelSelectionFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    TaskAdvancedLabelSelectionFilterConditionCreateInput
  ],
  "includeAllLabels": false
}

TaskAdvancedLabelSelectionFilterUpdateInput

Description

Represents a TaskAdvancedLabelSelectionFilterUpdateInput

Fields
Input FieldDescription
conditions - [TaskAdvancedLabelSelectionFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    TaskAdvancedLabelSelectionFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

TaskAdvancedLabelSelectionFilterWhereInput

Description

Represents a Where input for: TaskAdvancedLabelSelectionFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - TaskAdvancedLabelSelectionFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - TaskAdvancedLabelSelectionFilterConditionWhereInput
conditions_some - TaskAdvancedLabelSelectionFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "conditions_every": TaskAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_exists": true,
  "conditions_none": TaskAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_some": TaskAdvancedLabelSelectionFilterConditionWhereInput,
  "includeAllLabels_eq": false,
  "includeAllLabels_ne": false
}

TaskAdvancedLabelSelectionUpdateInput

Description

Represents a TaskAdvancedLabelSelectionUpdateInput

Fields
Input FieldDescription
filter - [TaskAdvancedLabelSelectionFilterUpdateInput]
name - String
Example
{
  "filter": [TaskAdvancedLabelSelectionFilterUpdateInput],
  "name": "xyz789"
}

TaskAdvancedLabelSelectionWhereInput

Description

Represents a Where input for: TaskAdvancedLabelSelection

Fields
Input FieldDescription
filter_every - TaskAdvancedLabelSelectionFilterWhereInput
filter_exists - Boolean
filter_none - TaskAdvancedLabelSelectionFilterWhereInput
filter_some - TaskAdvancedLabelSelectionFilterWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "filter_every": TaskAdvancedLabelSelectionFilterWhereInput,
  "filter_exists": false,
  "filter_none": TaskAdvancedLabelSelectionFilterWhereInput,
  "filter_some": TaskAdvancedLabelSelectionFilterWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

TaskArConfiguration

Description

Represents a TaskArConfiguration

Fields
Field NameDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 987,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskArConfigurationCreateInput

Description

Represents a TaskArConfigurationCreateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskArConfigurationMarkersOnFinishingTask

Values
Enum ValueDescription

CLOSE

LEAVE

Example
"CLOSE"

TaskArConfigurationMarkersType

Values
Enum ValueDescription

ARROW

CIRCLE

SQUARE

Example
"ARROW"

TaskArConfigurationTimerFinishTask

Values
Enum ValueDescription

FIVESECONDS

NOTIMER

THREESECONDS

Example
"FIVESECONDS"

TaskArConfigurationTypeOfInput

Values
Enum ValueDescription

BASIC

COMPLEX

Example
"BASIC"

TaskArConfigurationUpdateInput

Description

Represents a TaskArConfigurationUpdateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 987,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskArConfigurationWhereInput

Description

Represents a Where input for: TaskArConfiguration

Fields
Input FieldDescription
markersColor_contains - StringField contains given value, case-insensitive
markersColor_ends_with - StringField ends with given value, case-insensitive
markersColor_eq - StringField is equal to given value
markersColor_exists - BooleanField is set and exists
markersColor_in - [String]Given value includes field
markersColor_ne - StringField is not equal to given value
markersColor_nin - [String]Given value does not includes field
markersColor_not_contains - StringField does not contains given value, case-insensitive
markersColor_not_ends_with - StringField does not end with given value, case-insensitive
markersColor_not_starts_with - StringField does not start with given value, case-insensitive
markersColor_starts_with - StringField starts with given value, case-insensitive
markersOnFinishingTask_eq - TaskArConfigurationMarkersOnFinishingTaskField is equal to given value
markersOnFinishingTask_exists - TaskArConfigurationMarkersOnFinishingTaskField is set and exists
markersOnFinishingTask_in - [TaskArConfigurationMarkersOnFinishingTask]Given value includes field
markersOnFinishingTask_ne - TaskArConfigurationMarkersOnFinishingTaskField is not equal to given value
markersOnFinishingTask_nin - [TaskArConfigurationMarkersOnFinishingTask]Given value does not includes field
markersSize_eq - IntField is equal to given value
markersSize_exists - BooleanField is set and exists
markersSize_gt - IntField is greater than given value
markersSize_gte - IntField is greater or equal than given value
markersSize_in - [Int]Given value includes field
markersSize_lt - IntField is lower than given value
markersSize_lte - IntField is lower or equal than given value
markersSize_ne - IntField is not equal to given value
markersSize_nin - [Int]Given value does not includes field
markersType_eq - TaskArConfigurationMarkersTypeField is equal to given value
markersType_exists - TaskArConfigurationMarkersTypeField is set and exists
markersType_in - [TaskArConfigurationMarkersType]Given value includes field
markersType_ne - TaskArConfigurationMarkersTypeField is not equal to given value
markersType_nin - [TaskArConfigurationMarkersType]Given value does not includes field
timerFinishTask_eq - TaskArConfigurationTimerFinishTaskField is equal to given value
timerFinishTask_exists - TaskArConfigurationTimerFinishTaskField is set and exists
timerFinishTask_in - [TaskArConfigurationTimerFinishTask]Given value includes field
timerFinishTask_ne - TaskArConfigurationTimerFinishTaskField is not equal to given value
timerFinishTask_nin - [TaskArConfigurationTimerFinishTask]Given value does not includes field
typeOfInput_eq - TaskArConfigurationTypeOfInputField is equal to given value
typeOfInput_exists - TaskArConfigurationTypeOfInputField is set and exists
typeOfInput_in - [TaskArConfigurationTypeOfInput]Given value includes field
typeOfInput_ne - TaskArConfigurationTypeOfInputField is not equal to given value
typeOfInput_nin - [TaskArConfigurationTypeOfInput]Given value does not includes field
Example
{
  "markersColor_contains": "xyz789",
  "markersColor_ends_with": "abc123",
  "markersColor_eq": "xyz789",
  "markersColor_exists": true,
  "markersColor_in": ["abc123"],
  "markersColor_ne": "xyz789",
  "markersColor_nin": ["xyz789"],
  "markersColor_not_contains": "abc123",
  "markersColor_not_ends_with": "abc123",
  "markersColor_not_starts_with": "abc123",
  "markersColor_starts_with": "xyz789",
  "markersOnFinishingTask_eq": "CLOSE",
  "markersOnFinishingTask_exists": "CLOSE",
  "markersOnFinishingTask_in": ["CLOSE"],
  "markersOnFinishingTask_ne": "CLOSE",
  "markersOnFinishingTask_nin": ["CLOSE"],
  "markersSize_eq": 987,
  "markersSize_exists": true,
  "markersSize_gt": 987,
  "markersSize_gte": 123,
  "markersSize_in": [123],
  "markersSize_lt": 123,
  "markersSize_lte": 123,
  "markersSize_ne": 123,
  "markersSize_nin": [987],
  "markersType_eq": "ARROW",
  "markersType_exists": "ARROW",
  "markersType_in": ["ARROW"],
  "markersType_ne": "ARROW",
  "markersType_nin": ["ARROW"],
  "timerFinishTask_eq": "FIVESECONDS",
  "timerFinishTask_exists": "FIVESECONDS",
  "timerFinishTask_in": ["FIVESECONDS"],
  "timerFinishTask_ne": "FIVESECONDS",
  "timerFinishTask_nin": ["FIVESECONDS"],
  "typeOfInput_eq": "BASIC",
  "typeOfInput_exists": "BASIC",
  "typeOfInput_in": ["BASIC"],
  "typeOfInput_ne": "BASIC",
  "typeOfInput_nin": ["BASIC"]
}

TaskAssignedMaterial

Description

Represents a TaskAssignedMaterial

Fields
Field NameDescription
comments - StringComments
legend - StringLegend
material - Material!
materialId - ID!
quantity - Float!Quantity
Example
{
  "comments": "abc123",
  "legend": "abc123",
  "material": Material,
  "materialId": "4",
  "quantity": 123.45
}

TaskAssignedMaterialCreateInput

Description

Represents a TaskAssignedMaterialCreateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID!
quantity - Float!Quantity
Example
{
  "comments": "abc123",
  "legend": "xyz789",
  "material": 4,
  "quantity": 987.65
}

TaskAssignedMaterialUpdateInput

Description

Represents a TaskAssignedMaterialUpdateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID
quantity - FloatQuantity
Example
{
  "comments": "abc123",
  "legend": "xyz789",
  "material": 4,
  "quantity": 123.45
}

TaskAssignedMaterialWhereInput

Description

Represents a Where input for: TaskAssignedMaterial

Fields
Input FieldDescription
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
material_all - [ID]Given value includes all in array
material_eq - IDField is equal to given value
material_exists - BooleanField is set and exists
material_in - [ID]Given value includes field
material_ne - IDField is not equal to given value
material_nin - [ID]Given value does not include field
quantity_eq - FloatField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - FloatField is greater than given value
quantity_gte - FloatField is greater or equal than given value
quantity_in - [Float]Given value includes field
quantity_lt - FloatField is lower than given value
quantity_lte - FloatField is lower or equal than given value
quantity_ne - FloatField is not equal to given value
quantity_nin - [Float]Given value does not includes field
Example
{
  "comments_contains": "abc123",
  "comments_ends_with": "abc123",
  "comments_eq": "xyz789",
  "comments_exists": false,
  "comments_in": ["abc123"],
  "comments_ne": "xyz789",
  "comments_nin": ["abc123"],
  "comments_not_contains": "abc123",
  "comments_not_ends_with": "abc123",
  "comments_not_starts_with": "abc123",
  "comments_starts_with": "abc123",
  "legend_contains": "abc123",
  "legend_ends_with": "xyz789",
  "legend_eq": "abc123",
  "legend_exists": false,
  "legend_in": ["abc123"],
  "legend_ne": "xyz789",
  "legend_nin": ["xyz789"],
  "legend_not_contains": "abc123",
  "legend_not_ends_with": "abc123",
  "legend_not_starts_with": "xyz789",
  "legend_starts_with": "xyz789",
  "material_all": ["4"],
  "material_eq": "4",
  "material_exists": false,
  "material_in": ["4"],
  "material_ne": "4",
  "material_nin": ["4"],
  "quantity_eq": 987.65,
  "quantity_exists": false,
  "quantity_gt": 987.65,
  "quantity_gte": 987.65,
  "quantity_in": [123.45],
  "quantity_lt": 123.45,
  "quantity_lte": 987.65,
  "quantity_ne": 123.45,
  "quantity_nin": [123.45]
}

TaskAssignedSkill

Description

Represents a TaskAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": "4",
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

TaskAssignedSkillCreateInput

Description

Represents a TaskAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

TaskAssignedSkillUpdateInput

Description

Represents a TaskAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

TaskAssignedSkillWhereInput

Description

Represents a Where input for: TaskAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "abc123",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "xyz789",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": [4],
  "id_eq": 4,
  "id_exists": true,
  "id_in": [4],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "xyz789",
  "level_ends_with": "abc123",
  "level_eq": "abc123",
  "level_exists": false,
  "level_in": ["abc123"],
  "level_ne": "xyz789",
  "level_nin": ["xyz789"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "abc123",
  "skillname_ends_with": "xyz789",
  "skillname_eq": "abc123",
  "skillname_exists": true,
  "skillname_in": ["xyz789"],
  "skillname_ne": "abc123",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "xyz789",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "xyz789"
}

TaskAssignedTool

Description

Represents a TaskAssignedTool

Fields
Field NameDescription
associatedWith - Tool
associatedWithId - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - Tool!Tool
toolId - ID!Tool
Example
{
  "associatedWith": Tool,
  "associatedWithId": "4",
  "comments": "abc123",
  "legend": "abc123",
  "quantity": 987,
  "reserveAtStart": true,
  "tool": Tool,
  "toolId": "4"
}

TaskAssignedToolCreateInput

Description

Represents a TaskAssignedToolCreateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - ID!Tool
Example
{
  "associatedWith": "4",
  "comments": "xyz789",
  "legend": "abc123",
  "quantity": 123,
  "reserveAtStart": true,
  "tool": "4"
}

TaskAssignedToolUpdateInput

Description

Represents a TaskAssignedToolUpdateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - IntQuantity
reserveAtStart - BooleanReserve tool at start
tool - IDTool
Example
{
  "associatedWith": "4",
  "comments": "abc123",
  "legend": "xyz789",
  "quantity": 987,
  "reserveAtStart": false,
  "tool": 4
}

TaskAssignedToolWhereInput

Description

Represents a Where input for: TaskAssignedTool

Fields
Input FieldDescription
associatedWith_all - [ID]Given value includes all in array
associatedWith_eq - IDField is equal to given value
associatedWith_exists - BooleanField is set and exists
associatedWith_in - [ID]Given value includes field
associatedWith_ne - IDField is not equal to given value
associatedWith_nin - [ID]Given value does not include field
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
quantity_eq - IntField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - IntField is greater than given value
quantity_gte - IntField is greater or equal than given value
quantity_in - [Int]Given value includes field
quantity_lt - IntField is lower than given value
quantity_lte - IntField is lower or equal than given value
quantity_ne - IntField is not equal to given value
quantity_nin - [Int]Given value does not includes field
reserveAtStart_eq - BooleanField is equal to given value
reserveAtStart_ne - BooleanField is not equal to given value
tool_all - [ID]Given value includes all in array
tool_eq - IDField is equal to given value
tool_exists - BooleanField is set and exists
tool_in - [ID]Given value includes field
tool_ne - IDField is not equal to given value
tool_nin - [ID]Given value does not include field
Example
{
  "associatedWith_all": ["4"],
  "associatedWith_eq": "4",
  "associatedWith_exists": false,
  "associatedWith_in": [4],
  "associatedWith_ne": 4,
  "associatedWith_nin": ["4"],
  "comments_contains": "xyz789",
  "comments_ends_with": "abc123",
  "comments_eq": "abc123",
  "comments_exists": true,
  "comments_in": ["abc123"],
  "comments_ne": "xyz789",
  "comments_nin": ["xyz789"],
  "comments_not_contains": "xyz789",
  "comments_not_ends_with": "xyz789",
  "comments_not_starts_with": "xyz789",
  "comments_starts_with": "abc123",
  "legend_contains": "xyz789",
  "legend_ends_with": "abc123",
  "legend_eq": "xyz789",
  "legend_exists": true,
  "legend_in": ["abc123"],
  "legend_ne": "xyz789",
  "legend_nin": ["xyz789"],
  "legend_not_contains": "xyz789",
  "legend_not_ends_with": "xyz789",
  "legend_not_starts_with": "abc123",
  "legend_starts_with": "xyz789",
  "quantity_eq": 123,
  "quantity_exists": true,
  "quantity_gt": 987,
  "quantity_gte": 123,
  "quantity_in": [987],
  "quantity_lt": 123,
  "quantity_lte": 987,
  "quantity_ne": 123,
  "quantity_nin": [123],
  "reserveAtStart_eq": false,
  "reserveAtStart_ne": true,
  "tool_all": [4],
  "tool_eq": 4,
  "tool_exists": false,
  "tool_in": ["4"],
  "tool_ne": 4,
  "tool_nin": ["4"]
}

TaskCreateInput

Description

Represents a TaskCreateInput

Fields
Input FieldDescription
advancedLabelSelection - TaskAdvancedLabelSelectionCreateInput
arConfiguration - TaskArConfigurationCreateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedMaterials - [TaskAssignedMaterialCreateInput]
assignedSkills - [TaskAssignedSkillCreateInput]
assignedTools - [TaskAssignedToolCreateInput]
description - StringTask description
element - ID
estimatedDuration - IntEstimated execution duration in minutes
executionInputs - [InputCreateInput]
isActiveByOnResponse - BooleanIf task is available to answer by one onResponse answer
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
name - String!Task name
onResponseId - IDInput that generate this task
order - IntOrder in which this Task should be executed
originalTaskId - IDOriginal task id
parentsTree - [ID]
remarks - [TaskRemarkCreateInput]
score - TaskScoreCreateInput
site - IDThis Task site
stateMachineInstance - StateMachineInstanceCreateInput
taskTemplate - IDTask template id of this task
Example
{
  "advancedLabelSelection": TaskAdvancedLabelSelectionCreateInput,
  "arConfiguration": TaskArConfigurationCreateInput,
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "assignedMaterials": [TaskAssignedMaterialCreateInput],
  "assignedSkills": [TaskAssignedSkillCreateInput],
  "assignedTools": [TaskAssignedToolCreateInput],
  "description": "xyz789",
  "element": 4,
  "estimatedDuration": 987,
  "executionInputs": [InputCreateInput],
  "isActiveByOnResponse": true,
  "isRepeatable": true,
  "labelValues": [4],
  "name": "xyz789",
  "onResponseId": "4",
  "order": 987,
  "originalTaskId": 4,
  "parentsTree": ["4"],
  "remarks": [TaskRemarkCreateInput],
  "score": TaskScoreCreateInput,
  "site": "4",
  "stateMachineInstance": StateMachineInstanceCreateInput,
  "taskTemplate": 4
}

TaskGroup

Description

Represents a TaskGroup

Fields
Field NameDescription
_id - ID
assignedSkills - [TaskGroupAssignedSkill]
markersToShow - TaskGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
tasks - [Task]
tasksCount - Int
Example
{
  "_id": "4",
  "assignedSkills": [TaskGroupAssignedSkill],
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "sequential": false,
  "tasks": [Task],
  "tasksCount": 987
}

TaskGroupAssignedSkill

Description

Represents a TaskGroupAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": "4",
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "abc123",
  "skillname": "abc123"
}

TaskGroupAssignedSkillCreateInput

Description

Represents a TaskGroupAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

TaskGroupAssignedSkillUpdateInput

Description

Represents a TaskGroupAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "abc123",
  "skillname": "abc123"
}

TaskGroupAssignedSkillWhereInput

Description

Represents a Where input for: TaskGroupAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "choosenSkillLevelName_contains": "abc123",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["xyz789"],
  "choosenSkillLevelName_ne": "abc123",
  "choosenSkillLevelName_nin": ["abc123"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "abc123",
  "id_all": ["4"],
  "id_eq": "4",
  "id_exists": false,
  "id_in": [4],
  "id_ne": 4,
  "id_nin": [4],
  "level_contains": "xyz789",
  "level_ends_with": "xyz789",
  "level_eq": "xyz789",
  "level_exists": false,
  "level_in": ["abc123"],
  "level_ne": "abc123",
  "level_nin": ["abc123"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "xyz789",
  "skillname_ends_with": "abc123",
  "skillname_eq": "abc123",
  "skillname_exists": false,
  "skillname_in": ["xyz789"],
  "skillname_ne": "abc123",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "xyz789",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "xyz789"
}

TaskGroupCreateInput

Description

Represents a TaskGroupCreateInput

Fields
Input FieldDescription
assignedSkills - [TaskGroupAssignedSkillCreateInput]
markersToShow - TaskGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
tasks - [TaskCreateInput]
Example
{
  "assignedSkills": [TaskGroupAssignedSkillCreateInput],
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 123,
  "sequential": true,
  "tasks": [TaskCreateInput]
}

TaskGroupMarkersToShow

Values
Enum ValueDescription

ALL

CURRENT

NEXT

Example
"ALL"

TaskGroupUpdateInput

Description

Represents a TaskGroupUpdateInput

Fields
Input FieldDescription
assignedSkills - [TaskGroupAssignedSkillUpdateInput]
markersToShow - TaskGroupMarkersToShowTask markers to show if group is sequential
name - StringTask group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
tasks - [TaskUpdateInput]
Example
{
  "assignedSkills": [TaskGroupAssignedSkillUpdateInput],
  "markersToShow": "ALL",
  "name": "xyz789",
  "order": 123,
  "sequential": false,
  "tasks": [TaskUpdateInput]
}

TaskGroupWhereInput

Description

Represents a Where input for: TaskGroup

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
assignedSkills_every - TaskGroupAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - TaskGroupAssignedSkillWhereInput
assignedSkills_some - TaskGroupAssignedSkillWhereInput
markersToShow_eq - TaskGroupMarkersToShowField is equal to given value
markersToShow_exists - TaskGroupMarkersToShowField is set and exists
markersToShow_in - [TaskGroupMarkersToShow]Given value includes field
markersToShow_ne - TaskGroupMarkersToShowField is not equal to given value
markersToShow_nin - [TaskGroupMarkersToShow]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
tasksCount_eq - IntField is equal to given value
tasksCount_exists - BooleanField is set and exists
tasksCount_gt - IntField is greater than given value
tasksCount_gte - IntField is greater or equal than given value
tasksCount_in - [Int]Given value includes field
tasksCount_lt - IntField is lower than given value
tasksCount_lte - IntField is lower or equal than given value
tasksCount_ne - IntField is not equal to given value
tasksCount_nin - [Int]Given value does not includes field
tasks_every - TaskWhereInput
tasks_none - TaskWhereInput
tasks_some - TaskWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "assignedSkills_every": TaskGroupAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": TaskGroupAssignedSkillWhereInput,
  "assignedSkills_some": TaskGroupAssignedSkillWhereInput,
  "markersToShow_eq": "ALL",
  "markersToShow_exists": "ALL",
  "markersToShow_in": ["ALL"],
  "markersToShow_ne": "ALL",
  "markersToShow_nin": ["ALL"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "order_eq": 987,
  "order_exists": false,
  "order_gt": 123,
  "order_gte": 123,
  "order_in": [123],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [987],
  "sequential_eq": true,
  "sequential_ne": false,
  "tasksCount_eq": 123,
  "tasksCount_exists": true,
  "tasksCount_gt": 987,
  "tasksCount_gte": 123,
  "tasksCount_in": [123],
  "tasksCount_lt": 123,
  "tasksCount_lte": 987,
  "tasksCount_ne": 987,
  "tasksCount_nin": [987],
  "tasks_every": TaskWhereInput,
  "tasks_none": TaskWhereInput,
  "tasks_some": TaskWhereInput
}

TaskMapping

Description

Represents a TaskMapping

Fields
Field NameDescription
_id - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
assignedSkills - [TaskMappingAssignedSkill]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
element - Element
elementId - ID
issueCatalog - IssueCatalog!
issueCatalogId - ID!
protected - Boolean
site - SiteThis Task site
siteId - IDThis Task site
stateMachine - StateMachine
stateMachineId - ID
system - Boolean
taskTemplate - TaskTemplate!
taskTemplateId - ID!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "assignedSkills": [TaskMappingAssignedSkill],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "element": Element,
  "elementId": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "protected": true,
  "site": Site,
  "siteId": "4",
  "stateMachine": StateMachine,
  "stateMachineId": 4,
  "system": false,
  "taskTemplate": TaskTemplate,
  "taskTemplateId": "4",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

TaskMappingAssignedSkill

Description

Represents a TaskMappingAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": 4,
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "abc123",
  "skillname": "xyz789"
}

TaskMappingAssignedSkillCreateInput

Description

Represents a TaskMappingAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": 4,
  "level": "abc123",
  "skillname": "abc123"
}

TaskMappingAssignedSkillUpdateInput

Description

Represents a TaskMappingAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "xyz789",
  "id": "4",
  "level": "xyz789",
  "skillname": "xyz789"
}

TaskMappingAssignedSkillWhereInput

Description

Represents a Where input for: TaskMappingAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "xyz789",
  "choosenSkillLevelName_eq": "xyz789",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["abc123"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "abc123",
  "choosenSkillLevelName_not_ends_with": "xyz789",
  "choosenSkillLevelName_not_starts_with": "xyz789",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": ["4"],
  "id_eq": "4",
  "id_exists": true,
  "id_in": ["4"],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "abc123",
  "level_eq": "abc123",
  "level_exists": true,
  "level_in": ["abc123"],
  "level_ne": "abc123",
  "level_nin": ["xyz789"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "xyz789",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "xyz789",
  "skillname_contains": "abc123",
  "skillname_ends_with": "abc123",
  "skillname_eq": "xyz789",
  "skillname_exists": true,
  "skillname_in": ["abc123"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "abc123",
  "skillname_not_ends_with": "xyz789",
  "skillname_not_starts_with": "abc123",
  "skillname_starts_with": "abc123"
}

TaskMappingCreateInput

Description

Represents a TaskMappingCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [TaskMappingAssignedSkillCreateInput]
element - ID
issueCatalog - ID!
site - IDThis Task site
stateMachine - ID
taskTemplate - ID!
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "assignedSkills": [TaskMappingAssignedSkillCreateInput],
  "element": 4,
  "issueCatalog": 4,
  "site": "4",
  "stateMachine": 4,
  "taskTemplate": "4"
}

TaskMappingData

Fields
Input FieldDescription
_id - ID!
assignedAccounts - [ID]
assignedLabelValues - [ID]
Example
{
  "_id": "4",
  "assignedAccounts": [4],
  "assignedLabelValues": [4]
}

TaskMappingOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TaskMappingUpdateInput

Description

Represents a TaskMappingUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedSkills - [TaskMappingAssignedSkillUpdateInput]
element - ID
issueCatalog - ID
site - IDThis Task site
stateMachine - ID
taskTemplate - ID
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "assignedSkills": [TaskMappingAssignedSkillUpdateInput],
  "element": "4",
  "issueCatalog": "4",
  "site": "4",
  "stateMachine": "4",
  "taskTemplate": 4
}

TaskMappingWhereInput

Description

Represents a Where input for: TaskMapping

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedSkills_every - TaskMappingAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - TaskMappingAssignedSkillWhereInput
assignedSkills_some - TaskMappingAssignedSkillWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
stateMachine_all - [ID]Given value includes all in array
stateMachine_eq - IDField is equal to given value
stateMachine_exists - BooleanField is set and exists
stateMachine_in - [ID]Given value includes field
stateMachine_ne - IDField is not equal to given value
stateMachine_nin - [ID]Given value does not include field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
taskTemplate_all - [ID]Given value includes all in array
taskTemplate_eq - IDField is equal to given value
taskTemplate_exists - BooleanField is set and exists
taskTemplate_in - [ID]Given value includes field
taskTemplate_ne - IDField is not equal to given value
taskTemplate_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": [4],
  "assignedSkills_every": TaskMappingAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": TaskMappingAssignedSkillWhereInput,
  "assignedSkills_some": TaskMappingAssignedSkillWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "element_all": [4],
  "element_eq": 4,
  "element_exists": false,
  "element_in": [4],
  "element_ne": 4,
  "element_nin": [4],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": "4",
  "issueCatalog_exists": false,
  "issueCatalog_in": [4],
  "issueCatalog_ne": 4,
  "issueCatalog_nin": ["4"],
  "protected_eq": true,
  "protected_ne": true,
  "site_all": [4],
  "site_eq": 4,
  "site_exists": false,
  "site_in": [4],
  "site_ne": "4",
  "site_nin": ["4"],
  "stateMachine_all": ["4"],
  "stateMachine_eq": "4",
  "stateMachine_exists": true,
  "stateMachine_in": [4],
  "stateMachine_ne": 4,
  "stateMachine_nin": [4],
  "system_eq": false,
  "system_ne": true,
  "taskTemplate_all": ["4"],
  "taskTemplate_eq": "4",
  "taskTemplate_exists": false,
  "taskTemplate_in": [4],
  "taskTemplate_ne": "4",
  "taskTemplate_nin": [4],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

TaskMappingWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

TaskMultipleReassignInput

Fields
Input FieldDescription
_id - ID!
accounts - [ID]
labelValues - [ID]
Example
{
  "_id": "4",
  "accounts": ["4"],
  "labelValues": [4]
}

TaskMultipleUpdateInput

Fields
Input FieldDescription
_id - ID!
assignedAccounts - [ID]
assignedLabelValues - [ID]
element - ID
labelValues - [ID]
order - Int
site - ID
Example
{
  "_id": 4,
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "element": 4,
  "labelValues": [4],
  "order": 123,
  "site": 4
}

TaskOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

advancedLabelSelection_name_ASC

advancedLabelSelection_name_DESC

arConfiguration_markersColor_ASC

arConfiguration_markersColor_DESC

arConfiguration_markersOnFinishingTask_ASC

arConfiguration_markersOnFinishingTask_DESC

arConfiguration_markersSize_ASC

arConfiguration_markersSize_DESC

arConfiguration_markersType_ASC

arConfiguration_markersType_DESC

arConfiguration_timerFinishTask_ASC

arConfiguration_timerFinishTask_DESC

arConfiguration_typeOfInput_ASC

arConfiguration_typeOfInput_DESC

createdAt_ASC

createdAt_DESC

description_ASC

description_DESC

estimatedDuration_ASC

estimatedDuration_DESC

name_ASC

name_DESC

order_ASC

order_DESC

score_currentScore_ASC

score_currentScore_DESC

score_totalScore_ASC

score_totalScore_DESC

stateMachineInstance_canceledMessage_ASC

stateMachineInstance_canceledMessage_DESC

stateMachineInstance_changeStateToken_ASC

stateMachineInstance_changeStateToken_DESC

stateMachineInstance_createdAt_ASC

stateMachineInstance_createdAt_DESC

stateMachineInstance_currentState_ASC

stateMachineInstance_currentState_DESC

stateMachineInstance_finishedAt_ASC

stateMachineInstance_finishedAt_DESC

stateMachineInstance_updatedAt_ASC

stateMachineInstance_updatedAt_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TaskRemark

Description

Represents a TaskRemark

Fields
Field NameDescription
createAt - DateTime!created at
createdBy - Account!created by
createdById - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "description": "xyz789",
  "title": "abc123"
}

TaskRemarkCreateInput

Description

Represents a TaskRemarkCreateInput

Fields
Input FieldDescription
createAt - DateTime!created at
createdBy - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": 4,
  "description": "abc123",
  "title": "xyz789"
}

TaskRemarkUpdateInput

Description

Represents a TaskRemarkUpdateInput

Fields
Input FieldDescription
createAt - DateTimecreated at
createdBy - IDcreated by
description - StringDescription
title - Stringtitle
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": 4,
  "description": "abc123",
  "title": "xyz789"
}

TaskRemarkWhereInput

Description

Represents a Where input for: TaskRemark

Fields
Input FieldDescription
createAt_eq - DateTimeField is equal to given value
createAt_exists - BooleanField is set and exists
createAt_gt - DateTimeField is greater than given value
createAt_gte - DateTimeField is greater or equal than given value
createAt_in - [DateTime]Given value includes field
createAt_lt - DateTimeField is lower than given value
createAt_lte - DateTimeField is lower or equal than given value
createAt_ne - DateTimeField is not equal to given value
createAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
Example
{
  "createAt_eq": "2007-12-03T10:15:30Z",
  "createAt_exists": false,
  "createAt_gt": "2007-12-03T10:15:30Z",
  "createAt_gte": "2007-12-03T10:15:30Z",
  "createAt_in": ["2007-12-03T10:15:30Z"],
  "createAt_lt": "2007-12-03T10:15:30Z",
  "createAt_lte": "2007-12-03T10:15:30Z",
  "createAt_ne": "2007-12-03T10:15:30Z",
  "createAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "description_contains": "xyz789",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "title_contains": "xyz789",
  "title_ends_with": "abc123",
  "title_eq": "xyz789",
  "title_exists": true,
  "title_in": ["abc123"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "abc123",
  "title_not_ends_with": "xyz789",
  "title_not_starts_with": "abc123",
  "title_starts_with": "xyz789"
}

TaskScore

Description

Represents a TaskScore

Fields
Field NameDescription
currentScore - Int
totalScore - Int
Example
{"currentScore": 123, "totalScore": 987}

TaskScoreCreateInput

Description

Represents a TaskScoreCreateInput

Fields
Input FieldDescription
currentScore - Int
totalScore - Int
Example
{"currentScore": 987, "totalScore": 987}

TaskScoreUpdateInput

Description

Represents a TaskScoreUpdateInput

Fields
Input FieldDescription
currentScore - Int
totalScore - Int
Example
{"currentScore": 123, "totalScore": 123}

TaskScoreWhereInput

Description

Represents a Where input for: TaskScore

Fields
Input FieldDescription
currentScore_eq - IntField is equal to given value
currentScore_exists - BooleanField is set and exists
currentScore_gt - IntField is greater than given value
currentScore_gte - IntField is greater or equal than given value
currentScore_in - [Int]Given value includes field
currentScore_lt - IntField is lower than given value
currentScore_lte - IntField is lower or equal than given value
currentScore_ne - IntField is not equal to given value
currentScore_nin - [Int]Given value does not includes field
totalScore_eq - IntField is equal to given value
totalScore_exists - BooleanField is set and exists
totalScore_gt - IntField is greater than given value
totalScore_gte - IntField is greater or equal than given value
totalScore_in - [Int]Given value includes field
totalScore_lt - IntField is lower than given value
totalScore_lte - IntField is lower or equal than given value
totalScore_ne - IntField is not equal to given value
totalScore_nin - [Int]Given value does not includes field
Example
{
  "currentScore_eq": 123,
  "currentScore_exists": true,
  "currentScore_gt": 987,
  "currentScore_gte": 123,
  "currentScore_in": [987],
  "currentScore_lt": 987,
  "currentScore_lte": 987,
  "currentScore_ne": 123,
  "currentScore_nin": [987],
  "totalScore_eq": 987,
  "totalScore_exists": true,
  "totalScore_gt": 123,
  "totalScore_gte": 987,
  "totalScore_in": [987],
  "totalScore_lt": 123,
  "totalScore_lte": 987,
  "totalScore_ne": 987,
  "totalScore_nin": [123]
}

TaskTemplate

Description

Represents a TaskTemplate

Fields
Field NameDescription
_id - ID
advancedLabelSelection - TaskTemplateAdvancedLabelSelection
arConfiguration - TaskTemplateArConfiguration
assignedMaterials - [TaskTemplateAssignedMaterial]
assignedSkills - [TaskTemplateAssignedSkill]
assignedTools - [TaskTemplateAssignedTool]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - TaskTemplateEstimatedDurationDivided
group - TaskTemplateGroup!This TaskTemplate group
groupId - ID!This TaskTemplate group
inputHistory - [Input]
inputs - [Input]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [LabelValue]
labelValuesIds - [ID]
log - [TaskTemplateLog]
manualId - String
mapping - TaskMapping
Arguments
issueCatalog - ID!
name - String!TaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
protected - Boolean
remarks - [TaskTemplateRemark]
show - Boolean
system - Boolean
totalScore - IntTotal score on task
updatedAt - DateTime
updatedBy - Account
updatedById - ID
variant - TaskTemplateVariant
Example
{
  "_id": 4,
  "advancedLabelSelection": TaskTemplateAdvancedLabelSelection,
  "arConfiguration": TaskTemplateArConfiguration,
  "assignedMaterials": [TaskTemplateAssignedMaterial],
  "assignedSkills": [TaskTemplateAssignedSkill],
  "assignedTools": [TaskTemplateAssignedTool],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "abc123",
  "estimatedDuration": 987,
  "estimatedDurationDivided": TaskTemplateEstimatedDurationDivided,
  "group": TaskTemplateGroup,
  "groupId": "4",
  "inputHistory": [Input],
  "inputs": [Input],
  "isRepeatable": true,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "log": [TaskTemplateLog],
  "manualId": "abc123",
  "mapping": TaskMapping,
  "name": "xyz789",
  "onResponseId": "4",
  "order": 123,
  "parentsTree": ["4"],
  "protected": true,
  "remarks": [TaskTemplateRemark],
  "show": false,
  "system": true,
  "totalScore": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4,
  "variant": TaskTemplateVariant
}

TaskTemplateAdvancedLabelSelection

Description

Represents a TaskTemplateAdvancedLabelSelection

Fields
Field NameDescription
filter - [TaskTemplateAdvancedLabelSelectionFilter]
name - String!
Example
{
  "filter": [TaskTemplateAdvancedLabelSelectionFilter],
  "name": "xyz789"
}

TaskTemplateAdvancedLabelSelectionCreateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionCreateInput

Fields
Input FieldDescription
filter - [TaskTemplateAdvancedLabelSelectionFilterCreateInput]
name - String!
Example
{
  "filter": [
    TaskTemplateAdvancedLabelSelectionFilterCreateInput
  ],
  "name": "abc123"
}

TaskTemplateAdvancedLabelSelectionFilter

Description

Represents a TaskTemplateAdvancedLabelSelectionFilter

Fields
Field NameDescription
_id - ID
conditions - [TaskTemplateAdvancedLabelSelectionFilterCondition]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "_id": "4",
  "conditions": [
    TaskTemplateAdvancedLabelSelectionFilterCondition
  ],
  "includeAllLabels": true
}

TaskTemplateAdvancedLabelSelectionFilterCondition

Description

Represents a TaskTemplateAdvancedLabelSelectionFilterCondition

Fields
Field NameDescription
_id - ID
labelValue - LabelValue!This condition LabelValue
labelValueId - ID!This condition LabelValue
operator - TaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{
  "_id": 4,
  "labelValue": LabelValue,
  "labelValueId": 4,
  "operator": "CONTAINS"
}

TaskTemplateAdvancedLabelSelectionFilterConditionCreateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionFilterConditionCreateInput

Fields
Input FieldDescription
labelValue - ID!This condition LabelValue
operator - TaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": "4", "operator": "CONTAINS"}

TaskTemplateAdvancedLabelSelectionFilterConditionOperator

Values
Enum ValueDescription

CONTAINS

EQUALS

NOT_EQUALS

Example
"CONTAINS"

TaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput

Fields
Input FieldDescription
labelValue - IDThis condition LabelValue
operator - TaskTemplateAdvancedLabelSelectionFilterConditionOperatoroperator of condition
Example
{"labelValue": 4, "operator": "CONTAINS"}

TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput

Description

Represents a Where input for: TaskTemplateAdvancedLabelSelectionFilterCondition

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
labelValue_all - [ID]Given value includes all in array
labelValue_eq - IDField is equal to given value
labelValue_exists - BooleanField is set and exists
labelValue_in - [ID]Given value includes field
labelValue_ne - IDField is not equal to given value
labelValue_nin - [ID]Given value does not include field
operator_eq - TaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is equal to given value
operator_exists - TaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is set and exists
operator_in - [TaskTemplateAdvancedLabelSelectionFilterConditionOperator]Given value includes field
operator_ne - TaskTemplateAdvancedLabelSelectionFilterConditionOperatorField is not equal to given value
operator_nin - [TaskTemplateAdvancedLabelSelectionFilterConditionOperator]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "labelValue_all": ["4"],
  "labelValue_eq": "4",
  "labelValue_exists": false,
  "labelValue_in": [4],
  "labelValue_ne": "4",
  "labelValue_nin": ["4"],
  "operator_eq": "CONTAINS",
  "operator_exists": "CONTAINS",
  "operator_in": ["CONTAINS"],
  "operator_ne": "CONTAINS",
  "operator_nin": ["CONTAINS"]
}

TaskTemplateAdvancedLabelSelectionFilterCreateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionFilterCreateInput

Fields
Input FieldDescription
conditions - [TaskTemplateAdvancedLabelSelectionFilterConditionCreateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    TaskTemplateAdvancedLabelSelectionFilterConditionCreateInput
  ],
  "includeAllLabels": true
}

TaskTemplateAdvancedLabelSelectionFilterUpdateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionFilterUpdateInput

Fields
Input FieldDescription
conditions - [TaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput]
includeAllLabels - BooleanInclude all remaining labels
Example
{
  "conditions": [
    TaskTemplateAdvancedLabelSelectionFilterConditionUpdateInput
  ],
  "includeAllLabels": false
}

TaskTemplateAdvancedLabelSelectionFilterWhereInput

Description

Represents a Where input for: TaskTemplateAdvancedLabelSelectionFilter

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
conditions_every - TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
conditions_exists - Boolean
conditions_none - TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
conditions_some - TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput
includeAllLabels_eq - BooleanField is equal to given value
includeAllLabels_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "conditions_every": TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_exists": true,
  "conditions_none": TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "conditions_some": TaskTemplateAdvancedLabelSelectionFilterConditionWhereInput,
  "includeAllLabels_eq": true,
  "includeAllLabels_ne": false
}

TaskTemplateAdvancedLabelSelectionUpdateInput

Description

Represents a TaskTemplateAdvancedLabelSelectionUpdateInput

Fields
Input FieldDescription
filter - [TaskTemplateAdvancedLabelSelectionFilterUpdateInput]
name - String
Example
{
  "filter": [
    TaskTemplateAdvancedLabelSelectionFilterUpdateInput
  ],
  "name": "abc123"
}

TaskTemplateAdvancedLabelSelectionWhereInput

Description

Represents a Where input for: TaskTemplateAdvancedLabelSelection

Fields
Input FieldDescription
filter_every - TaskTemplateAdvancedLabelSelectionFilterWhereInput
filter_exists - Boolean
filter_none - TaskTemplateAdvancedLabelSelectionFilterWhereInput
filter_some - TaskTemplateAdvancedLabelSelectionFilterWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "filter_every": TaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "filter_exists": false,
  "filter_none": TaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "filter_some": TaskTemplateAdvancedLabelSelectionFilterWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

TaskTemplateArConfiguration

Description

Represents a TaskTemplateArConfiguration

Fields
Field NameDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 987,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskTemplateArConfigurationCreateInput

Description

Represents a TaskTemplateArConfigurationCreateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "abc123",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 987,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskTemplateArConfigurationMarkersOnFinishingTask

Values
Enum ValueDescription

CLOSE

LEAVE

Example
"CLOSE"

TaskTemplateArConfigurationMarkersType

Values
Enum ValueDescription

ARROW

CIRCLE

SQUARE

Example
"ARROW"

TaskTemplateArConfigurationTimerFinishTask

Values
Enum ValueDescription

FIVESECONDS

NOTIMER

THREESECONDS

Example
"FIVESECONDS"

TaskTemplateArConfigurationTypeOfInput

Values
Enum ValueDescription

BASIC

COMPLEX

Example
"BASIC"

TaskTemplateArConfigurationUpdateInput

Description

Represents a TaskTemplateArConfigurationUpdateInput

Fields
Input FieldDescription
markersColor - StringTask markers color
markersOnFinishingTask - TaskTemplateArConfigurationMarkersOnFinishingTaskTask markers behaviour on finishing task
markersSize - IntTask markers size
markersType - TaskTemplateArConfigurationMarkersTypeTask markers type
timerFinishTask - TaskTemplateArConfigurationTimerFinishTaskTask timer finish task
typeOfInput - TaskTemplateArConfigurationTypeOfInputTask type of inputs
Example
{
  "markersColor": "xyz789",
  "markersOnFinishingTask": "CLOSE",
  "markersSize": 123,
  "markersType": "ARROW",
  "timerFinishTask": "FIVESECONDS",
  "typeOfInput": "BASIC"
}

TaskTemplateArConfigurationWhereInput

Description

Represents a Where input for: TaskTemplateArConfiguration

Fields
Input FieldDescription
markersColor_contains - StringField contains given value, case-insensitive
markersColor_ends_with - StringField ends with given value, case-insensitive
markersColor_eq - StringField is equal to given value
markersColor_exists - BooleanField is set and exists
markersColor_in - [String]Given value includes field
markersColor_ne - StringField is not equal to given value
markersColor_nin - [String]Given value does not includes field
markersColor_not_contains - StringField does not contains given value, case-insensitive
markersColor_not_ends_with - StringField does not end with given value, case-insensitive
markersColor_not_starts_with - StringField does not start with given value, case-insensitive
markersColor_starts_with - StringField starts with given value, case-insensitive
markersOnFinishingTask_eq - TaskTemplateArConfigurationMarkersOnFinishingTaskField is equal to given value
markersOnFinishingTask_exists - TaskTemplateArConfigurationMarkersOnFinishingTaskField is set and exists
markersOnFinishingTask_in - [TaskTemplateArConfigurationMarkersOnFinishingTask]Given value includes field
markersOnFinishingTask_ne - TaskTemplateArConfigurationMarkersOnFinishingTaskField is not equal to given value
markersOnFinishingTask_nin - [TaskTemplateArConfigurationMarkersOnFinishingTask]Given value does not includes field
markersSize_eq - IntField is equal to given value
markersSize_exists - BooleanField is set and exists
markersSize_gt - IntField is greater than given value
markersSize_gte - IntField is greater or equal than given value
markersSize_in - [Int]Given value includes field
markersSize_lt - IntField is lower than given value
markersSize_lte - IntField is lower or equal than given value
markersSize_ne - IntField is not equal to given value
markersSize_nin - [Int]Given value does not includes field
markersType_eq - TaskTemplateArConfigurationMarkersTypeField is equal to given value
markersType_exists - TaskTemplateArConfigurationMarkersTypeField is set and exists
markersType_in - [TaskTemplateArConfigurationMarkersType]Given value includes field
markersType_ne - TaskTemplateArConfigurationMarkersTypeField is not equal to given value
markersType_nin - [TaskTemplateArConfigurationMarkersType]Given value does not includes field
timerFinishTask_eq - TaskTemplateArConfigurationTimerFinishTaskField is equal to given value
timerFinishTask_exists - TaskTemplateArConfigurationTimerFinishTaskField is set and exists
timerFinishTask_in - [TaskTemplateArConfigurationTimerFinishTask]Given value includes field
timerFinishTask_ne - TaskTemplateArConfigurationTimerFinishTaskField is not equal to given value
timerFinishTask_nin - [TaskTemplateArConfigurationTimerFinishTask]Given value does not includes field
typeOfInput_eq - TaskTemplateArConfigurationTypeOfInputField is equal to given value
typeOfInput_exists - TaskTemplateArConfigurationTypeOfInputField is set and exists
typeOfInput_in - [TaskTemplateArConfigurationTypeOfInput]Given value includes field
typeOfInput_ne - TaskTemplateArConfigurationTypeOfInputField is not equal to given value
typeOfInput_nin - [TaskTemplateArConfigurationTypeOfInput]Given value does not includes field
Example
{
  "markersColor_contains": "abc123",
  "markersColor_ends_with": "xyz789",
  "markersColor_eq": "xyz789",
  "markersColor_exists": true,
  "markersColor_in": ["xyz789"],
  "markersColor_ne": "abc123",
  "markersColor_nin": ["xyz789"],
  "markersColor_not_contains": "abc123",
  "markersColor_not_ends_with": "xyz789",
  "markersColor_not_starts_with": "abc123",
  "markersColor_starts_with": "xyz789",
  "markersOnFinishingTask_eq": "CLOSE",
  "markersOnFinishingTask_exists": "CLOSE",
  "markersOnFinishingTask_in": ["CLOSE"],
  "markersOnFinishingTask_ne": "CLOSE",
  "markersOnFinishingTask_nin": ["CLOSE"],
  "markersSize_eq": 123,
  "markersSize_exists": false,
  "markersSize_gt": 987,
  "markersSize_gte": 123,
  "markersSize_in": [123],
  "markersSize_lt": 987,
  "markersSize_lte": 987,
  "markersSize_ne": 123,
  "markersSize_nin": [987],
  "markersType_eq": "ARROW",
  "markersType_exists": "ARROW",
  "markersType_in": ["ARROW"],
  "markersType_ne": "ARROW",
  "markersType_nin": ["ARROW"],
  "timerFinishTask_eq": "FIVESECONDS",
  "timerFinishTask_exists": "FIVESECONDS",
  "timerFinishTask_in": ["FIVESECONDS"],
  "timerFinishTask_ne": "FIVESECONDS",
  "timerFinishTask_nin": ["FIVESECONDS"],
  "typeOfInput_eq": "BASIC",
  "typeOfInput_exists": "BASIC",
  "typeOfInput_in": ["BASIC"],
  "typeOfInput_ne": "BASIC",
  "typeOfInput_nin": ["BASIC"]
}

TaskTemplateAssignedMaterial

Description

Represents a TaskTemplateAssignedMaterial

Fields
Field NameDescription
comments - StringComments
legend - StringLegend
material - Material!
materialId - ID!
quantity - Float!Quantity
Example
{
  "comments": "xyz789",
  "legend": "xyz789",
  "material": Material,
  "materialId": "4",
  "quantity": 987.65
}

TaskTemplateAssignedMaterialCreateInput

Description

Represents a TaskTemplateAssignedMaterialCreateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID!
quantity - Float!Quantity
Example
{
  "comments": "abc123",
  "legend": "xyz789",
  "material": "4",
  "quantity": 123.45
}

TaskTemplateAssignedMaterialUpdateInput

Description

Represents a TaskTemplateAssignedMaterialUpdateInput

Fields
Input FieldDescription
comments - StringComments
legend - StringLegend
material - ID
quantity - FloatQuantity
Example
{
  "comments": "abc123",
  "legend": "abc123",
  "material": 4,
  "quantity": 987.65
}

TaskTemplateAssignedMaterialWhereInput

Description

Represents a Where input for: TaskTemplateAssignedMaterial

Fields
Input FieldDescription
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
material_all - [ID]Given value includes all in array
material_eq - IDField is equal to given value
material_exists - BooleanField is set and exists
material_in - [ID]Given value includes field
material_ne - IDField is not equal to given value
material_nin - [ID]Given value does not include field
quantity_eq - FloatField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - FloatField is greater than given value
quantity_gte - FloatField is greater or equal than given value
quantity_in - [Float]Given value includes field
quantity_lt - FloatField is lower than given value
quantity_lte - FloatField is lower or equal than given value
quantity_ne - FloatField is not equal to given value
quantity_nin - [Float]Given value does not includes field
Example
{
  "comments_contains": "xyz789",
  "comments_ends_with": "abc123",
  "comments_eq": "abc123",
  "comments_exists": false,
  "comments_in": ["xyz789"],
  "comments_ne": "xyz789",
  "comments_nin": ["xyz789"],
  "comments_not_contains": "abc123",
  "comments_not_ends_with": "xyz789",
  "comments_not_starts_with": "abc123",
  "comments_starts_with": "abc123",
  "legend_contains": "abc123",
  "legend_ends_with": "abc123",
  "legend_eq": "abc123",
  "legend_exists": true,
  "legend_in": ["xyz789"],
  "legend_ne": "xyz789",
  "legend_nin": ["abc123"],
  "legend_not_contains": "xyz789",
  "legend_not_ends_with": "xyz789",
  "legend_not_starts_with": "xyz789",
  "legend_starts_with": "xyz789",
  "material_all": [4],
  "material_eq": "4",
  "material_exists": false,
  "material_in": [4],
  "material_ne": 4,
  "material_nin": [4],
  "quantity_eq": 987.65,
  "quantity_exists": false,
  "quantity_gt": 123.45,
  "quantity_gte": 123.45,
  "quantity_in": [987.65],
  "quantity_lt": 987.65,
  "quantity_lte": 123.45,
  "quantity_ne": 123.45,
  "quantity_nin": [987.65]
}

TaskTemplateAssignedSkill

Description

Represents a TaskTemplateAssignedSkill

Fields
Field NameDescription
_id - ID
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "_id": "4",
  "choosenSkillLevelName": "abc123",
  "id": "4",
  "level": "abc123",
  "skillname": "xyz789"
}

TaskTemplateAssignedSkillCreateInput

Description

Represents a TaskTemplateAssignedSkillCreateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "xyz789",
  "skillname": "abc123"
}

TaskTemplateAssignedSkillUpdateInput

Description

Represents a TaskTemplateAssignedSkillUpdateInput

Fields
Input FieldDescription
choosenSkillLevelName - String
id - ID
level - String
skillname - String
Example
{
  "choosenSkillLevelName": "abc123",
  "id": 4,
  "level": "abc123",
  "skillname": "abc123"
}

TaskTemplateAssignedSkillWhereInput

Description

Represents a Where input for: TaskTemplateAssignedSkill

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
choosenSkillLevelName_contains - StringField contains given value, case-insensitive
choosenSkillLevelName_ends_with - StringField ends with given value, case-insensitive
choosenSkillLevelName_eq - StringField is equal to given value
choosenSkillLevelName_exists - BooleanField is set and exists
choosenSkillLevelName_in - [String]Given value includes field
choosenSkillLevelName_ne - StringField is not equal to given value
choosenSkillLevelName_nin - [String]Given value does not includes field
choosenSkillLevelName_not_contains - StringField does not contains given value, case-insensitive
choosenSkillLevelName_not_ends_with - StringField does not end with given value, case-insensitive
choosenSkillLevelName_not_starts_with - StringField does not start with given value, case-insensitive
choosenSkillLevelName_starts_with - StringField starts with given value, case-insensitive
id_all - [ID]Given value includes all in array
id_eq - IDField is equal to given value
id_exists - BooleanField is set and exists
id_in - [ID]Given value includes field
id_ne - IDField is not equal to given value
id_nin - [ID]Given value does not include field
level_contains - StringField contains given value, case-insensitive
level_ends_with - StringField ends with given value, case-insensitive
level_eq - StringField is equal to given value
level_exists - BooleanField is set and exists
level_in - [String]Given value includes field
level_ne - StringField is not equal to given value
level_nin - [String]Given value does not includes field
level_not_contains - StringField does not contains given value, case-insensitive
level_not_ends_with - StringField does not end with given value, case-insensitive
level_not_starts_with - StringField does not start with given value, case-insensitive
level_starts_with - StringField starts with given value, case-insensitive
skillname_contains - StringField contains given value, case-insensitive
skillname_ends_with - StringField ends with given value, case-insensitive
skillname_eq - StringField is equal to given value
skillname_exists - BooleanField is set and exists
skillname_in - [String]Given value includes field
skillname_ne - StringField is not equal to given value
skillname_nin - [String]Given value does not includes field
skillname_not_contains - StringField does not contains given value, case-insensitive
skillname_not_ends_with - StringField does not end with given value, case-insensitive
skillname_not_starts_with - StringField does not start with given value, case-insensitive
skillname_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "choosenSkillLevelName_contains": "xyz789",
  "choosenSkillLevelName_ends_with": "abc123",
  "choosenSkillLevelName_eq": "abc123",
  "choosenSkillLevelName_exists": true,
  "choosenSkillLevelName_in": ["abc123"],
  "choosenSkillLevelName_ne": "xyz789",
  "choosenSkillLevelName_nin": ["xyz789"],
  "choosenSkillLevelName_not_contains": "xyz789",
  "choosenSkillLevelName_not_ends_with": "abc123",
  "choosenSkillLevelName_not_starts_with": "abc123",
  "choosenSkillLevelName_starts_with": "xyz789",
  "id_all": [4],
  "id_eq": "4",
  "id_exists": true,
  "id_in": [4],
  "id_ne": "4",
  "id_nin": ["4"],
  "level_contains": "abc123",
  "level_ends_with": "abc123",
  "level_eq": "xyz789",
  "level_exists": true,
  "level_in": ["abc123"],
  "level_ne": "abc123",
  "level_nin": ["abc123"],
  "level_not_contains": "abc123",
  "level_not_ends_with": "abc123",
  "level_not_starts_with": "xyz789",
  "level_starts_with": "abc123",
  "skillname_contains": "abc123",
  "skillname_ends_with": "xyz789",
  "skillname_eq": "xyz789",
  "skillname_exists": false,
  "skillname_in": ["xyz789"],
  "skillname_ne": "xyz789",
  "skillname_nin": ["xyz789"],
  "skillname_not_contains": "xyz789",
  "skillname_not_ends_with": "abc123",
  "skillname_not_starts_with": "xyz789",
  "skillname_starts_with": "abc123"
}

TaskTemplateAssignedTool

Description

Represents a TaskTemplateAssignedTool

Fields
Field NameDescription
associatedWith - Tool
associatedWithId - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - Tool!Tool
toolId - ID!Tool
Example
{
  "associatedWith": Tool,
  "associatedWithId": "4",
  "comments": "xyz789",
  "legend": "xyz789",
  "quantity": 987,
  "reserveAtStart": true,
  "tool": Tool,
  "toolId": 4
}

TaskTemplateAssignedToolCreateInput

Description

Represents a TaskTemplateAssignedToolCreateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - Int!Quantity
reserveAtStart - BooleanReserve tool at start
tool - ID!Tool
Example
{
  "associatedWith": "4",
  "comments": "xyz789",
  "legend": "xyz789",
  "quantity": 123,
  "reserveAtStart": false,
  "tool": 4
}

TaskTemplateAssignedToolUpdateInput

Description

Represents a TaskTemplateAssignedToolUpdateInput

Fields
Input FieldDescription
associatedWith - ID
comments - StringComments
legend - StringLegend
quantity - IntQuantity
reserveAtStart - BooleanReserve tool at start
tool - IDTool
Example
{
  "associatedWith": "4",
  "comments": "abc123",
  "legend": "xyz789",
  "quantity": 987,
  "reserveAtStart": true,
  "tool": 4
}

TaskTemplateAssignedToolWhereInput

Description

Represents a Where input for: TaskTemplateAssignedTool

Fields
Input FieldDescription
associatedWith_all - [ID]Given value includes all in array
associatedWith_eq - IDField is equal to given value
associatedWith_exists - BooleanField is set and exists
associatedWith_in - [ID]Given value includes field
associatedWith_ne - IDField is not equal to given value
associatedWith_nin - [ID]Given value does not include field
comments_contains - StringField contains given value, case-insensitive
comments_ends_with - StringField ends with given value, case-insensitive
comments_eq - StringField is equal to given value
comments_exists - BooleanField is set and exists
comments_in - [String]Given value includes field
comments_ne - StringField is not equal to given value
comments_nin - [String]Given value does not includes field
comments_not_contains - StringField does not contains given value, case-insensitive
comments_not_ends_with - StringField does not end with given value, case-insensitive
comments_not_starts_with - StringField does not start with given value, case-insensitive
comments_starts_with - StringField starts with given value, case-insensitive
legend_contains - StringField contains given value, case-insensitive
legend_ends_with - StringField ends with given value, case-insensitive
legend_eq - StringField is equal to given value
legend_exists - BooleanField is set and exists
legend_in - [String]Given value includes field
legend_ne - StringField is not equal to given value
legend_nin - [String]Given value does not includes field
legend_not_contains - StringField does not contains given value, case-insensitive
legend_not_ends_with - StringField does not end with given value, case-insensitive
legend_not_starts_with - StringField does not start with given value, case-insensitive
legend_starts_with - StringField starts with given value, case-insensitive
quantity_eq - IntField is equal to given value
quantity_exists - BooleanField is set and exists
quantity_gt - IntField is greater than given value
quantity_gte - IntField is greater or equal than given value
quantity_in - [Int]Given value includes field
quantity_lt - IntField is lower than given value
quantity_lte - IntField is lower or equal than given value
quantity_ne - IntField is not equal to given value
quantity_nin - [Int]Given value does not includes field
reserveAtStart_eq - BooleanField is equal to given value
reserveAtStart_ne - BooleanField is not equal to given value
tool_all - [ID]Given value includes all in array
tool_eq - IDField is equal to given value
tool_exists - BooleanField is set and exists
tool_in - [ID]Given value includes field
tool_ne - IDField is not equal to given value
tool_nin - [ID]Given value does not include field
Example
{
  "associatedWith_all": [4],
  "associatedWith_eq": "4",
  "associatedWith_exists": true,
  "associatedWith_in": ["4"],
  "associatedWith_ne": "4",
  "associatedWith_nin": [4],
  "comments_contains": "xyz789",
  "comments_ends_with": "abc123",
  "comments_eq": "xyz789",
  "comments_exists": true,
  "comments_in": ["abc123"],
  "comments_ne": "xyz789",
  "comments_nin": ["xyz789"],
  "comments_not_contains": "abc123",
  "comments_not_ends_with": "abc123",
  "comments_not_starts_with": "abc123",
  "comments_starts_with": "abc123",
  "legend_contains": "abc123",
  "legend_ends_with": "abc123",
  "legend_eq": "abc123",
  "legend_exists": false,
  "legend_in": ["xyz789"],
  "legend_ne": "abc123",
  "legend_nin": ["abc123"],
  "legend_not_contains": "xyz789",
  "legend_not_ends_with": "abc123",
  "legend_not_starts_with": "abc123",
  "legend_starts_with": "abc123",
  "quantity_eq": 123,
  "quantity_exists": true,
  "quantity_gt": 123,
  "quantity_gte": 987,
  "quantity_in": [987],
  "quantity_lt": 987,
  "quantity_lte": 987,
  "quantity_ne": 123,
  "quantity_nin": [123],
  "reserveAtStart_eq": true,
  "reserveAtStart_ne": true,
  "tool_all": [4],
  "tool_eq": 4,
  "tool_exists": true,
  "tool_in": [4],
  "tool_ne": 4,
  "tool_nin": [4]
}

TaskTemplateCreateInput

Description

Represents a TaskTemplateCreateInput

Fields
Input FieldDescription
advancedLabelSelection - TaskTemplateAdvancedLabelSelectionCreateInput
arConfiguration - TaskTemplateArConfigurationCreateInput
assignedMaterials - [TaskTemplateAssignedMaterialCreateInput]
assignedSkills - [TaskTemplateAssignedSkillCreateInput]
assignedTools - [TaskTemplateAssignedToolCreateInput]
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - TaskTemplateEstimatedDurationDividedCreateInput
group - ID!This TaskTemplate group
inputs - [InputCreateInput]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
log - [TaskTemplateLogCreateInput]
manualId - String
name - String!TaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
remarks - [TaskTemplateRemarkCreateInput]
totalScore - IntTotal score on task
variant - TaskTemplateVariantCreateInput
Example
{
  "advancedLabelSelection": TaskTemplateAdvancedLabelSelectionCreateInput,
  "arConfiguration": TaskTemplateArConfigurationCreateInput,
  "assignedMaterials": [
    TaskTemplateAssignedMaterialCreateInput
  ],
  "assignedSkills": [
    TaskTemplateAssignedSkillCreateInput
  ],
  "assignedTools": [TaskTemplateAssignedToolCreateInput],
  "description": "abc123",
  "estimatedDuration": 123,
  "estimatedDurationDivided": TaskTemplateEstimatedDurationDividedCreateInput,
  "group": "4",
  "inputs": [InputCreateInput],
  "isRepeatable": false,
  "labelValues": ["4"],
  "log": [TaskTemplateLogCreateInput],
  "manualId": "abc123",
  "name": "xyz789",
  "onResponseId": "4",
  "order": 123,
  "parentsTree": [4],
  "remarks": [TaskTemplateRemarkCreateInput],
  "totalScore": 987,
  "variant": TaskTemplateVariantCreateInput
}

TaskTemplateEstimatedDurationDivided

Description

Represents a TaskTemplateEstimatedDurationDivided

Fields
Field NameDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 123, "valueAdded": 123, "waste": 123}

TaskTemplateEstimatedDurationDividedCreateInput

Description

Represents a TaskTemplateEstimatedDurationDividedCreateInput

Fields
Input FieldDescription
nonValueAdded - Int!
valueAdded - Int!
waste - Int!
Example
{"nonValueAdded": 123, "valueAdded": 123, "waste": 987}

TaskTemplateEstimatedDurationDividedUpdateInput

Description

Represents a TaskTemplateEstimatedDurationDividedUpdateInput

Fields
Input FieldDescription
nonValueAdded - Int
valueAdded - Int
waste - Int
Example
{"nonValueAdded": 987, "valueAdded": 987, "waste": 987}

TaskTemplateEstimatedDurationDividedWhereInput

Description

Represents a Where input for: TaskTemplateEstimatedDurationDivided

Fields
Input FieldDescription
nonValueAdded_eq - IntField is equal to given value
nonValueAdded_exists - BooleanField is set and exists
nonValueAdded_gt - IntField is greater than given value
nonValueAdded_gte - IntField is greater or equal than given value
nonValueAdded_in - [Int]Given value includes field
nonValueAdded_lt - IntField is lower than given value
nonValueAdded_lte - IntField is lower or equal than given value
nonValueAdded_ne - IntField is not equal to given value
nonValueAdded_nin - [Int]Given value does not includes field
valueAdded_eq - IntField is equal to given value
valueAdded_exists - BooleanField is set and exists
valueAdded_gt - IntField is greater than given value
valueAdded_gte - IntField is greater or equal than given value
valueAdded_in - [Int]Given value includes field
valueAdded_lt - IntField is lower than given value
valueAdded_lte - IntField is lower or equal than given value
valueAdded_ne - IntField is not equal to given value
valueAdded_nin - [Int]Given value does not includes field
waste_eq - IntField is equal to given value
waste_exists - BooleanField is set and exists
waste_gt - IntField is greater than given value
waste_gte - IntField is greater or equal than given value
waste_in - [Int]Given value includes field
waste_lt - IntField is lower than given value
waste_lte - IntField is lower or equal than given value
waste_ne - IntField is not equal to given value
waste_nin - [Int]Given value does not includes field
Example
{
  "nonValueAdded_eq": 987,
  "nonValueAdded_exists": false,
  "nonValueAdded_gt": 123,
  "nonValueAdded_gte": 987,
  "nonValueAdded_in": [987],
  "nonValueAdded_lt": 123,
  "nonValueAdded_lte": 123,
  "nonValueAdded_ne": 987,
  "nonValueAdded_nin": [123],
  "valueAdded_eq": 123,
  "valueAdded_exists": true,
  "valueAdded_gt": 987,
  "valueAdded_gte": 123,
  "valueAdded_in": [987],
  "valueAdded_lt": 987,
  "valueAdded_lte": 123,
  "valueAdded_ne": 987,
  "valueAdded_nin": [987],
  "waste_eq": 987,
  "waste_exists": false,
  "waste_gt": 987,
  "waste_gte": 123,
  "waste_in": [123],
  "waste_lt": 123,
  "waste_lte": 123,
  "waste_ne": 987,
  "waste_nin": [123]
}

TaskTemplateGroup

Description

Represents a TaskTemplateGroup

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
issueTemplate - IssueTemplate!This task group issueTemplate
issueTemplateId - ID!This task group issueTemplate
markersToShow - TaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
protected - Boolean
sequential - BooleanIf in this execution group, task must be executed sequentially
system - Boolean
taskTemplates - [TaskTemplate]
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "issueTemplate": IssueTemplate,
  "issueTemplateId": "4",
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "protected": true,
  "sequential": true,
  "system": true,
  "taskTemplates": [TaskTemplate],
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

TaskTemplateGroupCreateInput

Description

Represents a TaskTemplateGroupCreateInput

Fields
Input FieldDescription
issueTemplate - ID!This task group issueTemplate
markersToShow - TaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - String!Task group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
Example
{
  "issueTemplate": 4,
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "sequential": false
}

TaskTemplateGroupMarkersToShow

Values
Enum ValueDescription

ALL

CURRENT

NEXT

Example
"ALL"

TaskTemplateGroupMultipleUpdateInput

Fields
Input FieldDescription
data - TaskTemplateGroupUpdateInput!
where - TaskTemplateGroupWhereUniqueInput!
Example
{
  "data": TaskTemplateGroupUpdateInput,
  "where": TaskTemplateGroupWhereUniqueInput
}

TaskTemplateGroupOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

markersToShow_ASC

markersToShow_DESC

name_ASC

name_DESC

order_ASC

order_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TaskTemplateGroupUpdateInput

Description

Represents a TaskTemplateGroupUpdateInput

Fields
Input FieldDescription
issueTemplate - IDThis task group issueTemplate
markersToShow - TaskTemplateGroupMarkersToShowTask markers to show if group is sequential
name - StringTask group name
order - IntOrder in which this execution groups should be executed
sequential - BooleanIf in this execution group, task must be executed sequentially
Example
{
  "issueTemplate": 4,
  "markersToShow": "ALL",
  "name": "abc123",
  "order": 987,
  "sequential": true
}

TaskTemplateGroupWhereInput

Description

Represents a Where input for: TaskTemplateGroup

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
issueTemplate_all - [ID]Given value includes all in array
issueTemplate_eq - IDField is equal to given value
issueTemplate_exists - BooleanField is set and exists
issueTemplate_in - [ID]Given value includes field
issueTemplate_ne - IDField is not equal to given value
issueTemplate_nin - [ID]Given value does not include field
markersToShow_eq - TaskTemplateGroupMarkersToShowField is equal to given value
markersToShow_exists - TaskTemplateGroupMarkersToShowField is set and exists
markersToShow_in - [TaskTemplateGroupMarkersToShow]Given value includes field
markersToShow_ne - TaskTemplateGroupMarkersToShowField is not equal to given value
markersToShow_nin - [TaskTemplateGroupMarkersToShow]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
sequential_eq - BooleanField is equal to given value
sequential_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "issueTemplate_all": ["4"],
  "issueTemplate_eq": 4,
  "issueTemplate_exists": true,
  "issueTemplate_in": ["4"],
  "issueTemplate_ne": "4",
  "issueTemplate_nin": [4],
  "markersToShow_eq": "ALL",
  "markersToShow_exists": "ALL",
  "markersToShow_in": ["ALL"],
  "markersToShow_ne": "ALL",
  "markersToShow_nin": ["ALL"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "order_eq": 987,
  "order_exists": true,
  "order_gt": 987,
  "order_gte": 123,
  "order_in": [987],
  "order_lt": 987,
  "order_lte": 123,
  "order_ne": 987,
  "order_nin": [123],
  "protected_eq": true,
  "protected_ne": false,
  "sequential_eq": false,
  "sequential_ne": false,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

TaskTemplateGroupWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

TaskTemplateLog

Description

Represents a TaskTemplateLog

Fields
Field NameDescription
_id - ID
action - TaskTemplateLogAction
component - TaskTemplateLogComponent
dateTime - DateTime
from - String
time - TaskTemplateLogTime
to - String
type - TaskTemplateLogType
Example
{
  "_id": 4,
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "xyz789",
  "time": TaskTemplateLogTime,
  "to": "xyz789",
  "type": "group"
}

TaskTemplateLogAction

Values
Enum ValueDescription

add

delete

edit

move

Example
"add"

TaskTemplateLogComponent

Values
Enum ValueDescription

input

task

Example
"input"

TaskTemplateLogCreateInput

Description

Represents a TaskTemplateLogCreateInput

Fields
Input FieldDescription
action - TaskTemplateLogAction
component - TaskTemplateLogComponent
dateTime - DateTime
from - String
time - TaskTemplateLogTimeCreateInput
to - String
type - TaskTemplateLogType
Example
{
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "abc123",
  "time": TaskTemplateLogTimeCreateInput,
  "to": "xyz789",
  "type": "group"
}

TaskTemplateLogTime

Description

Represents a TaskTemplateLogTime

Fields
Field NameDescription
from - TaskTemplateLogTimeFrom
to - TaskTemplateLogTimeTo
Example
{
  "from": TaskTemplateLogTimeFrom,
  "to": TaskTemplateLogTimeTo
}

TaskTemplateLogTimeCreateInput

Description

Represents a TaskTemplateLogTimeCreateInput

Example
{
  "from": TaskTemplateLogTimeFromCreateInput,
  "to": TaskTemplateLogTimeToCreateInput
}

TaskTemplateLogTimeFrom

Description

Represents a TaskTemplateLogTimeFrom

Fields
Field NameDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 123}

TaskTemplateLogTimeFromCreateInput

Description

Represents a TaskTemplateLogTimeFromCreateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "xyz789", "value": 987}

TaskTemplateLogTimeFromUpdateInput

Description

Represents a TaskTemplateLogTimeFromUpdateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 987}

TaskTemplateLogTimeFromWhereInput

Description

Represents a Where input for: TaskTemplateLogTimeFrom

Fields
Input FieldDescription
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
value_eq - IntField is equal to given value
value_exists - BooleanField is set and exists
value_gt - IntField is greater than given value
value_gte - IntField is greater or equal than given value
value_in - [Int]Given value includes field
value_lt - IntField is lower than given value
value_lte - IntField is lower or equal than given value
value_ne - IntField is not equal to given value
value_nin - [Int]Given value does not includes field
Example
{
  "unit_contains": "xyz789",
  "unit_ends_with": "abc123",
  "unit_eq": "xyz789",
  "unit_exists": false,
  "unit_in": ["xyz789"],
  "unit_ne": "xyz789",
  "unit_nin": ["xyz789"],
  "unit_not_contains": "abc123",
  "unit_not_ends_with": "abc123",
  "unit_not_starts_with": "xyz789",
  "unit_starts_with": "abc123",
  "value_eq": 987,
  "value_exists": false,
  "value_gt": 987,
  "value_gte": 123,
  "value_in": [123],
  "value_lt": 123,
  "value_lte": 123,
  "value_ne": 123,
  "value_nin": [987]
}

TaskTemplateLogTimeTo

Description

Represents a TaskTemplateLogTimeTo

Fields
Field NameDescription
unit - String
value - Int
Example
{"unit": "xyz789", "value": 987}

TaskTemplateLogTimeToCreateInput

Description

Represents a TaskTemplateLogTimeToCreateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 123}

TaskTemplateLogTimeToUpdateInput

Description

Represents a TaskTemplateLogTimeToUpdateInput

Fields
Input FieldDescription
unit - String
value - Int
Example
{"unit": "abc123", "value": 123}

TaskTemplateLogTimeToWhereInput

Description

Represents a Where input for: TaskTemplateLogTimeTo

Fields
Input FieldDescription
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
value_eq - IntField is equal to given value
value_exists - BooleanField is set and exists
value_gt - IntField is greater than given value
value_gte - IntField is greater or equal than given value
value_in - [Int]Given value includes field
value_lt - IntField is lower than given value
value_lte - IntField is lower or equal than given value
value_ne - IntField is not equal to given value
value_nin - [Int]Given value does not includes field
Example
{
  "unit_contains": "abc123",
  "unit_ends_with": "xyz789",
  "unit_eq": "abc123",
  "unit_exists": false,
  "unit_in": ["abc123"],
  "unit_ne": "abc123",
  "unit_nin": ["xyz789"],
  "unit_not_contains": "abc123",
  "unit_not_ends_with": "abc123",
  "unit_not_starts_with": "abc123",
  "unit_starts_with": "abc123",
  "value_eq": 123,
  "value_exists": false,
  "value_gt": 987,
  "value_gte": 123,
  "value_in": [987],
  "value_lt": 123,
  "value_lte": 987,
  "value_ne": 123,
  "value_nin": [123]
}

TaskTemplateLogTimeUpdateInput

Description

Represents a TaskTemplateLogTimeUpdateInput

Example
{
  "from": TaskTemplateLogTimeFromUpdateInput,
  "to": TaskTemplateLogTimeToUpdateInput
}

TaskTemplateLogTimeWhereInput

Description

Represents a Where input for: TaskTemplateLogTime

Example
{
  "from": TaskTemplateLogTimeFromWhereInput,
  "to": TaskTemplateLogTimeToWhereInput
}

TaskTemplateLogType

Values
Enum ValueDescription

group

input

labels

position

time

Example
"group"

TaskTemplateLogUpdateInput

Description

Represents a TaskTemplateLogUpdateInput

Fields
Input FieldDescription
action - TaskTemplateLogAction
component - TaskTemplateLogComponent
dateTime - DateTime
from - String
time - TaskTemplateLogTimeUpdateInput
to - String
type - TaskTemplateLogType
Example
{
  "action": "add",
  "component": "input",
  "dateTime": "2007-12-03T10:15:30Z",
  "from": "xyz789",
  "time": TaskTemplateLogTimeUpdateInput,
  "to": "abc123",
  "type": "group"
}

TaskTemplateLogWhereInput

Description

Represents a Where input for: TaskTemplateLog

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_eq - TaskTemplateLogActionField is equal to given value
action_exists - TaskTemplateLogActionField is set and exists
action_in - [TaskTemplateLogAction]Given value includes field
action_ne - TaskTemplateLogActionField is not equal to given value
action_nin - [TaskTemplateLogAction]Given value does not includes field
component_eq - TaskTemplateLogComponentField is equal to given value
component_exists - TaskTemplateLogComponentField is set and exists
component_in - [TaskTemplateLogComponent]Given value includes field
component_ne - TaskTemplateLogComponentField is not equal to given value
component_nin - [TaskTemplateLogComponent]Given value does not includes field
dateTime_eq - DateTimeField is equal to given value
dateTime_exists - BooleanField is set and exists
dateTime_gt - DateTimeField is greater than given value
dateTime_gte - DateTimeField is greater or equal than given value
dateTime_in - [DateTime]Given value includes field
dateTime_lt - DateTimeField is lower than given value
dateTime_lte - DateTimeField is lower or equal than given value
dateTime_ne - DateTimeField is not equal to given value
dateTime_nin - [DateTime]Given value does not includes field
from_contains - StringField contains given value, case-insensitive
from_ends_with - StringField ends with given value, case-insensitive
from_eq - StringField is equal to given value
from_exists - BooleanField is set and exists
from_in - [String]Given value includes field
from_ne - StringField is not equal to given value
from_nin - [String]Given value does not includes field
from_not_contains - StringField does not contains given value, case-insensitive
from_not_ends_with - StringField does not end with given value, case-insensitive
from_not_starts_with - StringField does not start with given value, case-insensitive
from_starts_with - StringField starts with given value, case-insensitive
time - TaskTemplateLogTimeWhereInput
to_contains - StringField contains given value, case-insensitive
to_ends_with - StringField ends with given value, case-insensitive
to_eq - StringField is equal to given value
to_exists - BooleanField is set and exists
to_in - [String]Given value includes field
to_ne - StringField is not equal to given value
to_nin - [String]Given value does not includes field
to_not_contains - StringField does not contains given value, case-insensitive
to_not_ends_with - StringField does not end with given value, case-insensitive
to_not_starts_with - StringField does not start with given value, case-insensitive
to_starts_with - StringField starts with given value, case-insensitive
type_eq - TaskTemplateLogTypeField is equal to given value
type_exists - TaskTemplateLogTypeField is set and exists
type_in - [TaskTemplateLogType]Given value includes field
type_ne - TaskTemplateLogTypeField is not equal to given value
type_nin - [TaskTemplateLogType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "action_eq": "add",
  "action_exists": "add",
  "action_in": ["add"],
  "action_ne": "add",
  "action_nin": ["add"],
  "component_eq": "input",
  "component_exists": "input",
  "component_in": ["input"],
  "component_ne": "input",
  "component_nin": ["input"],
  "dateTime_eq": "2007-12-03T10:15:30Z",
  "dateTime_exists": true,
  "dateTime_gt": "2007-12-03T10:15:30Z",
  "dateTime_gte": "2007-12-03T10:15:30Z",
  "dateTime_in": ["2007-12-03T10:15:30Z"],
  "dateTime_lt": "2007-12-03T10:15:30Z",
  "dateTime_lte": "2007-12-03T10:15:30Z",
  "dateTime_ne": "2007-12-03T10:15:30Z",
  "dateTime_nin": ["2007-12-03T10:15:30Z"],
  "from_contains": "abc123",
  "from_ends_with": "abc123",
  "from_eq": "xyz789",
  "from_exists": false,
  "from_in": ["xyz789"],
  "from_ne": "abc123",
  "from_nin": ["xyz789"],
  "from_not_contains": "xyz789",
  "from_not_ends_with": "abc123",
  "from_not_starts_with": "xyz789",
  "from_starts_with": "xyz789",
  "time": TaskTemplateLogTimeWhereInput,
  "to_contains": "abc123",
  "to_ends_with": "abc123",
  "to_eq": "abc123",
  "to_exists": false,
  "to_in": ["abc123"],
  "to_ne": "abc123",
  "to_nin": ["abc123"],
  "to_not_contains": "abc123",
  "to_not_ends_with": "xyz789",
  "to_not_starts_with": "xyz789",
  "to_starts_with": "xyz789",
  "type_eq": "group",
  "type_exists": "group",
  "type_in": ["group"],
  "type_ne": "group",
  "type_nin": ["group"]
}

TaskTemplateMapUpdateInput

Fields
Input FieldDescription
action - TaskAction
groupId - ID
taskTemplate - IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput
Example
{
  "action": "ADD",
  "groupId": 4,
  "taskTemplate": IssueTemplateDraftTaskTemplateGroupTaskTemplateUpdateInput
}

TaskTemplateMultipleUpdateInput

Fields
Input FieldDescription
data - TaskTemplateUpdateInput!
where - TaskTemplateWhereUniqueInput!
Example
{
  "data": TaskTemplateUpdateInput,
  "where": TaskTemplateWhereUniqueInput
}

TaskTemplateOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

advancedLabelSelection_name_ASC

advancedLabelSelection_name_DESC

arConfiguration_markersColor_ASC

arConfiguration_markersColor_DESC

arConfiguration_markersOnFinishingTask_ASC

arConfiguration_markersOnFinishingTask_DESC

arConfiguration_markersSize_ASC

arConfiguration_markersSize_DESC

arConfiguration_markersType_ASC

arConfiguration_markersType_DESC

arConfiguration_timerFinishTask_ASC

arConfiguration_timerFinishTask_DESC

arConfiguration_typeOfInput_ASC

arConfiguration_typeOfInput_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

estimatedDurationDivided_nonValueAdded_ASC

estimatedDurationDivided_nonValueAdded_DESC

estimatedDurationDivided_valueAdded_ASC

estimatedDurationDivided_valueAdded_DESC

estimatedDurationDivided_waste_ASC

estimatedDurationDivided_waste_DESC

estimatedDuration_ASC

estimatedDuration_DESC

manualId_ASC

manualId_DESC

name_ASC

name_DESC

order_ASC

order_DESC

totalScore_ASC

totalScore_DESC

updatedAt_ASC

updatedAt_DESC

variant_name_ASC

variant_name_DESC

variant_position_ASC

variant_position_DESC

Example
"_id_ASC"

TaskTemplateRemark

Description

Represents a TaskTemplateRemark

Fields
Field NameDescription
createAt - DateTime!created at
createdBy - Account!created by
createdById - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "description": "xyz789",
  "title": "abc123"
}

TaskTemplateRemarkCreateInput

Description

Represents a TaskTemplateRemarkCreateInput

Fields
Input FieldDescription
createAt - DateTime!created at
createdBy - ID!created by
description - StringDescription
title - String!title
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": 4,
  "description": "abc123",
  "title": "abc123"
}

TaskTemplateRemarkUpdateInput

Description

Represents a TaskTemplateRemarkUpdateInput

Fields
Input FieldDescription
createAt - DateTimecreated at
createdBy - IDcreated by
description - StringDescription
title - Stringtitle
Example
{
  "createAt": "2007-12-03T10:15:30Z",
  "createdBy": "4",
  "description": "xyz789",
  "title": "abc123"
}

TaskTemplateRemarkWhereInput

Description

Represents a Where input for: TaskTemplateRemark

Fields
Input FieldDescription
createAt_eq - DateTimeField is equal to given value
createAt_exists - BooleanField is set and exists
createAt_gt - DateTimeField is greater than given value
createAt_gte - DateTimeField is greater or equal than given value
createAt_in - [DateTime]Given value includes field
createAt_lt - DateTimeField is lower than given value
createAt_lte - DateTimeField is lower or equal than given value
createAt_ne - DateTimeField is not equal to given value
createAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
title_contains - StringField contains given value, case-insensitive
title_ends_with - StringField ends with given value, case-insensitive
title_eq - StringField is equal to given value
title_exists - BooleanField is set and exists
title_in - [String]Given value includes field
title_ne - StringField is not equal to given value
title_nin - [String]Given value does not includes field
title_not_contains - StringField does not contains given value, case-insensitive
title_not_ends_with - StringField does not end with given value, case-insensitive
title_not_starts_with - StringField does not start with given value, case-insensitive
title_starts_with - StringField starts with given value, case-insensitive
Example
{
  "createAt_eq": "2007-12-03T10:15:30Z",
  "createAt_exists": false,
  "createAt_gt": "2007-12-03T10:15:30Z",
  "createAt_gte": "2007-12-03T10:15:30Z",
  "createAt_in": ["2007-12-03T10:15:30Z"],
  "createAt_lt": "2007-12-03T10:15:30Z",
  "createAt_lte": "2007-12-03T10:15:30Z",
  "createAt_ne": "2007-12-03T10:15:30Z",
  "createAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "title_contains": "abc123",
  "title_ends_with": "xyz789",
  "title_eq": "abc123",
  "title_exists": false,
  "title_in": ["abc123"],
  "title_ne": "abc123",
  "title_nin": ["xyz789"],
  "title_not_contains": "xyz789",
  "title_not_ends_with": "abc123",
  "title_not_starts_with": "xyz789",
  "title_starts_with": "abc123"
}

TaskTemplateUpdateInput

Description

Represents a TaskTemplateUpdateInput

Fields
Input FieldDescription
advancedLabelSelection - TaskTemplateAdvancedLabelSelectionUpdateInput
arConfiguration - TaskTemplateArConfigurationUpdateInput
assignedMaterials - [TaskTemplateAssignedMaterialUpdateInput]
assignedSkills - [TaskTemplateAssignedSkillUpdateInput]
assignedTools - [TaskTemplateAssignedToolUpdateInput]
description - StringTaskTemplate description
estimatedDuration - IntEstimated execution duration in minutes
estimatedDurationDivided - TaskTemplateEstimatedDurationDividedUpdateInput
group - IDThis TaskTemplate group
inputs - [InputUpdateInput]
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
log - [TaskTemplateLogUpdateInput]
manualId - String
name - StringTaskTemplate name
onResponseId - IDInput that generate this task
order - IntOrder in which this TaskTemplate should be executed
parentsTree - [ID]
remarks - [TaskTemplateRemarkUpdateInput]
totalScore - IntTotal score on task
variant - TaskTemplateVariantUpdateInput
Example
{
  "advancedLabelSelection": TaskTemplateAdvancedLabelSelectionUpdateInput,
  "arConfiguration": TaskTemplateArConfigurationUpdateInput,
  "assignedMaterials": [
    TaskTemplateAssignedMaterialUpdateInput
  ],
  "assignedSkills": [
    TaskTemplateAssignedSkillUpdateInput
  ],
  "assignedTools": [TaskTemplateAssignedToolUpdateInput],
  "description": "abc123",
  "estimatedDuration": 123,
  "estimatedDurationDivided": TaskTemplateEstimatedDurationDividedUpdateInput,
  "group": 4,
  "inputs": [InputUpdateInput],
  "isRepeatable": true,
  "labelValues": [4],
  "log": [TaskTemplateLogUpdateInput],
  "manualId": "abc123",
  "name": "abc123",
  "onResponseId": 4,
  "order": 123,
  "parentsTree": [4],
  "remarks": [TaskTemplateRemarkUpdateInput],
  "totalScore": 123,
  "variant": TaskTemplateVariantUpdateInput
}

TaskTemplateUpdateManyInput

Fields
Input FieldDescription
advancedLabelSelection - TaskTemplateAdvancedLabelSelectionUpdateInput
arConfiguration - IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
element - ID
isRepeatable - Boolean
labelValues - [ID]
log - [IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput]
manualId - String
name - String
onResponseId - ID
parentsTree - [ID]
site - ID
stateMachine - ID
Example
{
  "advancedLabelSelection": TaskTemplateAdvancedLabelSelectionUpdateInput,
  "arConfiguration": IssueTemplateDraftTaskTemplateGroupTaskTemplateArConfigurationUpdateInput,
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "element": "4",
  "isRepeatable": true,
  "labelValues": [4],
  "log": [
    IssueTemplateDraftTaskTemplateGroupTaskTemplateLogUpdateInput
  ],
  "manualId": "abc123",
  "name": "xyz789",
  "onResponseId": 4,
  "parentsTree": ["4"],
  "site": 4,
  "stateMachine": 4
}

TaskTemplateVariant

Description

Represents a TaskTemplateVariant

Fields
Field NameDescription
name - StringVariant name
position - IntPosition in which this variant will be displayed
variantId - IDVariant Id
Example
{
  "name": "xyz789",
  "position": 987,
  "variantId": 4
}

TaskTemplateVariantCreateInput

Description

Represents a TaskTemplateVariantCreateInput

Fields
Input FieldDescription
name - StringVariant name
variantId - IDVariant Id
Example
{"name": "abc123", "variantId": 4}

TaskTemplateVariantUpdateInput

Description

Represents a TaskTemplateVariantUpdateInput

Fields
Input FieldDescription
name - StringVariant name
variantId - IDVariant Id
Example
{
  "name": "abc123",
  "variantId": "4"
}

TaskTemplateVariantWhereInput

Description

Represents a Where input for: TaskTemplateVariant

Fields
Input FieldDescription
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
position_eq - IntField is equal to given value
position_exists - BooleanField is set and exists
position_gt - IntField is greater than given value
position_gte - IntField is greater or equal than given value
position_in - [Int]Given value includes field
position_lt - IntField is lower than given value
position_lte - IntField is lower or equal than given value
position_ne - IntField is not equal to given value
position_nin - [Int]Given value does not includes field
variantId_all - [ID]Given value includes all in array
variantId_eq - IDField is equal to given value
variantId_exists - BooleanField is set and exists
variantId_in - [ID]Given value includes field
variantId_ne - IDField is not equal to given value
variantId_nin - [ID]Given value does not include field
Example
{
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "position_eq": 123,
  "position_exists": true,
  "position_gt": 123,
  "position_gte": 987,
  "position_in": [987],
  "position_lt": 123,
  "position_lte": 987,
  "position_ne": 987,
  "position_nin": [123],
  "variantId_all": ["4"],
  "variantId_eq": "4",
  "variantId_exists": true,
  "variantId_in": [4],
  "variantId_ne": 4,
  "variantId_nin": ["4"]
}

TaskTemplateWhereInput

Description

Represents a Where input for: TaskTemplate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
advancedLabelSelection - TaskTemplateAdvancedLabelSelectionWhereInput
arConfiguration - TaskTemplateArConfigurationWhereInput
assignedMaterials_every - TaskTemplateAssignedMaterialWhereInput
assignedMaterials_exists - Boolean
assignedMaterials_none - TaskTemplateAssignedMaterialWhereInput
assignedMaterials_some - TaskTemplateAssignedMaterialWhereInput
assignedSkills_every - TaskTemplateAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - TaskTemplateAssignedSkillWhereInput
assignedSkills_some - TaskTemplateAssignedSkillWhereInput
assignedTools_every - TaskTemplateAssignedToolWhereInput
assignedTools_exists - Boolean
assignedTools_none - TaskTemplateAssignedToolWhereInput
assignedTools_some - TaskTemplateAssignedToolWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
estimatedDurationDivided - TaskTemplateEstimatedDurationDividedWhereInput
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
group_all - [ID]Given value includes all in array
group_eq - IDField is equal to given value
group_exists - BooleanField is set and exists
group_in - [ID]Given value includes field
group_ne - IDField is not equal to given value
group_nin - [ID]Given value does not include field
inputs_every - InputWhereInput
inputs_none - InputWhereInput
inputs_some - InputWhereInput
isRepeatable_eq - BooleanField is equal to given value
isRepeatable_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
log_every - TaskTemplateLogWhereInput
log_exists - Boolean
log_none - TaskTemplateLogWhereInput
log_some - TaskTemplateLogWhereInput
manualId_contains - StringField contains given value, case-insensitive
manualId_ends_with - StringField ends with given value, case-insensitive
manualId_eq - StringField is equal to given value
manualId_exists - BooleanField is set and exists
manualId_in - [String]Given value includes field
manualId_ne - StringField is not equal to given value
manualId_nin - [String]Given value does not includes field
manualId_not_contains - StringField does not contains given value, case-insensitive
manualId_not_ends_with - StringField does not end with given value, case-insensitive
manualId_not_starts_with - StringField does not start with given value, case-insensitive
manualId_starts_with - StringField starts with given value, case-insensitive
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
onResponseId_all - [ID]Given value includes all in array
onResponseId_eq - IDField is equal to given value
onResponseId_exists - BooleanField is set and exists
onResponseId_in - [ID]Given value includes field
onResponseId_ne - IDField is not equal to given value
onResponseId_nin - [ID]Given value does not include field
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
remarks_every - TaskTemplateRemarkWhereInput
remarks_exists - Boolean
remarks_none - TaskTemplateRemarkWhereInput
remarks_some - TaskTemplateRemarkWhereInput
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
totalScore_eq - IntField is equal to given value
totalScore_exists - BooleanField is set and exists
totalScore_gt - IntField is greater than given value
totalScore_gte - IntField is greater or equal than given value
totalScore_in - [Int]Given value includes field
totalScore_lt - IntField is lower than given value
totalScore_lte - IntField is lower or equal than given value
totalScore_ne - IntField is not equal to given value
totalScore_nin - [Int]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
variant - TaskTemplateVariantWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "advancedLabelSelection": TaskTemplateAdvancedLabelSelectionWhereInput,
  "arConfiguration": TaskTemplateArConfigurationWhereInput,
  "assignedMaterials_every": TaskTemplateAssignedMaterialWhereInput,
  "assignedMaterials_exists": false,
  "assignedMaterials_none": TaskTemplateAssignedMaterialWhereInput,
  "assignedMaterials_some": TaskTemplateAssignedMaterialWhereInput,
  "assignedSkills_every": TaskTemplateAssignedSkillWhereInput,
  "assignedSkills_exists": false,
  "assignedSkills_none": TaskTemplateAssignedSkillWhereInput,
  "assignedSkills_some": TaskTemplateAssignedSkillWhereInput,
  "assignedTools_every": TaskTemplateAssignedToolWhereInput,
  "assignedTools_exists": true,
  "assignedTools_none": TaskTemplateAssignedToolWhereInput,
  "assignedTools_some": TaskTemplateAssignedToolWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "estimatedDurationDivided": TaskTemplateEstimatedDurationDividedWhereInput,
  "estimatedDuration_eq": 123,
  "estimatedDuration_exists": true,
  "estimatedDuration_gt": 987,
  "estimatedDuration_gte": 123,
  "estimatedDuration_in": [987],
  "estimatedDuration_lt": 123,
  "estimatedDuration_lte": 987,
  "estimatedDuration_ne": 987,
  "estimatedDuration_nin": [123],
  "group_all": ["4"],
  "group_eq": 4,
  "group_exists": false,
  "group_in": ["4"],
  "group_ne": 4,
  "group_nin": [4],
  "inputs_every": InputWhereInput,
  "inputs_none": InputWhereInput,
  "inputs_some": InputWhereInput,
  "isRepeatable_eq": true,
  "isRepeatable_ne": true,
  "labelValues_all": ["4"],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "log_every": TaskTemplateLogWhereInput,
  "log_exists": false,
  "log_none": TaskTemplateLogWhereInput,
  "log_some": TaskTemplateLogWhereInput,
  "manualId_contains": "abc123",
  "manualId_ends_with": "abc123",
  "manualId_eq": "abc123",
  "manualId_exists": true,
  "manualId_in": ["xyz789"],
  "manualId_ne": "abc123",
  "manualId_nin": ["xyz789"],
  "manualId_not_contains": "abc123",
  "manualId_not_ends_with": "abc123",
  "manualId_not_starts_with": "abc123",
  "manualId_starts_with": "abc123",
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "onResponseId_all": ["4"],
  "onResponseId_eq": "4",
  "onResponseId_exists": false,
  "onResponseId_in": ["4"],
  "onResponseId_ne": "4",
  "onResponseId_nin": [4],
  "order_eq": 123,
  "order_exists": true,
  "order_gt": 123,
  "order_gte": 987,
  "order_in": [123],
  "order_lt": 123,
  "order_lte": 987,
  "order_ne": 123,
  "order_nin": [123],
  "parentsTree_all": ["4"],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": [4],
  "parentsTree_nin": [4],
  "protected_eq": false,
  "protected_ne": true,
  "remarks_every": TaskTemplateRemarkWhereInput,
  "remarks_exists": false,
  "remarks_none": TaskTemplateRemarkWhereInput,
  "remarks_some": TaskTemplateRemarkWhereInput,
  "system_eq": true,
  "system_ne": true,
  "totalScore_eq": 123,
  "totalScore_exists": false,
  "totalScore_gt": 123,
  "totalScore_gte": 987,
  "totalScore_in": [987],
  "totalScore_lt": 987,
  "totalScore_lte": 123,
  "totalScore_ne": 123,
  "totalScore_nin": [987],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4],
  "variant": TaskTemplateVariantWhereInput
}

TaskTemplateWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

TaskUpdateInput

Description

Represents a TaskUpdateInput

Fields
Input FieldDescription
advancedLabelSelection - TaskAdvancedLabelSelectionUpdateInput
arConfiguration - TaskArConfigurationUpdateInput
assignedAccounts - [ID]
assignedLabelValues - [ID]
assignedMaterials - [TaskAssignedMaterialUpdateInput]
assignedSkills - [TaskAssignedSkillUpdateInput]
assignedTools - [TaskAssignedToolUpdateInput]
description - StringTask description
element - ID
estimatedDuration - IntEstimated execution duration in minutes
executionInputs - [InputUpdateInput]
isActiveByOnResponse - BooleanIf task is available to answer by one onResponse answer
isRepeatable - BooleanWhether the task can be repeated when being instantiated
labelValues - [ID]
name - StringTask name
onResponseId - IDInput that generate this task
order - IntOrder in which this Task should be executed
originalTaskId - IDOriginal task id
parentsTree - [ID]
remarks - [TaskRemarkUpdateInput]
score - TaskScoreUpdateInput
site - IDThis Task site
stateMachineInstance - StateMachineInstanceUpdateInput
taskTemplate - IDTask template id of this task
Example
{
  "advancedLabelSelection": TaskAdvancedLabelSelectionUpdateInput,
  "arConfiguration": TaskArConfigurationUpdateInput,
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "assignedMaterials": [TaskAssignedMaterialUpdateInput],
  "assignedSkills": [TaskAssignedSkillUpdateInput],
  "assignedTools": [TaskAssignedToolUpdateInput],
  "description": "xyz789",
  "element": "4",
  "estimatedDuration": 987,
  "executionInputs": [InputUpdateInput],
  "isActiveByOnResponse": false,
  "isRepeatable": false,
  "labelValues": [4],
  "name": "xyz789",
  "onResponseId": "4",
  "order": 123,
  "originalTaskId": "4",
  "parentsTree": ["4"],
  "remarks": [TaskRemarkUpdateInput],
  "score": TaskScoreUpdateInput,
  "site": "4",
  "stateMachineInstance": StateMachineInstanceUpdateInput,
  "taskTemplate": 4
}

TaskVariantOrder

Fields
Input FieldDescription
id - ID!
position - Int!
Example
{"id": "4", "position": 123}

TaskWhereInput

Description

Represents a Where input for: Task

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
advancedLabelSelection - TaskAdvancedLabelSelectionWhereInput
arConfiguration - TaskArConfigurationWhereInput
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
assignedMaterials_every - TaskAssignedMaterialWhereInput
assignedMaterials_exists - Boolean
assignedMaterials_none - TaskAssignedMaterialWhereInput
assignedMaterials_some - TaskAssignedMaterialWhereInput
assignedSkills_every - TaskAssignedSkillWhereInput
assignedSkills_exists - Boolean
assignedSkills_none - TaskAssignedSkillWhereInput
assignedSkills_some - TaskAssignedSkillWhereInput
assignedTools_every - TaskAssignedToolWhereInput
assignedTools_exists - Boolean
assignedTools_none - TaskAssignedToolWhereInput
assignedTools_some - TaskAssignedToolWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
element - ElementWhereInput
element_all - [ID]Given value includes all in array
element_eq - IDField is equal to given value
element_exists - BooleanField is set and exists
element_in - [ID]Given value includes field
element_ne - IDField is not equal to given value
element_nin - [ID]Given value does not include field
estimatedDuration_eq - IntField is equal to given value
estimatedDuration_exists - BooleanField is set and exists
estimatedDuration_gt - IntField is greater than given value
estimatedDuration_gte - IntField is greater or equal than given value
estimatedDuration_in - [Int]Given value includes field
estimatedDuration_lt - IntField is lower than given value
estimatedDuration_lte - IntField is lower or equal than given value
estimatedDuration_ne - IntField is not equal to given value
estimatedDuration_nin - [Int]Given value does not includes field
executedBy_all - [ID]Field includes all given values.
executedBy_eq - [ID]Given value is equal to field
executedBy_exists - Boolean
executedBy_in - [ID]Field includes one of given value.
executedBy_nin - [ID]Field does not include any of the given values.
executionInputs_every - InputWhereInput
executionInputs_none - InputWhereInput
executionInputs_some - InputWhereInput
isActiveByOnResponse_eq - BooleanField is equal to given value
isActiveByOnResponse_ne - BooleanField is not equal to given value
isRepeatable_eq - BooleanField is equal to given value
isRepeatable_ne - BooleanField is not equal to given value
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
onResponseId_all - [ID]Given value includes all in array
onResponseId_eq - IDField is equal to given value
onResponseId_exists - BooleanField is set and exists
onResponseId_in - [ID]Given value includes field
onResponseId_ne - IDField is not equal to given value
onResponseId_nin - [ID]Given value does not include field
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
originalTaskId_all - [ID]Given value includes all in array
originalTaskId_eq - IDField is equal to given value
originalTaskId_exists - BooleanField is set and exists
originalTaskId_in - [ID]Given value includes field
originalTaskId_ne - IDField is not equal to given value
originalTaskId_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
remarks_every - TaskRemarkWhereInput
remarks_exists - Boolean
remarks_none - TaskRemarkWhereInput
remarks_some - TaskRemarkWhereInput
score - TaskScoreWhereInput
site_all - [ID]Given value includes all in array
site_eq - IDField is equal to given value
site_exists - BooleanField is set and exists
site_in - [ID]Given value includes field
site_ne - IDField is not equal to given value
site_nin - [ID]Given value does not include field
stateMachineInstance - StateMachineInstanceWhereInput
taskTemplate_all - [ID]Given value includes all in array
taskTemplate_eq - IDField is equal to given value
taskTemplate_exists - BooleanField is set and exists
taskTemplate_in - [ID]Given value includes field
taskTemplate_ne - IDField is not equal to given value
taskTemplate_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "advancedLabelSelection": TaskAdvancedLabelSelectionWhereInput,
  "arConfiguration": TaskArConfigurationWhereInput,
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": [4],
  "assignedMaterials_every": TaskAssignedMaterialWhereInput,
  "assignedMaterials_exists": false,
  "assignedMaterials_none": TaskAssignedMaterialWhereInput,
  "assignedMaterials_some": TaskAssignedMaterialWhereInput,
  "assignedSkills_every": TaskAssignedSkillWhereInput,
  "assignedSkills_exists": true,
  "assignedSkills_none": TaskAssignedSkillWhereInput,
  "assignedSkills_some": TaskAssignedSkillWhereInput,
  "assignedTools_every": TaskAssignedToolWhereInput,
  "assignedTools_exists": false,
  "assignedTools_none": TaskAssignedToolWhereInput,
  "assignedTools_some": TaskAssignedToolWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["abc123"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "abc123",
  "element": ElementWhereInput,
  "element_all": ["4"],
  "element_eq": 4,
  "element_exists": false,
  "element_in": [4],
  "element_ne": "4",
  "element_nin": [4],
  "estimatedDuration_eq": 987,
  "estimatedDuration_exists": true,
  "estimatedDuration_gt": 123,
  "estimatedDuration_gte": 123,
  "estimatedDuration_in": [123],
  "estimatedDuration_lt": 987,
  "estimatedDuration_lte": 987,
  "estimatedDuration_ne": 123,
  "estimatedDuration_nin": [987],
  "executedBy_all": ["4"],
  "executedBy_eq": [4],
  "executedBy_exists": false,
  "executedBy_in": [4],
  "executedBy_nin": [4],
  "executionInputs_every": InputWhereInput,
  "executionInputs_none": InputWhereInput,
  "executionInputs_some": InputWhereInput,
  "isActiveByOnResponse_eq": false,
  "isActiveByOnResponse_ne": false,
  "isRepeatable_eq": false,
  "isRepeatable_ne": false,
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "onResponseId_all": [4],
  "onResponseId_eq": "4",
  "onResponseId_exists": true,
  "onResponseId_in": [4],
  "onResponseId_ne": "4",
  "onResponseId_nin": [4],
  "order_eq": 123,
  "order_exists": true,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [987],
  "order_lt": 123,
  "order_lte": 987,
  "order_ne": 987,
  "order_nin": [987],
  "originalTaskId_all": ["4"],
  "originalTaskId_eq": "4",
  "originalTaskId_exists": true,
  "originalTaskId_in": ["4"],
  "originalTaskId_ne": 4,
  "originalTaskId_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": [4],
  "parentsTree_exists": false,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "remarks_every": TaskRemarkWhereInput,
  "remarks_exists": true,
  "remarks_none": TaskRemarkWhereInput,
  "remarks_some": TaskRemarkWhereInput,
  "score": TaskScoreWhereInput,
  "site_all": ["4"],
  "site_eq": "4",
  "site_exists": true,
  "site_in": ["4"],
  "site_ne": 4,
  "site_nin": [4],
  "stateMachineInstance": StateMachineInstanceWhereInput,
  "taskTemplate_all": [4],
  "taskTemplate_eq": 4,
  "taskTemplate_exists": false,
  "taskTemplate_in": ["4"],
  "taskTemplate_ne": 4,
  "taskTemplate_nin": [4],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"]
}

TaskWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

Team

Description

Represents a Team

Fields
Field NameDescription
_id - ID
color - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
members - [TeamMember]
name - String!
protected - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "color": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "members": [TeamMember],
  "name": "abc123",
  "protected": false,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

TeamCreateInput

Description

Represents a TeamCreateInput

Fields
Input FieldDescription
color - String
description - String
members - [TeamMemberCreateInput]
name - String!
Example
{
  "color": "xyz789",
  "description": "abc123",
  "members": [TeamMemberCreateInput],
  "name": "xyz789"
}

TeamMember

Description

Represents a TeamMember

Fields
Field NameDescription
account - Account!
accountId - ID!
createdAt - DateTime
position - TeamMemberPosition!
updatedAt - DateTime
Example
{
  "account": Account,
  "accountId": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "position": "Member",
  "updatedAt": "2007-12-03T10:15:30Z"
}

TeamMemberCreateInput

Description

Represents a TeamMemberCreateInput

Fields
Input FieldDescription
account - ID!
position - TeamMemberPosition!
Example
{"account": 4, "position": "Member"}

TeamMemberPosition

Values
Enum ValueDescription

Member

Owner

Example
"Member"

TeamMemberUpdateInput

Description

Represents a TeamMemberUpdateInput

Fields
Input FieldDescription
account - ID
position - TeamMemberPosition
Example
{"account": "4", "position": "Member"}

TeamMemberWhereInput

Description

Represents a Where input for: TeamMember

Fields
Input FieldDescription
account_all - [ID]Given value includes all in array
account_eq - IDField is equal to given value
account_exists - BooleanField is set and exists
account_in - [ID]Given value includes field
account_ne - IDField is not equal to given value
account_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
position_eq - TeamMemberPositionField is equal to given value
position_exists - TeamMemberPositionField is set and exists
position_in - [TeamMemberPosition]Given value includes field
position_ne - TeamMemberPositionField is not equal to given value
position_nin - [TeamMemberPosition]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
Example
{
  "account_all": ["4"],
  "account_eq": 4,
  "account_exists": false,
  "account_in": [4],
  "account_ne": 4,
  "account_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "position_eq": "Member",
  "position_exists": "Member",
  "position_in": ["Member"],
  "position_ne": "Member",
  "position_nin": ["Member"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"]
}

TeamOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

color_ASC

color_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TeamUpdateInput

Description

Represents a TeamUpdateInput

Fields
Input FieldDescription
color - String
description - String
members - [TeamMemberUpdateInput]
name - String
Example
{
  "color": "xyz789",
  "description": "abc123",
  "members": [TeamMemberUpdateInput],
  "name": "xyz789"
}

TeamWhereInput

Description

Represents a Where input for: Team

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
members_every - TeamMemberWhereInput
members_exists - Boolean
members_none - TeamMemberWhereInput
members_some - TeamMemberWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["xyz789"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": [4],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": true,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "members_every": TeamMemberWhereInput,
  "members_exists": true,
  "members_none": TeamMemberWhereInput,
  "members_some": TeamMemberWhereInput,
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789",
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

TeamWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Tenant

Description

Represents a Tenant

Fields
Field NameDescription
_id - ID
admin - ID!
adminAccountFolder - ID!
adminAccountTemplate - ID!
adminAccountTemplateFolder - ID!
adminRole - ID!
adminRoleFolder - ID!
config - TenantConfig
createdAt - DateTime
default - BooleanTenant default
domain - String!Tenant domain domain.glartek.glarcloud.com
email - String!Tenant email
invitesCount - Int
isAdminTenant - Boolean
master - Booleanwhether its templates are presets for other tenants
name - String!Tenant name
password - String
rootSite - ID!
rootSiteTemplate - ID!
rootSiteTemplateFolder - ID!
totalAccounts - Int
updatedAt - DateTime
username - String!Tenant username
Example
{
  "_id": 4,
  "admin": 4,
  "adminAccountFolder": "4",
  "adminAccountTemplate": 4,
  "adminAccountTemplateFolder": "4",
  "adminRole": "4",
  "adminRoleFolder": "4",
  "config": TenantConfig,
  "createdAt": "2007-12-03T10:15:30Z",
  "default": true,
  "domain": "xyz789",
  "email": "xyz789",
  "invitesCount": 987,
  "isAdminTenant": true,
  "master": true,
  "name": "xyz789",
  "password": "abc123",
  "rootSite": "4",
  "rootSiteTemplate": "4",
  "rootSiteTemplateFolder": 4,
  "totalAccounts": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "username": "abc123"
}

TenantBasicInfo

Fields
Field NameDescription
_id - ID
domain - String
isRemoteAssistAllowed - Boolean
master - Boolean
name - String
paletteDark - TenantConfigPaletteDark
paletteLight - TenantConfigPaletteLight
resources - TenantResources
samlAuthEndpoint - String
sentryEnvironment - String
sentryMobileDSN - String
sentryWebDSN - String
siteURL - String
templateLibraryEnabled - Boolean
timezone - String
version - String
Example
{
  "_id": 4,
  "domain": "abc123",
  "isRemoteAssistAllowed": true,
  "master": true,
  "name": "abc123",
  "paletteDark": TenantConfigPaletteDark,
  "paletteLight": TenantConfigPaletteLight,
  "resources": TenantResources,
  "samlAuthEndpoint": "abc123",
  "sentryEnvironment": "xyz789",
  "sentryMobileDSN": "abc123",
  "sentryWebDSN": "xyz789",
  "siteURL": "abc123",
  "templateLibraryEnabled": false,
  "timezone": "abc123",
  "version": "xyz789"
}

TenantConfig

Description

Represents a TenantConfig

Fields
Field NameDescription
appname - String
arCore - TenantConfigArCore
language - String
ldap - TenantConfigLdap
mixedReality - TenantConfigMixedReality
paletteDark - TenantConfigPaletteDark
paletteLight - TenantConfigPaletteLight
saml - TenantConfigSaml
timeZone - String
Example
{
  "appname": "abc123",
  "arCore": TenantConfigArCore,
  "language": "xyz789",
  "ldap": TenantConfigLdap,
  "mixedReality": TenantConfigMixedReality,
  "paletteDark": TenantConfigPaletteDark,
  "paletteLight": TenantConfigPaletteLight,
  "saml": TenantConfigSaml,
  "timeZone": "xyz789"
}

TenantConfigArCore

Description

Represents a TenantConfigArCore

Fields
Field NameDescription
audience - String!
clientEmail - String!
privateKey - String!
privateKeyId - String!
Example
{
  "audience": "abc123",
  "clientEmail": "xyz789",
  "privateKey": "abc123",
  "privateKeyId": "abc123"
}

TenantConfigArCoreUpdateInput

Description

Represents a TenantConfigArCoreUpdateInput

Fields
Input FieldDescription
audience - String
clientEmail - String
privateKey - String
privateKeyId - String
Example
{
  "audience": "xyz789",
  "clientEmail": "abc123",
  "privateKey": "xyz789",
  "privateKeyId": "abc123"
}

TenantConfigLdap

Description

Represents a TenantConfigLdap

Fields
Field NameDescription
ad - Boolean
authorizedSites - [Site!]!
authorizedSitesIds - [ID!]!
bindDN - String!
defaultRole - Role
defaultRoleId - ID
disabled - Boolean
fieldMap - TenantConfigLdapFieldMap
filter - String
overrideRolesOnUpdate - Boolean
password - String!
roleMap - [TenantConfigLdapRoleMap]
searchDN - String!
url - String!
username - String!
Example
{
  "ad": false,
  "authorizedSites": [Site],
  "authorizedSitesIds": [4],
  "bindDN": "abc123",
  "defaultRole": Role,
  "defaultRoleId": "4",
  "disabled": true,
  "fieldMap": TenantConfigLdapFieldMap,
  "filter": "abc123",
  "overrideRolesOnUpdate": true,
  "password": "abc123",
  "roleMap": [TenantConfigLdapRoleMap],
  "searchDN": "xyz789",
  "url": "abc123",
  "username": "xyz789"
}

TenantConfigLdapFieldMap

Description

Represents a TenantConfigLdapFieldMap

Fields
Field NameDescription
email - String!
name - String!
username - String!
Example
{
  "email": "abc123",
  "name": "abc123",
  "username": "abc123"
}

TenantConfigLdapFieldMapUpdateInput

Description

Represents a TenantConfigLdapFieldMapUpdateInput

Fields
Input FieldDescription
email - String
name - String
username - String
Example
{
  "email": "xyz789",
  "name": "abc123",
  "username": "xyz789"
}

TenantConfigLdapRoleMap

Description

Represents a TenantConfigLdapRoleMap

Fields
Field NameDescription
_id - ID
group - String
mapTo - Role
mapToId - ID
name - String!
roleFieldName - StringExample memberOf
Example
{
  "_id": "4",
  "group": "xyz789",
  "mapTo": Role,
  "mapToId": "4",
  "name": "abc123",
  "roleFieldName": "xyz789"
}

TenantConfigLdapRoleMapUpdateInput

Description

Represents a TenantConfigLdapRoleMapUpdateInput

Fields
Input FieldDescription
group - String
mapTo - ID
name - String
roleFieldName - StringExample memberOf
Example
{
  "group": "abc123",
  "mapTo": "4",
  "name": "xyz789",
  "roleFieldName": "xyz789"
}

TenantConfigLdapUpdateInput

Description

Represents a TenantConfigLdapUpdateInput

Fields
Input FieldDescription
ad - Boolean
bindDN - String
defaultRole - ID
disabled - Boolean
fieldMap - TenantConfigLdapFieldMapUpdateInput
filter - String
overrideRolesOnUpdate - Boolean
password - String
roleMap - [TenantConfigLdapRoleMapUpdateInput]
searchDN - String
url - String
username - String
Example
{
  "ad": true,
  "bindDN": "abc123",
  "defaultRole": "4",
  "disabled": false,
  "fieldMap": TenantConfigLdapFieldMapUpdateInput,
  "filter": "abc123",
  "overrideRolesOnUpdate": true,
  "password": "abc123",
  "roleMap": [TenantConfigLdapRoleMapUpdateInput],
  "searchDN": "abc123",
  "url": "xyz789",
  "username": "abc123"
}

TenantConfigMixedReality

Description

Represents a TenantConfigMixedReality

Fields
Field NameDescription
accountDomain - String!
accountId - String!
accountKey - String!
Example
{
  "accountDomain": "xyz789",
  "accountId": "abc123",
  "accountKey": "abc123"
}

TenantConfigPaletteDark

Example
{
  "alert": TenantConfigPaletteDarkAlert,
  "background": TenantConfigPaletteDarkBackground,
  "error": TenantConfigPaletteDarkError,
  "grey": TenantConfigPaletteDarkGrey,
  "info": TenantConfigPaletteDarkInfo,
  "label": TenantConfigPaletteDarkLabel,
  "other": TenantConfigPaletteDarkOther,
  "primary": TenantConfigPaletteDarkPrimary,
  "secondary": TenantConfigPaletteDarkSecondary,
  "success": TenantConfigPaletteDarkSuccess,
  "text": TenantConfigPaletteDarkText
}

TenantConfigPaletteDarkAlert

Description

Represents a TenantConfigPaletteDarkAlert

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "abc123",
  "main": "abc123"
}

TenantConfigPaletteDarkAlertUpdateInput

Description

Represents a TenantConfigPaletteDarkAlertUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteDarkBackground

Description

Represents a TenantConfigPaletteDarkBackground

Fields
Field NameDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "abc123",
  "background1": "abc123",
  "background2": "abc123",
  "default": "abc123"
}

TenantConfigPaletteDarkBackgroundUpdateInput

Description

Represents a TenantConfigPaletteDarkBackgroundUpdateInput

Fields
Input FieldDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "abc123",
  "background1": "abc123",
  "background2": "xyz789",
  "default": "abc123"
}

TenantConfigPaletteDarkError

Description

Represents a TenantConfigPaletteDarkError

Fields
Field NameDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "abc123",
  "medium": "abc123"
}

TenantConfigPaletteDarkErrorUpdateInput

Description

Represents a TenantConfigPaletteDarkErrorUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "xyz789",
  "light": "abc123",
  "main": "xyz789",
  "medium": "xyz789"
}

TenantConfigPaletteDarkGrey

Description

Represents a TenantConfigPaletteDarkGrey

Fields
Field NameDescription
light - String
main - String
medium - String
Example
{
  "light": "abc123",
  "main": "xyz789",
  "medium": "abc123"
}

TenantConfigPaletteDarkGreyUpdateInput

Description

Represents a TenantConfigPaletteDarkGreyUpdateInput

Fields
Input FieldDescription
light - String
main - String
medium - String
Example
{
  "light": "xyz789",
  "main": "xyz789",
  "medium": "xyz789"
}

TenantConfigPaletteDarkInfo

Description

Represents a TenantConfigPaletteDarkInfo

Fields
Field NameDescription
light - String
main - String
Example
{
  "light": "abc123",
  "main": "xyz789"
}

TenantConfigPaletteDarkInfoUpdateInput

Description

Represents a TenantConfigPaletteDarkInfoUpdateInput

Fields
Input FieldDescription
light - String
main - String
Example
{
  "light": "abc123",
  "main": "abc123"
}

TenantConfigPaletteDarkLabel

Description

Represents a TenantConfigPaletteDarkLabel

Fields
Field NameDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "abc123",
  "label2": "abc123",
  "label3": "xyz789",
  "label4": "abc123",
  "label5": "abc123",
  "label6": "xyz789",
  "label7": "xyz789",
  "label8": "xyz789",
  "label9": "abc123",
  "label10": "xyz789",
  "label11": "xyz789"
}

TenantConfigPaletteDarkLabelUpdateInput

Description

Represents a TenantConfigPaletteDarkLabelUpdateInput

Fields
Input FieldDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "xyz789",
  "label2": "xyz789",
  "label3": "abc123",
  "label4": "xyz789",
  "label5": "abc123",
  "label6": "xyz789",
  "label7": "abc123",
  "label8": "xyz789",
  "label9": "xyz789",
  "label10": "xyz789",
  "label11": "xyz789"
}

TenantConfigPaletteDarkOther

Description

Represents a TenantConfigPaletteDarkOther

Fields
Field NameDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "xyz789",
  "pink": "xyz789",
  "purpleDark": "abc123",
  "purpleLight": "xyz789"
}

TenantConfigPaletteDarkOtherUpdateInput

Description

Represents a TenantConfigPaletteDarkOtherUpdateInput

Fields
Input FieldDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "abc123",
  "pink": "abc123",
  "purpleDark": "xyz789",
  "purpleLight": "xyz789"
}

TenantConfigPaletteDarkPrimary

Description

Represents a TenantConfigPaletteDarkPrimary

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "abc123",
  "main": "xyz789"
}

TenantConfigPaletteDarkPrimaryUpdateInput

Description

Represents a TenantConfigPaletteDarkPrimaryUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "xyz789"
}

TenantConfigPaletteDarkSecondary

Description

Represents a TenantConfigPaletteDarkSecondary

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "abc123",
  "main": "abc123"
}

TenantConfigPaletteDarkSecondaryUpdateInput

Description

Represents a TenantConfigPaletteDarkSecondaryUpdateInput

Fields
Input FieldDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteDarkSuccess

Description

Represents a TenantConfigPaletteDarkSuccess

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteDarkSuccessUpdateInput

Description

Represents a TenantConfigPaletteDarkSuccessUpdateInput

Fields
Input FieldDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteDarkText

Description

Represents a TenantConfigPaletteDarkText

Fields
Field NameDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "xyz789",
  "primary": "abc123",
  "secondary": "abc123"
}

TenantConfigPaletteDarkTextUpdateInput

Description

Represents a TenantConfigPaletteDarkTextUpdateInput

Fields
Input FieldDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "xyz789",
  "primary": "xyz789",
  "secondary": "xyz789"
}

TenantConfigPaletteDarkUpdateInput

Example
{
  "alert": TenantConfigPaletteDarkAlertUpdateInput,
  "background": TenantConfigPaletteDarkBackgroundUpdateInput,
  "error": TenantConfigPaletteDarkErrorUpdateInput,
  "grey": TenantConfigPaletteDarkGreyUpdateInput,
  "info": TenantConfigPaletteDarkInfoUpdateInput,
  "label": TenantConfigPaletteDarkLabelUpdateInput,
  "other": TenantConfigPaletteDarkOtherUpdateInput,
  "primary": TenantConfigPaletteDarkPrimaryUpdateInput,
  "secondary": TenantConfigPaletteDarkSecondaryUpdateInput,
  "success": TenantConfigPaletteDarkSuccessUpdateInput,
  "text": TenantConfigPaletteDarkTextUpdateInput
}

TenantConfigPaletteLight

Example
{
  "alert": TenantConfigPaletteLightAlert,
  "background": TenantConfigPaletteLightBackground,
  "error": TenantConfigPaletteLightError,
  "grey": TenantConfigPaletteLightGrey,
  "info": TenantConfigPaletteLightInfo,
  "label": TenantConfigPaletteLightLabel,
  "other": TenantConfigPaletteLightOther,
  "primary": TenantConfigPaletteLightPrimary,
  "secondary": TenantConfigPaletteLightSecondary,
  "success": TenantConfigPaletteLightSuccess,
  "text": TenantConfigPaletteLightText
}

TenantConfigPaletteLightAlert

Description

Represents a TenantConfigPaletteLightAlert

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "xyz789",
  "main": "xyz789"
}

TenantConfigPaletteLightAlertUpdateInput

Description

Represents a TenantConfigPaletteLightAlertUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "xyz789",
  "main": "xyz789"
}

TenantConfigPaletteLightBackground

Description

Represents a TenantConfigPaletteLightBackground

Fields
Field NameDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "xyz789",
  "background1": "abc123",
  "background2": "xyz789",
  "default": "abc123"
}

TenantConfigPaletteLightBackgroundUpdateInput

Description

Represents a TenantConfigPaletteLightBackgroundUpdateInput

Fields
Input FieldDescription
background0 - String
background1 - String
background2 - String
default - String
Example
{
  "background0": "abc123",
  "background1": "abc123",
  "background2": "xyz789",
  "default": "xyz789"
}

TenantConfigPaletteLightError

Description

Represents a TenantConfigPaletteLightError

Fields
Field NameDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "abc123",
  "light": "abc123",
  "main": "xyz789",
  "medium": "xyz789"
}

TenantConfigPaletteLightErrorUpdateInput

Description

Represents a TenantConfigPaletteLightErrorUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
medium - String
Example
{
  "dark": "abc123",
  "light": "abc123",
  "main": "abc123",
  "medium": "abc123"
}

TenantConfigPaletteLightGrey

Description

Represents a TenantConfigPaletteLightGrey

Fields
Field NameDescription
light - String
main - String
medium - String
Example
{
  "light": "abc123",
  "main": "abc123",
  "medium": "abc123"
}

TenantConfigPaletteLightGreyUpdateInput

Description

Represents a TenantConfigPaletteLightGreyUpdateInput

Fields
Input FieldDescription
light - String
main - String
medium - String
Example
{
  "light": "abc123",
  "main": "abc123",
  "medium": "abc123"
}

TenantConfigPaletteLightInfo

Description

Represents a TenantConfigPaletteLightInfo

Fields
Field NameDescription
light - String
main - String
Example
{
  "light": "abc123",
  "main": "abc123"
}

TenantConfigPaletteLightInfoUpdateInput

Description

Represents a TenantConfigPaletteLightInfoUpdateInput

Fields
Input FieldDescription
light - String
main - String
Example
{
  "light": "xyz789",
  "main": "xyz789"
}

TenantConfigPaletteLightLabel

Description

Represents a TenantConfigPaletteLightLabel

Fields
Field NameDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "xyz789",
  "label2": "xyz789",
  "label3": "abc123",
  "label4": "xyz789",
  "label5": "xyz789",
  "label6": "xyz789",
  "label7": "abc123",
  "label8": "abc123",
  "label9": "abc123",
  "label10": "abc123",
  "label11": "xyz789"
}

TenantConfigPaletteLightLabelUpdateInput

Description

Represents a TenantConfigPaletteLightLabelUpdateInput

Fields
Input FieldDescription
label1 - String
label2 - String
label3 - String
label4 - String
label5 - String
label6 - String
label7 - String
label8 - String
label9 - String
label10 - String
label11 - String
Example
{
  "label1": "abc123",
  "label2": "abc123",
  "label3": "xyz789",
  "label4": "xyz789",
  "label5": "xyz789",
  "label6": "abc123",
  "label7": "abc123",
  "label8": "xyz789",
  "label9": "abc123",
  "label10": "abc123",
  "label11": "abc123"
}

TenantConfigPaletteLightOther

Description

Represents a TenantConfigPaletteLightOther

Fields
Field NameDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "abc123",
  "pink": "abc123",
  "purpleDark": "xyz789",
  "purpleLight": "xyz789"
}

TenantConfigPaletteLightOtherUpdateInput

Description

Represents a TenantConfigPaletteLightOtherUpdateInput

Fields
Input FieldDescription
peach - String
pink - String
purpleDark - String
purpleLight - String
Example
{
  "peach": "abc123",
  "pink": "xyz789",
  "purpleDark": "abc123",
  "purpleLight": "xyz789"
}

TenantConfigPaletteLightPrimary

Description

Represents a TenantConfigPaletteLightPrimary

Fields
Field NameDescription
dark - String
light - String
main - String
Example
{
  "dark": "xyz789",
  "light": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteLightPrimaryUpdateInput

Description

Represents a TenantConfigPaletteLightPrimaryUpdateInput

Fields
Input FieldDescription
dark - String
light - String
main - String
Example
{
  "dark": "abc123",
  "light": "abc123",
  "main": "abc123"
}

TenantConfigPaletteLightSecondary

Description

Represents a TenantConfigPaletteLightSecondary

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "abc123",
  "main": "xyz789"
}

TenantConfigPaletteLightSecondaryUpdateInput

Description

Represents a TenantConfigPaletteLightSecondaryUpdateInput

Fields
Input FieldDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "abc123"
}

TenantConfigPaletteLightSuccess

Description

Represents a TenantConfigPaletteLightSuccess

Fields
Field NameDescription
dark - String
main - String
Example
{
  "dark": "abc123",
  "main": "xyz789"
}

TenantConfigPaletteLightSuccessUpdateInput

Description

Represents a TenantConfigPaletteLightSuccessUpdateInput

Fields
Input FieldDescription
dark - String
main - String
Example
{
  "dark": "xyz789",
  "main": "xyz789"
}

TenantConfigPaletteLightText

Description

Represents a TenantConfigPaletteLightText

Fields
Field NameDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "abc123",
  "primary": "abc123",
  "secondary": "xyz789"
}

TenantConfigPaletteLightTextUpdateInput

Description

Represents a TenantConfigPaletteLightTextUpdateInput

Fields
Input FieldDescription
disabled - String
primary - String
secondary - String
Example
{
  "disabled": "xyz789",
  "primary": "abc123",
  "secondary": "abc123"
}

TenantConfigPaletteLightUpdateInput

Example
{
  "alert": TenantConfigPaletteLightAlertUpdateInput,
  "background": TenantConfigPaletteLightBackgroundUpdateInput,
  "error": TenantConfigPaletteLightErrorUpdateInput,
  "grey": TenantConfigPaletteLightGreyUpdateInput,
  "info": TenantConfigPaletteLightInfoUpdateInput,
  "label": TenantConfigPaletteLightLabelUpdateInput,
  "other": TenantConfigPaletteLightOtherUpdateInput,
  "primary": TenantConfigPaletteLightPrimaryUpdateInput,
  "secondary": TenantConfigPaletteLightSecondaryUpdateInput,
  "success": TenantConfigPaletteLightSuccessUpdateInput,
  "text": TenantConfigPaletteLightTextUpdateInput
}

TenantConfigSaml

Description

Represents a TenantConfigSaml

Fields
Field NameDescription
authorizedSites - [Site!]!
authorizedSitesIds - [ID!]!
callbackUrl - String
cert - String
defaultRole - Role
defaultRoleId - ID
entryPoint - String
fetchUrl - TenantConfigSamlFetchUrl
fieldMap - TenantConfigSamlFieldMap
issuer - String
overrideRolesOnUpdate - Boolean
roleMap - [TenantConfigSamlRoleMap]
Example
{
  "authorizedSites": [Site],
  "authorizedSitesIds": ["4"],
  "callbackUrl": "abc123",
  "cert": "xyz789",
  "defaultRole": Role,
  "defaultRoleId": "4",
  "entryPoint": "xyz789",
  "fetchUrl": TenantConfigSamlFetchUrl,
  "fieldMap": TenantConfigSamlFieldMap,
  "issuer": "abc123",
  "overrideRolesOnUpdate": false,
  "roleMap": [TenantConfigSamlRoleMap]
}

TenantConfigSamlFetchUrl

Description

Represents a TenantConfigSamlFetchUrl

Fields
Field NameDescription
certPath - String
entryPointPath - String
url - String!
Example
{
  "certPath": "abc123",
  "entryPointPath": "abc123",
  "url": "abc123"
}

TenantConfigSamlFetchUrlUpdateInput

Description

Represents a TenantConfigSamlFetchUrlUpdateInput

Fields
Input FieldDescription
certPath - String
entryPointPath - String
url - String
Example
{
  "certPath": "abc123",
  "entryPointPath": "abc123",
  "url": "abc123"
}

TenantConfigSamlFieldMap

Description

Represents a TenantConfigSamlFieldMap

Fields
Field NameDescription
email - String!
name - String!
username - String!
Example
{
  "email": "xyz789",
  "name": "xyz789",
  "username": "abc123"
}

TenantConfigSamlFieldMapUpdateInput

Description

Represents a TenantConfigSamlFieldMapUpdateInput

Fields
Input FieldDescription
email - String
name - String
username - String
Example
{
  "email": "xyz789",
  "name": "xyz789",
  "username": "abc123"
}

TenantConfigSamlRoleMap

Description

Represents a TenantConfigSamlRoleMap

Fields
Field NameDescription
_id - ID
group - String
mapTo - Role
mapToId - ID
name - String!
roleFieldName - StringExample memberOf
Example
{
  "_id": 4,
  "group": "abc123",
  "mapTo": Role,
  "mapToId": 4,
  "name": "xyz789",
  "roleFieldName": "abc123"
}

TenantConfigSamlRoleMapUpdateInput

Description

Represents a TenantConfigSamlRoleMapUpdateInput

Fields
Input FieldDescription
group - String
mapTo - ID
name - String
roleFieldName - StringExample memberOf
Example
{
  "group": "abc123",
  "mapTo": 4,
  "name": "abc123",
  "roleFieldName": "xyz789"
}

TenantConfigSamlUpdateInput

Description

Represents a TenantConfigSamlUpdateInput

Fields
Input FieldDescription
callbackUrl - String
cert - String
defaultRole - ID
entryPoint - String
fetchUrl - TenantConfigSamlFetchUrlUpdateInput
fieldMap - TenantConfigSamlFieldMapUpdateInput
issuer - String
overrideRolesOnUpdate - Boolean
roleMap - [TenantConfigSamlRoleMapUpdateInput]
Example
{
  "callbackUrl": "abc123",
  "cert": "xyz789",
  "defaultRole": 4,
  "entryPoint": "abc123",
  "fetchUrl": TenantConfigSamlFetchUrlUpdateInput,
  "fieldMap": TenantConfigSamlFieldMapUpdateInput,
  "issuer": "abc123",
  "overrideRolesOnUpdate": false,
  "roleMap": [TenantConfigSamlRoleMapUpdateInput]
}

TenantResources

Fields
Field NameDescription
logo_dark - DownloadLogoInfo
logo_light - DownloadLogoInfo
Example
{
  "logo_dark": DownloadLogoInfo,
  "logo_light": DownloadLogoInfo
}

Time

Description

A time string at UTC, such as 10:15:30Z, compliant with the full-time format outlined in section 5.6 of the RFC 3339profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.

Example
"10:15:30Z"

TimeSeriesFilter

Fields
Input FieldDescription
filters - [KeyValue!]!
type - TimeSeriesFilterType
Example
{"filters": [KeyValue], "type": "and"}

TimeSeriesFilterType

Values
Enum ValueDescription

and

or

Example
"and"

TimeSeriesGroupFunction

Values
Enum ValueDescription

count

mean

Example
"count"

TimeSeriesGroupMethods

Fields
Input FieldDescription
fields - [String]
function - TimeSeriesGroupFunction
interval - String
mode - TimeSeriesGroupMode
Example
{
  "fields": ["abc123"],
  "function": "count",
  "interval": "abc123",
  "mode": "by"
}

TimeSeriesGroupMode

Values
Enum ValueDescription

by

except

Example
"by"

TimeSeriesTypes

Values
Enum ValueDescription

InfluxV1

InfluxV2

None

Example
"InfluxV1"

Timesheet

Description

Represents a Timesheet

Fields
Field NameDescription
_id - ID
action - Action
actionId - ID
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
duration - Int
finishDate - DateTime
issue - IssueInstance
issueId - ID
labelValues - [LabelValue]
labelValuesIds - [ID]
startDate - DateTime
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "action": Action,
  "actionId": "4",
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "duration": 987,
  "finishDate": "2007-12-03T10:15:30Z",
  "issue": IssueInstance,
  "issueId": 4,
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "startDate": "2007-12-03T10:15:30Z",
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

TimesheetByUserResult

Fields
Field NameDescription
found - Int
timesheets - [Timesheet]
Example
{"found": 987, "timesheets": [Timesheet]}

TimesheetCreateInput

Description

Represents a TimesheetCreateInput

Fields
Input FieldDescription
action - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
description - String
duration - Int
finishDate - DateTime
issue - ID
labelValues - [ID]
startDate - DateTime
Example
{
  "action": "4",
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "description": "xyz789",
  "duration": 123,
  "finishDate": "2007-12-03T10:15:30Z",
  "issue": 4,
  "labelValues": [4],
  "startDate": "2007-12-03T10:15:30Z"
}

TimesheetIssueWhereInput

Fields
Input FieldDescription
_id_in - [ID]
catalog_in - [ID]
element_in - [ID]
site_in - [ID]
Example
{
  "_id_in": ["4"],
  "catalog_in": [4],
  "element_in": ["4"],
  "site_in": [4]
}

TimesheetOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

assignedAccounts_name_ASC

assignedAccounts_name_DESC

assignedLabelValues_value_ASC

assignedLabelValues_value_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

duration_ASC

duration_DESC

finishDate_ASC

finishDate_DESC

issue_element_name_ASC

issue_element_name_DESC

issue_name_ASC

issue_name_DESC

issue_site_name_ASC

issue_site_name_DESC

labelValue_value_ASC

labelValue_value_DESC

startDate_ASC

startDate_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

TimesheetStatistics

Fields
Field NameDescription
firstTimeEntry - Date
lastTimeEntry - Date
numberUsers - Int
totalMinutes - Int
Example
{
  "firstTimeEntry": "2007-12-03",
  "lastTimeEntry": "2007-12-03",
  "numberUsers": 987,
  "totalMinutes": 987
}

TimesheetUpdateInput

Description

Represents a TimesheetUpdateInput

Fields
Input FieldDescription
action - ID
assignedAccounts - [ID]
assignedLabelValues - [ID]
description - String
duration - Int
finishDate - DateTime
issue - ID
labelValues - [ID]
startDate - DateTime
Example
{
  "action": "4",
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "description": "xyz789",
  "duration": 123,
  "finishDate": "2007-12-03T10:15:30Z",
  "issue": "4",
  "labelValues": ["4"],
  "startDate": "2007-12-03T10:15:30Z"
}

TimesheetWhereInput

Description

Represents a Where input for: Timesheet

Fields
Input FieldDescription
AND - [AndTimesheetsWhereInput]
OR - [OrTimesheetsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
action_all - [ID]Given value includes all in array
action_eq - IDField is equal to given value
action_exists - BooleanField is set and exists
action_in - [ID]Given value includes field
action_ne - IDField is not equal to given value
action_nin - [ID]Given value does not include field
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
duration_eq - IntField is equal to given value
duration_exists - BooleanField is set and exists
duration_gt - IntField is greater than given value
duration_gte - IntField is greater or equal than given value
duration_in - [Int]Given value includes field
duration_lt - IntField is lower than given value
duration_lte - IntField is lower or equal than given value
duration_ne - IntField is not equal to given value
duration_nin - [Int]Given value does not includes field
finishDate_eq - DateTimeField is equal to given value
finishDate_exists - BooleanField is set and exists
finishDate_gt - DateTimeField is greater than given value
finishDate_gte - DateTimeField is greater or equal than given value
finishDate_in - [DateTime]Given value includes field
finishDate_lt - DateTimeField is lower than given value
finishDate_lte - DateTimeField is lower or equal than given value
finishDate_ne - DateTimeField is not equal to given value
finishDate_nin - [DateTime]Given value does not includes field
issue - TimesheetIssueWhereInput
issue_all - [ID]Given value includes all in array
issue_eq - IDField is equal to given value
issue_exists - BooleanField is set and exists
issue_in - [ID]Given value includes field
issue_ne - IDField is not equal to given value
issue_nin - [ID]Given value does not include field
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
startDate_eq - DateTimeField is equal to given value
startDate_exists - BooleanField is set and exists
startDate_gt - DateTimeField is greater than given value
startDate_gte - DateTimeField is greater or equal than given value
startDate_in - [DateTime]Given value includes field
startDate_lt - DateTimeField is lower than given value
startDate_lte - DateTimeField is lower or equal than given value
startDate_ne - DateTimeField is not equal to given value
startDate_nin - [DateTime]Given value does not includes field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "AND": [AndTimesheetsWhereInput],
  "OR": [OrTimesheetsWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "action_all": [4],
  "action_eq": 4,
  "action_exists": false,
  "action_in": [4],
  "action_ne": 4,
  "action_nin": ["4"],
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": ["4"],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["abc123"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "duration_eq": 123,
  "duration_exists": true,
  "duration_gt": 987,
  "duration_gte": 987,
  "duration_in": [123],
  "duration_lt": 987,
  "duration_lte": 123,
  "duration_ne": 987,
  "duration_nin": [987],
  "finishDate_eq": "2007-12-03T10:15:30Z",
  "finishDate_exists": true,
  "finishDate_gt": "2007-12-03T10:15:30Z",
  "finishDate_gte": "2007-12-03T10:15:30Z",
  "finishDate_in": ["2007-12-03T10:15:30Z"],
  "finishDate_lt": "2007-12-03T10:15:30Z",
  "finishDate_lte": "2007-12-03T10:15:30Z",
  "finishDate_ne": "2007-12-03T10:15:30Z",
  "finishDate_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "issue": TimesheetIssueWhereInput,
  "issue_all": [4],
  "issue_eq": "4",
  "issue_exists": false,
  "issue_in": ["4"],
  "issue_ne": 4,
  "issue_nin": [4],
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "startDate_eq": "2007-12-03T10:15:30Z",
  "startDate_exists": true,
  "startDate_gt": "2007-12-03T10:15:30Z",
  "startDate_gte": "2007-12-03T10:15:30Z",
  "startDate_in": ["2007-12-03T10:15:30Z"],
  "startDate_lt": "2007-12-03T10:15:30Z",
  "startDate_lte": "2007-12-03T10:15:30Z",
  "startDate_ne": "2007-12-03T10:15:30Z",
  "startDate_nin": ["2007-12-03T10:15:30Z"],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

TimesheetWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

Tool

Description

Represents a Tool

Fields
Field NameDescription
_id - ID
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringTool description
designation - StringTool designation
dimension - ToolDimension
images - [File]
imagesIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
partNumber - String!Part-number
protected - Boolean
stockPerStorage - [ToolStockPerStorage]
system - Boolean
totalStock - Int
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "designation": "abc123",
  "dimension": ToolDimension,
  "images": [File],
  "imagesIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "partNumber": "abc123",
  "protected": true,
  "stockPerStorage": [ToolStockPerStorage],
  "system": true,
  "totalStock": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

ToolAssociationInput

Fields
Input FieldDescription
associatedToolItems - [ID]
associatedTools - [ID]
tool - ID
toolItems - [ID]
Example
{
  "associatedToolItems": [4],
  "associatedTools": ["4"],
  "tool": 4,
  "toolItems": ["4"]
}

ToolCreateInput

Description

Represents a ToolCreateInput

Fields
Input FieldDescription
description - StringTool description
designation - StringTool designation
dimension - ToolDimensionCreateInput
images - [ID]
labelValues - [ID]
partNumber - String!Part-number
Example
{
  "description": "abc123",
  "designation": "xyz789",
  "dimension": ToolDimensionCreateInput,
  "images": [4],
  "labelValues": [4],
  "partNumber": "abc123"
}

ToolDimension

Description

Represents a ToolDimension

Fields
Field NameDescription
height - Float
length - Float
unit - String
width - Float
Example
{
  "height": 987.65,
  "length": 987.65,
  "unit": "abc123",
  "width": 123.45
}

ToolDimensionCreateInput

Description

Represents a ToolDimensionCreateInput

Fields
Input FieldDescription
height - Float
length - Float
unit - String
width - Float
Example
{
  "height": 987.65,
  "length": 987.65,
  "unit": "abc123",
  "width": 123.45
}

ToolDimensionUpdateInput

Description

Represents a ToolDimensionUpdateInput

Fields
Input FieldDescription
height - Float
length - Float
unit - String
width - Float
Example
{
  "height": 987.65,
  "length": 987.65,
  "unit": "xyz789",
  "width": 123.45
}

ToolDimensionWhereInput

Description

Represents a Where input for: ToolDimension

Fields
Input FieldDescription
height_eq - FloatField is equal to given value
height_exists - BooleanField is set and exists
height_gt - FloatField is greater than given value
height_gte - FloatField is greater or equal than given value
height_in - [Float]Given value includes field
height_lt - FloatField is lower than given value
height_lte - FloatField is lower or equal than given value
height_ne - FloatField is not equal to given value
height_nin - [Float]Given value does not includes field
length_eq - FloatField is equal to given value
length_exists - BooleanField is set and exists
length_gt - FloatField is greater than given value
length_gte - FloatField is greater or equal than given value
length_in - [Float]Given value includes field
length_lt - FloatField is lower than given value
length_lte - FloatField is lower or equal than given value
length_ne - FloatField is not equal to given value
length_nin - [Float]Given value does not includes field
unit_contains - StringField contains given value, case-insensitive
unit_ends_with - StringField ends with given value, case-insensitive
unit_eq - StringField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [String]Given value includes field
unit_ne - StringField is not equal to given value
unit_nin - [String]Given value does not includes field
unit_not_contains - StringField does not contains given value, case-insensitive
unit_not_ends_with - StringField does not end with given value, case-insensitive
unit_not_starts_with - StringField does not start with given value, case-insensitive
unit_starts_with - StringField starts with given value, case-insensitive
width_eq - FloatField is equal to given value
width_exists - BooleanField is set and exists
width_gt - FloatField is greater than given value
width_gte - FloatField is greater or equal than given value
width_in - [Float]Given value includes field
width_lt - FloatField is lower than given value
width_lte - FloatField is lower or equal than given value
width_ne - FloatField is not equal to given value
width_nin - [Float]Given value does not includes field
Example
{
  "height_eq": 123.45,
  "height_exists": true,
  "height_gt": 987.65,
  "height_gte": 123.45,
  "height_in": [123.45],
  "height_lt": 987.65,
  "height_lte": 123.45,
  "height_ne": 987.65,
  "height_nin": [987.65],
  "length_eq": 987.65,
  "length_exists": false,
  "length_gt": 123.45,
  "length_gte": 987.65,
  "length_in": [123.45],
  "length_lt": 123.45,
  "length_lte": 123.45,
  "length_ne": 123.45,
  "length_nin": [987.65],
  "unit_contains": "abc123",
  "unit_ends_with": "xyz789",
  "unit_eq": "abc123",
  "unit_exists": true,
  "unit_in": ["abc123"],
  "unit_ne": "xyz789",
  "unit_nin": ["xyz789"],
  "unit_not_contains": "xyz789",
  "unit_not_ends_with": "abc123",
  "unit_not_starts_with": "abc123",
  "unit_starts_with": "xyz789",
  "width_eq": 123.45,
  "width_exists": false,
  "width_gt": 987.65,
  "width_gte": 123.45,
  "width_in": [123.45],
  "width_lt": 123.45,
  "width_lte": 123.45,
  "width_ne": 123.45,
  "width_nin": [123.45]
}

ToolItem

Description

Represents a ToolItem

Fields
Field NameDescription
_id - ID
associatedWith - [ToolItem]
available - Boolean
code - String!
createdAt - DateTime
createdBy - Account
createdById - ID
customFields - [ToolItemCustomField]
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - String
hiddenFields - [String]
location - Location!
locationId - ID!
protected - Boolean
serialNumber - String
status - ToolItemStatus
system - Boolean
tool - Tool!
toolId - ID!
updatedAt - DateTime
updatedBy - Account
updatedById - ID
usedBy - Account
usedById - ID
usedIn - IssueInstance
usedInId - ID
Example
{
  "_id": 4,
  "associatedWith": [ToolItem],
  "available": false,
  "code": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "customFields": [ToolItemCustomField],
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "description": "xyz789",
  "hiddenFields": ["abc123"],
  "location": Location,
  "locationId": "4",
  "protected": true,
  "serialNumber": "xyz789",
  "status": "IN_MAINTENANCE",
  "system": true,
  "tool": Tool,
  "toolId": 4,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4",
  "usedBy": Account,
  "usedById": "4",
  "usedIn": IssueInstance,
  "usedInId": 4
}

ToolItemCreateInput

Description

Represents a ToolItemCreateInput

Fields
Input FieldDescription
code - String!
customFields - [ToolItemCustomFieldCreateInput]
description - String
hiddenFields - [String]
location - ID!
serialNumber - String
status - ToolItemStatus
tool - ID!
usedBy - ID
usedIn - ID
Example
{
  "code": "xyz789",
  "customFields": [ToolItemCustomFieldCreateInput],
  "description": "abc123",
  "hiddenFields": ["xyz789"],
  "location": 4,
  "serialNumber": "xyz789",
  "status": "IN_MAINTENANCE",
  "tool": "4",
  "usedBy": 4,
  "usedIn": "4"
}

ToolItemCustomField

Description

Represents a ToolItemCustomField

Fields
Field NameDescription
datetime - DateTime
name - String!
number - Float
string - String
type - String!
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "xyz789",
  "number": 123.45,
  "string": "xyz789",
  "type": "abc123"
}

ToolItemCustomFieldCreateInput

Description

Represents a ToolItemCustomFieldCreateInput

Fields
Input FieldDescription
datetime - DateTime
name - String!
number - Float
string - String
type - String!
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "xyz789",
  "number": 987.65,
  "string": "abc123",
  "type": "abc123"
}

ToolItemCustomFieldUpdateInput

Description

Represents a ToolItemCustomFieldUpdateInput

Fields
Input FieldDescription
datetime - DateTime
name - String
number - Float
string - String
type - String
Example
{
  "datetime": "2007-12-03T10:15:30Z",
  "name": "xyz789",
  "number": 987.65,
  "string": "abc123",
  "type": "abc123"
}

ToolItemCustomFieldWhereInput

Description

Represents a Where input for: ToolItemCustomField

Fields
Input FieldDescription
datetime_eq - DateTimeField is equal to given value
datetime_exists - BooleanField is set and exists
datetime_gt - DateTimeField is greater than given value
datetime_gte - DateTimeField is greater or equal than given value
datetime_in - [DateTime]Given value includes field
datetime_lt - DateTimeField is lower than given value
datetime_lte - DateTimeField is lower or equal than given value
datetime_ne - DateTimeField is not equal to given value
datetime_nin - [DateTime]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
number_eq - FloatField is equal to given value
number_exists - BooleanField is set and exists
number_gt - FloatField is greater than given value
number_gte - FloatField is greater or equal than given value
number_in - [Float]Given value includes field
number_lt - FloatField is lower than given value
number_lte - FloatField is lower or equal than given value
number_ne - FloatField is not equal to given value
number_nin - [Float]Given value does not includes field
string_contains - StringField contains given value, case-insensitive
string_ends_with - StringField ends with given value, case-insensitive
string_eq - StringField is equal to given value
string_exists - BooleanField is set and exists
string_in - [String]Given value includes field
string_ne - StringField is not equal to given value
string_nin - [String]Given value does not includes field
string_not_contains - StringField does not contains given value, case-insensitive
string_not_ends_with - StringField does not end with given value, case-insensitive
string_not_starts_with - StringField does not start with given value, case-insensitive
string_starts_with - StringField starts with given value, case-insensitive
type_contains - StringField contains given value, case-insensitive
type_ends_with - StringField ends with given value, case-insensitive
type_eq - StringField is equal to given value
type_exists - BooleanField is set and exists
type_in - [String]Given value includes field
type_ne - StringField is not equal to given value
type_nin - [String]Given value does not includes field
type_not_contains - StringField does not contains given value, case-insensitive
type_not_ends_with - StringField does not end with given value, case-insensitive
type_not_starts_with - StringField does not start with given value, case-insensitive
type_starts_with - StringField starts with given value, case-insensitive
Example
{
  "datetime_eq": "2007-12-03T10:15:30Z",
  "datetime_exists": false,
  "datetime_gt": "2007-12-03T10:15:30Z",
  "datetime_gte": "2007-12-03T10:15:30Z",
  "datetime_in": ["2007-12-03T10:15:30Z"],
  "datetime_lt": "2007-12-03T10:15:30Z",
  "datetime_lte": "2007-12-03T10:15:30Z",
  "datetime_ne": "2007-12-03T10:15:30Z",
  "datetime_nin": ["2007-12-03T10:15:30Z"],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789",
  "number_eq": 123.45,
  "number_exists": false,
  "number_gt": 123.45,
  "number_gte": 123.45,
  "number_in": [123.45],
  "number_lt": 123.45,
  "number_lte": 123.45,
  "number_ne": 123.45,
  "number_nin": [987.65],
  "string_contains": "xyz789",
  "string_ends_with": "abc123",
  "string_eq": "xyz789",
  "string_exists": false,
  "string_in": ["xyz789"],
  "string_ne": "xyz789",
  "string_nin": ["xyz789"],
  "string_not_contains": "xyz789",
  "string_not_ends_with": "abc123",
  "string_not_starts_with": "abc123",
  "string_starts_with": "xyz789",
  "type_contains": "xyz789",
  "type_ends_with": "abc123",
  "type_eq": "xyz789",
  "type_exists": true,
  "type_in": ["xyz789"],
  "type_ne": "abc123",
  "type_nin": ["abc123"],
  "type_not_contains": "xyz789",
  "type_not_ends_with": "xyz789",
  "type_not_starts_with": "abc123",
  "type_starts_with": "abc123"
}

ToolItemOrderByEnum

Values
Enum ValueDescription

_id_ASC

_id_DESC

code_ASC

code_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

serialNumber_ASC

serialNumber_DESC

status_ASC

status_DESC

tool_designation_ASC

tool_designation_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ToolItemStatus

Values
Enum ValueDescription

IN_MAINTENANCE

NON_OPERATIONAL

OPERATIONAL

Example
"IN_MAINTENANCE"

ToolItemStorageDistinctLocationsResult

Fields
Field NameDescription
location - Location
toolItemCount - Int
Example
{"location": Location, "toolItemCount": 123}

ToolItemUpdateInput

Description

Represents a ToolItemUpdateInput

Fields
Input FieldDescription
code - String
customFields - [ToolItemCustomFieldUpdateInput]
description - String
hiddenFields - [String]
location - ID
serialNumber - String
status - ToolItemStatus
tool - ID
usedBy - ID
usedIn - ID
Example
{
  "code": "abc123",
  "customFields": [ToolItemCustomFieldUpdateInput],
  "description": "xyz789",
  "hiddenFields": ["xyz789"],
  "location": "4",
  "serialNumber": "abc123",
  "status": "IN_MAINTENANCE",
  "tool": "4",
  "usedBy": "4",
  "usedIn": 4
}

ToolItemWhereInput

Description

Represents a Where input for: ToolItem

Fields
Input FieldDescription
OR - [OrToolItemsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
code_contains - StringField contains given value, case-insensitive
code_ends_with - StringField ends with given value, case-insensitive
code_eq - StringField is equal to given value
code_exists - BooleanField is set and exists
code_in - [String]Given value includes field
code_ne - StringField is not equal to given value
code_nin - [String]Given value does not includes field
code_not_contains - StringField does not contains given value, case-insensitive
code_not_ends_with - StringField does not end with given value, case-insensitive
code_not_starts_with - StringField does not start with given value, case-insensitive
code_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
customFields_every - ToolItemCustomFieldWhereInput
customFields_exists - Boolean
customFields_none - ToolItemCustomFieldWhereInput
customFields_some - ToolItemCustomFieldWhereInput
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
hiddenFields_all - [String]Field includes all given values.
hiddenFields_eq - [String]Given value is equal to field
hiddenFields_exists - Boolean
hiddenFields_in - [String]Field includes one of given value.
hiddenFields_nin - [String]Field does not include any of the given values.
location - LocationWhereInput
location_all - [ID]Given value includes all in array
location_eq - IDField is equal to given value
location_exists - BooleanField is set and exists
location_in - [ID]Given value includes field
location_ne - IDField is not equal to given value
location_nin - [ID]Given value does not include field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
serialNumber_contains - StringField contains given value, case-insensitive
serialNumber_ends_with - StringField ends with given value, case-insensitive
serialNumber_eq - StringField is equal to given value
serialNumber_exists - BooleanField is set and exists
serialNumber_in - [String]Given value includes field
serialNumber_ne - StringField is not equal to given value
serialNumber_nin - [String]Given value does not includes field
serialNumber_not_contains - StringField does not contains given value, case-insensitive
serialNumber_not_ends_with - StringField does not end with given value, case-insensitive
serialNumber_not_starts_with - StringField does not start with given value, case-insensitive
serialNumber_starts_with - StringField starts with given value, case-insensitive
status_eq - ToolItemStatusField is equal to given value
status_exists - ToolItemStatusField is set and exists
status_in - [ToolItemStatus]Given value includes field
status_ne - ToolItemStatusField is not equal to given value
status_nin - [ToolItemStatus]Given value does not includes field
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
tool - ToolWhereInput
tool_all - [ID]Given value includes all in array
tool_eq - IDField is equal to given value
tool_exists - BooleanField is set and exists
tool_in - [ID]Given value includes field
tool_ne - IDField is not equal to given value
tool_nin - [ID]Given value does not include field
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
usedBy_all - [ID]Given value includes all in array
usedBy_eq - IDField is equal to given value
usedBy_exists - BooleanField is set and exists
usedBy_in - [ID]Given value includes field
usedBy_ne - IDField is not equal to given value
usedBy_nin - [ID]Given value does not include field
usedIn_all - [ID]Given value includes all in array
usedIn_eq - IDField is equal to given value
usedIn_exists - BooleanField is set and exists
usedIn_in - [ID]Given value includes field
usedIn_ne - IDField is not equal to given value
usedIn_nin - [ID]Given value does not include field
Example
{
  "OR": [OrToolItemsWhereInput],
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "code_contains": "abc123",
  "code_ends_with": "abc123",
  "code_eq": "xyz789",
  "code_exists": false,
  "code_in": ["abc123"],
  "code_ne": "xyz789",
  "code_nin": ["abc123"],
  "code_not_contains": "abc123",
  "code_not_ends_with": "xyz789",
  "code_not_starts_with": "abc123",
  "code_starts_with": "abc123",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": "4",
  "createdBy_exists": false,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "customFields_every": ToolItemCustomFieldWhereInput,
  "customFields_exists": true,
  "customFields_none": ToolItemCustomFieldWhereInput,
  "customFields_some": ToolItemCustomFieldWhereInput,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": false,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "abc123",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "abc123",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "xyz789",
  "description_starts_with": "xyz789",
  "hiddenFields_all": ["xyz789"],
  "hiddenFields_eq": ["xyz789"],
  "hiddenFields_exists": true,
  "hiddenFields_in": ["abc123"],
  "hiddenFields_nin": ["abc123"],
  "location": LocationWhereInput,
  "location_all": [4],
  "location_eq": 4,
  "location_exists": false,
  "location_in": [4],
  "location_ne": "4",
  "location_nin": [4],
  "protected_eq": true,
  "protected_ne": false,
  "serialNumber_contains": "xyz789",
  "serialNumber_ends_with": "xyz789",
  "serialNumber_eq": "abc123",
  "serialNumber_exists": true,
  "serialNumber_in": ["abc123"],
  "serialNumber_ne": "abc123",
  "serialNumber_nin": ["xyz789"],
  "serialNumber_not_contains": "xyz789",
  "serialNumber_not_ends_with": "abc123",
  "serialNumber_not_starts_with": "abc123",
  "serialNumber_starts_with": "abc123",
  "status_eq": "IN_MAINTENANCE",
  "status_exists": "IN_MAINTENANCE",
  "status_in": ["IN_MAINTENANCE"],
  "status_ne": "IN_MAINTENANCE",
  "status_nin": ["IN_MAINTENANCE"],
  "system_eq": true,
  "system_ne": true,
  "tool": ToolWhereInput,
  "tool_all": ["4"],
  "tool_eq": "4",
  "tool_exists": true,
  "tool_in": [4],
  "tool_ne": "4",
  "tool_nin": [4],
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": [4],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"],
  "usedBy_all": ["4"],
  "usedBy_eq": 4,
  "usedBy_exists": false,
  "usedBy_in": ["4"],
  "usedBy_ne": 4,
  "usedBy_nin": ["4"],
  "usedIn_all": ["4"],
  "usedIn_eq": 4,
  "usedIn_exists": true,
  "usedIn_in": [4],
  "usedIn_ne": "4",
  "usedIn_nin": [4]
}

ToolItemWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

ToolOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

designation_ASC

designation_DESC

dimension_height_ASC

dimension_height_DESC

dimension_length_ASC

dimension_length_DESC

dimension_unit_ASC

dimension_unit_DESC

dimension_width_ASC

dimension_width_DESC

labelValues_value_ASC

labelValues_value_DESC

partNumber_ASC

partNumber_DESC

totalStock_ASC

totalStock_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

ToolStockPerStorage

Fields
Field NameDescription
name - String
stock - Int
Example
{"name": "xyz789", "stock": 987}

ToolUpdateInput

Description

Represents a ToolUpdateInput

Fields
Input FieldDescription
description - StringTool description
designation - StringTool designation
dimension - ToolDimensionUpdateInput
images - [ID]
labelValues - [ID]
partNumber - StringPart-number
Example
{
  "description": "xyz789",
  "designation": "xyz789",
  "dimension": ToolDimensionUpdateInput,
  "images": ["4"],
  "labelValues": ["4"],
  "partNumber": "abc123"
}

ToolWhereInput

Description

Represents a Where input for: Tool

Fields
Input FieldDescription
OR - [OrToolsWhereInput]
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
designation_contains - StringField contains given value, case-insensitive
designation_ends_with - StringField ends with given value, case-insensitive
designation_eq - StringField is equal to given value
designation_exists - BooleanField is set and exists
designation_in - [String]Given value includes field
designation_ne - StringField is not equal to given value
designation_nin - [String]Given value does not includes field
designation_not_contains - StringField does not contains given value, case-insensitive
designation_not_ends_with - StringField does not end with given value, case-insensitive
designation_not_starts_with - StringField does not start with given value, case-insensitive
designation_starts_with - StringField starts with given value, case-insensitive
dimension - ToolDimensionWhereInput
images_all - [ID]Field includes all given values.
images_eq - [ID]Given value is equal to field
images_exists - Boolean
images_in - [ID]Field includes one of given value.
images_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
partNumber_contains - StringField contains given value, case-insensitive
partNumber_ends_with - StringField ends with given value, case-insensitive
partNumber_eq - StringField is equal to given value
partNumber_exists - BooleanField is set and exists
partNumber_in - [String]Given value includes field
partNumber_ne - StringField is not equal to given value
partNumber_nin - [String]Given value does not includes field
partNumber_not_contains - StringField does not contains given value, case-insensitive
partNumber_not_ends_with - StringField does not end with given value, case-insensitive
partNumber_not_starts_with - StringField does not start with given value, case-insensitive
partNumber_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "OR": [OrToolsWhereInput],
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": true,
  "description_contains": "abc123",
  "description_ends_with": "xyz789",
  "description_eq": "xyz789",
  "description_exists": true,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["abc123"],
  "description_not_contains": "abc123",
  "description_not_ends_with": "abc123",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "designation_contains": "abc123",
  "designation_ends_with": "xyz789",
  "designation_eq": "abc123",
  "designation_exists": false,
  "designation_in": ["xyz789"],
  "designation_ne": "abc123",
  "designation_nin": ["abc123"],
  "designation_not_contains": "abc123",
  "designation_not_ends_with": "abc123",
  "designation_not_starts_with": "xyz789",
  "designation_starts_with": "abc123",
  "dimension": ToolDimensionWhereInput,
  "images_all": ["4"],
  "images_eq": ["4"],
  "images_exists": false,
  "images_in": ["4"],
  "images_nin": [4],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "partNumber_contains": "abc123",
  "partNumber_ends_with": "xyz789",
  "partNumber_eq": "abc123",
  "partNumber_exists": false,
  "partNumber_in": ["abc123"],
  "partNumber_ne": "xyz789",
  "partNumber_nin": ["xyz789"],
  "partNumber_not_contains": "xyz789",
  "partNumber_not_ends_with": "xyz789",
  "partNumber_not_starts_with": "xyz789",
  "partNumber_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": true,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": ["4"],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

ToolWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

TriggeredBy

Fields
Field NameDescription
createdBy - [Account]
createdBySystem - Boolean
Example
{"createdBy": [Account], "createdBySystem": false}

TriggeredByDistinct

Fields
Field NameDescription
createdBy - [Account]
Example
{"createdBy": [Account]}

Unit

Description

Represents a Unit

Fields
Field NameDescription
_id - ID
archived - BooleanIf the document is archived
archivedAt - DateTimeArchived time
archivedBy - AccountArchived by user
archivedById - IDArchived by user
convert - [UnitConvert]
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
description - StringUnit Description
folder - UnitFolder!Unit Folder
folderId - ID!Unit Folder
labelValues - [LabelValue]
labelValuesIds - [ID]
name - String!Unit name
order - Int
protected - Boolean
symbol - StringSymbol for unit (ex. €)
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "archived": true,
  "archivedAt": "2007-12-03T10:15:30Z",
  "archivedBy": Account,
  "archivedById": "4",
  "convert": [UnitConvert],
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "description": "xyz789",
  "folder": UnitFolder,
  "folderId": 4,
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "name": "abc123",
  "order": 123,
  "protected": false,
  "symbol": "abc123",
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

UnitConvert

Description

Represents a UnitConvert

Fields
Field NameDescription
_id - ID
expression - String!
to - Unit!
toId - ID!
Example
{
  "_id": 4,
  "expression": "xyz789",
  "to": Unit,
  "toId": "4"
}

UnitConvertCreateInput

Description

Represents a UnitConvertCreateInput

Fields
Input FieldDescription
expression - String!
to - ID!
Example
{
  "expression": "xyz789",
  "to": "4"
}

UnitConvertUpdateInput

Description

Represents a UnitConvertUpdateInput

Fields
Input FieldDescription
expression - String
to - ID
Example
{
  "expression": "abc123",
  "to": "4"
}

UnitConvertWhereInput

Description

Represents a Where input for: UnitConvert

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
expression_contains - StringField contains given value, case-insensitive
expression_ends_with - StringField ends with given value, case-insensitive
expression_eq - StringField is equal to given value
expression_exists - BooleanField is set and exists
expression_in - [String]Given value includes field
expression_ne - StringField is not equal to given value
expression_nin - [String]Given value does not includes field
expression_not_contains - StringField does not contains given value, case-insensitive
expression_not_ends_with - StringField does not end with given value, case-insensitive
expression_not_starts_with - StringField does not start with given value, case-insensitive
expression_starts_with - StringField starts with given value, case-insensitive
to_all - [ID]Given value includes all in array
to_eq - IDField is equal to given value
to_exists - BooleanField is set and exists
to_in - [ID]Given value includes field
to_ne - IDField is not equal to given value
to_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "expression_contains": "abc123",
  "expression_ends_with": "xyz789",
  "expression_eq": "xyz789",
  "expression_exists": false,
  "expression_in": ["xyz789"],
  "expression_ne": "abc123",
  "expression_nin": ["abc123"],
  "expression_not_contains": "xyz789",
  "expression_not_ends_with": "abc123",
  "expression_not_starts_with": "abc123",
  "expression_starts_with": "abc123",
  "to_all": [4],
  "to_eq": 4,
  "to_exists": true,
  "to_in": [4],
  "to_ne": "4",
  "to_nin": [4]
}

UnitCreateInput

Description

Represents a UnitCreateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
convert - [UnitConvertCreateInput]
description - StringUnit Description
folder - ID!Unit Folder
labelValues - [ID]
name - String!Unit name
order - Int
symbol - StringSymbol for unit (ex. €)
Example
{
  "archived": false,
  "convert": [UnitConvertCreateInput],
  "description": "xyz789",
  "folder": 4,
  "labelValues": [4],
  "name": "xyz789",
  "order": 123,
  "symbol": "abc123"
}

UnitFolder

Description

Represents a UnitFolder

Fields
Field NameDescription
_id - ID
context - String
createdAt - DateTime
createdBy - Account
createdById - ID
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
name - String!
parent - UnitFolderUnitFolder Parent
parentId - IDUnitFolder Parent
parentsTree - [UnitFolder]
parentsTreeIds - [ID]
protected - Boolean
system - Boolean
unitFoldersCount - Int
unitsCount - Int
Arguments
tenant - ID
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": 4,
  "context": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": 4,
  "deleted": true,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": "4",
  "name": "abc123",
  "parent": UnitFolder,
  "parentId": "4",
  "parentsTree": [UnitFolder],
  "parentsTreeIds": ["4"],
  "protected": false,
  "system": false,
  "unitFoldersCount": 123,
  "unitsCount": 987,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": "4"
}

UnitFolderCreateInput

Description

Represents a UnitFolderCreateInput

Fields
Input FieldDescription
context - String
name - String!
parent - IDUnitFolder Parent
Example
{
  "context": "xyz789",
  "name": "xyz789",
  "parent": "4"
}

UnitFolderOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

context_ASC

context_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

name_ASC

name_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

UnitFolderUpdateInput

Description

Represents a UnitFolderUpdateInput

Fields
Input FieldDescription
context - String
name - String
parent - IDUnitFolder Parent
Example
{
  "context": "abc123",
  "name": "abc123",
  "parent": "4"
}

UnitFolderWhereInput

Description

Represents a Where input for: UnitFolder

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
context_contains - StringField contains given value, case-insensitive
context_ends_with - StringField ends with given value, case-insensitive
context_eq - StringField is equal to given value
context_exists - BooleanField is set and exists
context_in - [String]Given value includes field
context_ne - StringField is not equal to given value
context_nin - [String]Given value does not includes field
context_not_contains - StringField does not contains given value, case-insensitive
context_not_ends_with - StringField does not end with given value, case-insensitive
context_not_starts_with - StringField does not start with given value, case-insensitive
context_starts_with - StringField starts with given value, case-insensitive
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
parent_all - [ID]Given value includes all in array
parent_eq - IDField is equal to given value
parent_exists - BooleanField is set and exists
parent_in - [ID]Given value includes field
parent_ne - IDField is not equal to given value
parent_nin - [ID]Given value does not include field
parentsTree_all - [ID]Field includes all given values.
parentsTree_eq - [ID]Given value is equal to field
parentsTree_exists - Boolean
parentsTree_in - [ID]Field includes one of given value.
parentsTree_nin - [ID]Field does not include any of the given values.
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "context_contains": "xyz789",
  "context_ends_with": "xyz789",
  "context_eq": "abc123",
  "context_exists": true,
  "context_in": ["xyz789"],
  "context_ne": "xyz789",
  "context_nin": ["xyz789"],
  "context_not_contains": "abc123",
  "context_not_ends_with": "xyz789",
  "context_not_starts_with": "abc123",
  "context_starts_with": "xyz789",
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": [4],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": true,
  "deletedBy_in": [4],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": true,
  "deleted_ne": false,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "parent_all": ["4"],
  "parent_eq": 4,
  "parent_exists": false,
  "parent_in": ["4"],
  "parent_ne": "4",
  "parent_nin": ["4"],
  "parentsTree_all": [4],
  "parentsTree_eq": ["4"],
  "parentsTree_exists": false,
  "parentsTree_in": ["4"],
  "parentsTree_nin": [4],
  "protected_eq": true,
  "protected_ne": false,
  "system_eq": true,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": [4],
  "updatedBy_ne": "4",
  "updatedBy_nin": [4]
}

UnitFolderWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": "4"}

UnitOrFolder

Types
Union Types

Unit

UnitFolder

Example
Unit

UnitOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

archivedAt_ASC

archivedAt_DESC

createdAt_ASC

createdAt_DESC

deletedAt_ASC

deletedAt_DESC

description_ASC

description_DESC

name_ASC

name_DESC

order_ASC

order_DESC

symbol_ASC

symbol_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

UnitToUpdate

Fields
Input FieldDescription
_id - ID
name - String
order - Int
symbol - String
Example
{
  "_id": 4,
  "name": "abc123",
  "order": 123,
  "symbol": "xyz789"
}

UnitUpdateInput

Description

Represents a UnitUpdateInput

Fields
Input FieldDescription
archived - BooleanIf the document is archived
convert - [UnitConvertUpdateInput]
description - StringUnit Description
folder - IDUnit Folder
labelValues - [ID]
name - StringUnit name
order - Int
symbol - StringSymbol for unit (ex. €)
Example
{
  "archived": false,
  "convert": [UnitConvertUpdateInput],
  "description": "xyz789",
  "folder": "4",
  "labelValues": ["4"],
  "name": "abc123",
  "order": 987,
  "symbol": "xyz789"
}

UnitWhereInput

Description

Represents a Where input for: Unit

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
archivedAt_eq - DateTimeField is equal to given value
archivedAt_exists - BooleanField is set and exists
archivedAt_gt - DateTimeField is greater than given value
archivedAt_gte - DateTimeField is greater or equal than given value
archivedAt_in - [DateTime]Given value includes field
archivedAt_lt - DateTimeField is lower than given value
archivedAt_lte - DateTimeField is lower or equal than given value
archivedAt_ne - DateTimeField is not equal to given value
archivedAt_nin - [DateTime]Given value does not includes field
archivedBy_all - [ID]Given value includes all in array
archivedBy_eq - IDField is equal to given value
archivedBy_exists - BooleanField is set and exists
archivedBy_in - [ID]Given value includes field
archivedBy_ne - IDField is not equal to given value
archivedBy_nin - [ID]Given value does not include field
archived_eq - BooleanField is equal to given value
archived_ne - BooleanField is not equal to given value
convert_every - UnitConvertWhereInput
convert_exists - Boolean
convert_none - UnitConvertWhereInput
convert_some - UnitConvertWhereInput
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
description_contains - StringField contains given value, case-insensitive
description_ends_with - StringField ends with given value, case-insensitive
description_eq - StringField is equal to given value
description_exists - BooleanField is set and exists
description_in - [String]Given value includes field
description_ne - StringField is not equal to given value
description_nin - [String]Given value does not includes field
description_not_contains - StringField does not contains given value, case-insensitive
description_not_ends_with - StringField does not end with given value, case-insensitive
description_not_starts_with - StringField does not start with given value, case-insensitive
description_starts_with - StringField starts with given value, case-insensitive
folder - UnitFolderWhereInput
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
order_eq - IntField is equal to given value
order_exists - BooleanField is set and exists
order_gt - IntField is greater than given value
order_gte - IntField is greater or equal than given value
order_in - [Int]Given value includes field
order_lt - IntField is lower than given value
order_lte - IntField is lower or equal than given value
order_ne - IntField is not equal to given value
order_nin - [Int]Given value does not includes field
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
symbol_contains - StringField contains given value, case-insensitive
symbol_ends_with - StringField ends with given value, case-insensitive
symbol_eq - StringField is equal to given value
symbol_exists - BooleanField is set and exists
symbol_in - [String]Given value includes field
symbol_ne - StringField is not equal to given value
symbol_nin - [String]Given value does not includes field
symbol_not_contains - StringField does not contains given value, case-insensitive
symbol_not_ends_with - StringField does not end with given value, case-insensitive
symbol_not_starts_with - StringField does not start with given value, case-insensitive
symbol_starts_with - StringField starts with given value, case-insensitive
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "archivedAt_eq": "2007-12-03T10:15:30Z",
  "archivedAt_exists": true,
  "archivedAt_gt": "2007-12-03T10:15:30Z",
  "archivedAt_gte": "2007-12-03T10:15:30Z",
  "archivedAt_in": ["2007-12-03T10:15:30Z"],
  "archivedAt_lt": "2007-12-03T10:15:30Z",
  "archivedAt_lte": "2007-12-03T10:15:30Z",
  "archivedAt_ne": "2007-12-03T10:15:30Z",
  "archivedAt_nin": [
    "2007-12-03T10:15:30Z"
  ],
  "archivedBy_all": [4],
  "archivedBy_eq": "4",
  "archivedBy_exists": false,
  "archivedBy_in": [4],
  "archivedBy_ne": "4",
  "archivedBy_nin": ["4"],
  "archived_eq": false,
  "archived_ne": true,
  "convert_every": UnitConvertWhereInput,
  "convert_exists": false,
  "convert_none": UnitConvertWhereInput,
  "convert_some": UnitConvertWhereInput,
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": false,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": 4,
  "createdBy_exists": true,
  "createdBy_in": ["4"],
  "createdBy_ne": "4",
  "createdBy_nin": ["4"],
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": true,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": ["4"],
  "deletedBy_eq": "4",
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": 4,
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "description_contains": "xyz789",
  "description_ends_with": "abc123",
  "description_eq": "xyz789",
  "description_exists": false,
  "description_in": ["xyz789"],
  "description_ne": "xyz789",
  "description_nin": ["xyz789"],
  "description_not_contains": "xyz789",
  "description_not_ends_with": "xyz789",
  "description_not_starts_with": "abc123",
  "description_starts_with": "xyz789",
  "folder": UnitFolderWhereInput,
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": ["4"],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123",
  "order_eq": 123,
  "order_exists": false,
  "order_gt": 987,
  "order_gte": 987,
  "order_in": [987],
  "order_lt": 123,
  "order_lte": 987,
  "order_ne": 987,
  "order_nin": [123],
  "protected_eq": false,
  "protected_ne": true,
  "symbol_contains": "xyz789",
  "symbol_ends_with": "xyz789",
  "symbol_eq": "abc123",
  "symbol_exists": false,
  "symbol_in": ["abc123"],
  "symbol_ne": "xyz789",
  "symbol_nin": ["abc123"],
  "symbol_not_contains": "xyz789",
  "symbol_not_ends_with": "xyz789",
  "symbol_not_starts_with": "xyz789",
  "symbol_starts_with": "xyz789",
  "system_eq": false,
  "system_ne": true,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": true,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": 4,
  "updatedBy_exists": true,
  "updatedBy_in": ["4"],
  "updatedBy_ne": "4",
  "updatedBy_nin": ["4"]
}

UnitWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

UpdateMultipleWidgetInput

Fields
Input FieldDescription
layout - WidgetLayoutUpdateInput!
where - WidgetWhereUniqueInput!
Example
{
  "layout": WidgetLayoutUpdateInput,
  "where": WidgetWhereUniqueInput
}

Upload

Description

The Upload scalar type represents a file upload.

Example
Upload

UploadFile

Fields
Input FieldDescription
file - Upload!
name - String!
size - Int!
Example
{
  "file": Upload,
  "name": "abc123",
  "size": 987
}

UploadFileInfo

Fields
Field NameDescription
_id - ID
formData - Any
url - String
validUntil - Int
Example
{
  "_id": "4",
  "formData": Any,
  "url": "xyz789",
  "validUntil": 123
}

Widget

Description

Represents a Widget

Fields
Field NameDescription
_id - ID
chart - WidgetDatasetChart
createdAt - DateTime
createdBy - Account
createdById - ID
dashboard - ID
data - JSON
Arguments
forceReload - Boolean
dataset - WidgetDataset
deleted - BooleanIf the document is deleted
deletedAt - DateTimeDeleted time
deletedBy - AccountDeleted by user
deletedById - IDDeleted by user
draft - ID
layout - WidgetLayout
name - String!
palette - [String]
preset - String
protected - Boolean
showLegend - Boolean
system - Boolean
updatedAt - DateTime
updatedBy - Account
updatedById - ID
Example
{
  "_id": "4",
  "chart": "bar",
  "createdAt": "2007-12-03T10:15:30Z",
  "createdBy": Account,
  "createdById": "4",
  "dashboard": 4,
  "data": {},
  "dataset": WidgetDataset,
  "deleted": false,
  "deletedAt": "2007-12-03T10:15:30Z",
  "deletedBy": Account,
  "deletedById": 4,
  "draft": 4,
  "layout": WidgetLayout,
  "name": "abc123",
  "palette": ["xyz789"],
  "preset": "xyz789",
  "protected": false,
  "showLegend": true,
  "system": true,
  "updatedAt": "2007-12-03T10:15:30Z",
  "updatedBy": Account,
  "updatedById": 4
}

WidgetCreateInput

Description

Represents a WidgetCreateInput

Fields
Input FieldDescription
dashboard - ID
dataset - WidgetDatasetCreateInput!
draft - ID
layout - WidgetLayoutCreateInput!
name - String!
palette - [String]
preset - String
showLegend - Boolean
Example
{
  "dashboard": "4",
  "dataset": WidgetDatasetCreateInput,
  "draft": 4,
  "layout": WidgetLayoutCreateInput,
  "name": "xyz789",
  "palette": ["abc123"],
  "preset": "abc123",
  "showLegend": false
}

WidgetDataset

Description

Represents a WidgetDataset

Fields
Field NameDescription
_id - ID
actionsCount - WidgetDatasetActionsCount
actionsDuration - WidgetDatasetActionsDuration
issuesAverage - WidgetDatasetIssuesAverage
issuesCount - WidgetDatasetIssuesCount
issuesDuration - WidgetDatasetIssuesDuration
issuesPlanned - WidgetDatasetIssuesPlanned
realtime - WidgetDatasetRealtime
responsesAverageValue - WidgetDatasetResponsesAverageValue
responsesByRating - WidgetDatasetResponsesByRating
responsesHighestValue - WidgetDatasetResponsesHighestValue
responsesLastValue - WidgetDatasetResponsesLastValue
responsesLowestValue - WidgetDatasetResponsesLowestValue
responsesSum - WidgetDatasetResponsesSum
responsesTotal - WidgetDatasetResponsesTotal
responsesTotalValues - WidgetDatasetResponsesTotalValue
type - WidgetDatasetType!
Example
{
  "_id": "4",
  "actionsCount": WidgetDatasetActionsCount,
  "actionsDuration": WidgetDatasetActionsDuration,
  "issuesAverage": WidgetDatasetIssuesAverage,
  "issuesCount": WidgetDatasetIssuesCount,
  "issuesDuration": WidgetDatasetIssuesDuration,
  "issuesPlanned": WidgetDatasetIssuesPlanned,
  "realtime": WidgetDatasetRealtime,
  "responsesAverageValue": WidgetDatasetResponsesAverageValue,
  "responsesByRating": WidgetDatasetResponsesByRating,
  "responsesHighestValue": WidgetDatasetResponsesHighestValue,
  "responsesLastValue": WidgetDatasetResponsesLastValue,
  "responsesLowestValue": WidgetDatasetResponsesLowestValue,
  "responsesSum": WidgetDatasetResponsesSum,
  "responsesTotal": WidgetDatasetResponsesTotal,
  "responsesTotalValues": WidgetDatasetResponsesTotalValue,
  "type": "actionsCount"
}

WidgetDatasetActionsCount

Description

Represents a WidgetDatasetActionsCount

Example
{
  "_id": 4,
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsCountCustomFilter
  ],
  "filter": WidgetDatasetActionsCountFilter,
  "groupBy": "day",
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetActionsCountRange],
  "showAsPercentage": true
}

WidgetDatasetActionsCountBy

Values
Enum ValueDescription

assignedLabelValues

assignee

element

labelValues

status

Example
"assignedLabelValues"

WidgetDatasetActionsCountChart

Values
Enum ValueDescription

bar

barHorizontal

barStack

barStackHorizontal

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetActionsCountCreateInput

Description

Represents a WidgetDatasetActionsCountCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsCountCustomFilterCreateInput
  ],
  "filter": WidgetDatasetActionsCountFilterCreateInput,
  "groupBy": "day",
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetActionsCountRangeCreateInput],
  "showAsPercentage": true
}

WidgetDatasetActionsCountCustomFilter

Description

Represents a WidgetDatasetActionsCountCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsCountCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsCountCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetActionsCountCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetActionsCountCustomFilterCreateInput

Description

Represents a WidgetDatasetActionsCountCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsCountCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsCountCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetActionsCountCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsCountCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsCountCustomFilterDateValueCustom

Description

Represents a WidgetDatasetActionsCountCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetActionsCountCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetActionsCountCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetActionsCountCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsCountCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetActionsCountCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetActionsCountCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsCountCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetActionsCountCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetActionsCountCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetActionsCountCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetActionsCountCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetActionsCountCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetActionsCountCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetActionsCountCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetActionsCountCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetActionsCountCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetActionsCountCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetActionsCountCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetActionsCountCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetActionsCountCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetActionsCountCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetActionsCountCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetActionsCountCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetActionsCountCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetActionsCountCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetActionsCountCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetActionsCountCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetActionsCountCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetActionsCountCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetActionsCountCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetActionsCountCustomFilterUpdateInput

Description

Represents a WidgetDatasetActionsCountCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsCountCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsCountCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetActionsCountCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetActionsCountCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetActionsCountCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetActionsCountCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetActionsCountCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetActionsCountCustomFilterContextField is equal to given value
context_exists - WidgetDatasetActionsCountCustomFilterContextField is set and exists
context_in - [WidgetDatasetActionsCountCustomFilterContext]Given value includes field
context_ne - WidgetDatasetActionsCountCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetActionsCountCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetActionsCountCustomFilterDateValueWhereInput
type_eq - WidgetDatasetActionsCountCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetActionsCountCustomFilterTypeField is set and exists
type_in - [WidgetDatasetActionsCountCustomFilterType]Given value includes field
type_ne - WidgetDatasetActionsCountCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetActionsCountCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetActionsCountCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetActionsCountFilter

Description

Represents a WidgetDatasetActionsCountFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
date - WidgetDatasetActionsCountFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
statuses - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "date": WidgetDatasetActionsCountFilterDate,
  "elements": [Element],
  "elementsIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "sites": [Site],
  "sitesIds": ["4"],
  "statuses": ["xyz789"]
}

WidgetDatasetActionsCountFilterCreateInput

Description

Represents a WidgetDatasetActionsCountFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
date - WidgetDatasetActionsCountFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
statuses - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "date": WidgetDatasetActionsCountFilterDateCreateInput,
  "elements": [4],
  "labelValues": [4],
  "sites": [4],
  "statuses": ["abc123"]
}

WidgetDatasetActionsCountFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetActionsCountFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsCountFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsCountFilterDateCustom

Description

Represents a WidgetDatasetActionsCountFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountFilterDateCustomCreateInput

Description

Represents a WidgetDatasetActionsCountFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetActionsCountFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsCountFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetActionsCountFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsCountFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetActionsCountFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetActionsCountFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsCountFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsCountFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetActionsCountFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetActionsCountFilterDateCurrentField is set and exists
current_in - [WidgetDatasetActionsCountFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetActionsCountFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetActionsCountFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetActionsCountFilterDateCustomWhereInput
last_eq - WidgetDatasetActionsCountFilterDateLastField is equal to given value
last_exists - WidgetDatasetActionsCountFilterDateLastField is set and exists
last_in - [WidgetDatasetActionsCountFilterDateLast]Given value includes field
last_ne - WidgetDatasetActionsCountFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetActionsCountFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetActionsCountFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetActionsCountFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetActionsCountFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetActionsCountFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetActionsCountFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetActionsCountFilterDateTypeField is equal to given value
type_exists - WidgetDatasetActionsCountFilterDateTypeField is set and exists
type_in - [WidgetDatasetActionsCountFilterDateType]Given value includes field
type_ne - WidgetDatasetActionsCountFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetActionsCountFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetActionsCountFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetActionsCountFilterUpdateInput

Description

Represents a WidgetDatasetActionsCountFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
date - WidgetDatasetActionsCountFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
statuses - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "date": WidgetDatasetActionsCountFilterDateUpdateInput,
  "elements": ["4"],
  "labelValues": [4],
  "sites": [4],
  "statuses": ["abc123"]
}

WidgetDatasetActionsCountFilterWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetActionsCountFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
statuses_all - [String]Field includes all given values.
statuses_eq - [String]Given value is equal to field
statuses_exists - Boolean
statuses_in - [String]Field includes one of given value.
statuses_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": [4],
  "date": WidgetDatasetActionsCountFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": false,
  "elements_in": ["4"],
  "elements_nin": ["4"],
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": false,
  "sites_in": [4],
  "sites_nin": ["4"],
  "statuses_all": ["xyz789"],
  "statuses_eq": ["abc123"],
  "statuses_exists": true,
  "statuses_in": ["abc123"],
  "statuses_nin": ["abc123"]
}

WidgetDatasetActionsCountGroupBy

Values
Enum ValueDescription

day

month

none

week

weekday

year

Example
"day"

WidgetDatasetActionsCountRange

Description

Represents a WidgetDatasetActionsCountRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetActionsCountRangeCreateInput

Description

Represents a WidgetDatasetActionsCountRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetActionsCountRangeUpdateInput

Description

Represents a WidgetDatasetActionsCountRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetActionsCountRangeWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCountRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "xyz789",
  "color_exists": false,
  "color_in": ["xyz789"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 987,
  "max_ne": 987,
  "max_nin": [987],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetActionsCountUpdateInput

Description

Represents a WidgetDatasetActionsCountUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsCountCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetActionsCountFilterUpdateInput,
  "groupBy": "day",
  "max": 123.45,
  "min": 987.65,
  "ranges": [WidgetDatasetActionsCountRangeUpdateInput],
  "showAsPercentage": false
}

WidgetDatasetActionsCountWhereInput

Description

Represents a Where input for: WidgetDatasetActionsCount

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetActionsCountByField is equal to given value
by_exists - WidgetDatasetActionsCountByField is set and exists
by_in - [WidgetDatasetActionsCountBy]Given value includes field
by_ne - WidgetDatasetActionsCountByField is not equal to given value
by_nin - [WidgetDatasetActionsCountBy]Given value does not includes field
chart_eq - WidgetDatasetActionsCountChartField is equal to given value
chart_exists - WidgetDatasetActionsCountChartField is set and exists
chart_in - [WidgetDatasetActionsCountChart]Given value includes field
chart_ne - WidgetDatasetActionsCountChartField is not equal to given value
chart_nin - [WidgetDatasetActionsCountChart]Given value does not includes field
customFilters_every - WidgetDatasetActionsCountCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetActionsCountCustomFilterWhereInput
customFilters_some - WidgetDatasetActionsCountCustomFilterWhereInput
filter - WidgetDatasetActionsCountFilterWhereInput
groupBy_eq - WidgetDatasetActionsCountGroupByField is equal to given value
groupBy_exists - WidgetDatasetActionsCountGroupByField is set and exists
groupBy_in - [WidgetDatasetActionsCountGroupBy]Given value includes field
groupBy_ne - WidgetDatasetActionsCountGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetActionsCountGroupBy]Given value does not includes field
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetActionsCountRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetActionsCountRangeWhereInput
ranges_some - WidgetDatasetActionsCountRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetActionsCountCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetActionsCountCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetActionsCountCustomFilterWhereInput,
  "filter": WidgetDatasetActionsCountFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 987.65,
  "max_lte": 123.45,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "min_eq": 123.45,
  "min_exists": false,
  "min_gt": 987.65,
  "min_gte": 123.45,
  "min_in": [987.65],
  "min_lt": 123.45,
  "min_lte": 123.45,
  "min_ne": 123.45,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetActionsCountRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetActionsCountRangeWhereInput,
  "ranges_some": WidgetDatasetActionsCountRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true
}

WidgetDatasetActionsDuration

Description

Represents a WidgetDatasetActionsDuration

Example
{
  "_id": "4",
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsDurationCustomFilter
  ],
  "filter": WidgetDatasetActionsDurationFilter,
  "groupBy": "day",
  "max": 987.65,
  "min": 123.45,
  "ranges": [WidgetDatasetActionsDurationRange],
  "showAsPercentage": true
}

WidgetDatasetActionsDurationBy

Values
Enum ValueDescription

assignedLabelValues

assignee

element

labelValues

status

Example
"assignedLabelValues"

WidgetDatasetActionsDurationChart

Values
Enum ValueDescription

bar

barHorizontal

barStack

barStackHorizontal

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetActionsDurationCreateInput

Description

Represents a WidgetDatasetActionsDurationCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsDurationCustomFilterCreateInput
  ],
  "filter": WidgetDatasetActionsDurationFilterCreateInput,
  "groupBy": "day",
  "max": 987.65,
  "min": 123.45,
  "ranges": [
    WidgetDatasetActionsDurationRangeCreateInput
  ],
  "showAsPercentage": true
}

WidgetDatasetActionsDurationCustomFilter

Description

Represents a WidgetDatasetActionsDurationCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsDurationCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsDurationCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetActionsDurationCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetActionsDurationCustomFilterCreateInput

Description

Represents a WidgetDatasetActionsDurationCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsDurationCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsDurationCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetActionsDurationCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsDurationCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsDurationCustomFilterDateValueCustom

Description

Represents a WidgetDatasetActionsDurationCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetActionsDurationCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetActionsDurationCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetActionsDurationCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsDurationCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetActionsDurationCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetActionsDurationCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsDurationCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetActionsDurationCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetActionsDurationCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetActionsDurationCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetActionsDurationCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetActionsDurationCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetActionsDurationCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetActionsDurationCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetActionsDurationCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetActionsDurationCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetActionsDurationCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetActionsDurationCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetActionsDurationCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetActionsDurationCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetActionsDurationCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetActionsDurationCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetActionsDurationCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetActionsDurationCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetActionsDurationCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetActionsDurationCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetActionsDurationCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetActionsDurationCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetActionsDurationCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetActionsDurationCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetActionsDurationCustomFilterUpdateInput

Description

Represents a WidgetDatasetActionsDurationCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetActionsDurationCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetActionsDurationCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetActionsDurationCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetActionsDurationCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetActionsDurationCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetActionsDurationCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetActionsDurationCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetActionsDurationCustomFilterContextField is equal to given value
context_exists - WidgetDatasetActionsDurationCustomFilterContextField is set and exists
context_in - [WidgetDatasetActionsDurationCustomFilterContext]Given value includes field
context_ne - WidgetDatasetActionsDurationCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetActionsDurationCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetActionsDurationCustomFilterDateValueWhereInput
type_eq - WidgetDatasetActionsDurationCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetActionsDurationCustomFilterTypeField is set and exists
type_in - [WidgetDatasetActionsDurationCustomFilterType]Given value includes field
type_ne - WidgetDatasetActionsDurationCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetActionsDurationCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetActionsDurationCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetActionsDurationFilter

Description

Represents a WidgetDatasetActionsDurationFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
date - WidgetDatasetActionsDurationFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
statuses - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": [4],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "date": WidgetDatasetActionsDurationFilterDate,
  "elements": [Element],
  "elementsIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "sites": [Site],
  "sitesIds": [4],
  "statuses": ["xyz789"]
}

WidgetDatasetActionsDurationFilterCreateInput

Description

Represents a WidgetDatasetActionsDurationFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
date - WidgetDatasetActionsDurationFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
statuses - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "date": WidgetDatasetActionsDurationFilterDateCreateInput,
  "elements": ["4"],
  "labelValues": [4],
  "sites": [4],
  "statuses": ["xyz789"]
}

WidgetDatasetActionsDurationFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetActionsDurationFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsDurationFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsDurationFilterDateCustom

Description

Represents a WidgetDatasetActionsDurationFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationFilterDateCustomCreateInput

Description

Represents a WidgetDatasetActionsDurationFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetActionsDurationFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetActionsDurationFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetActionsDurationFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetActionsDurationFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetActionsDurationFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetActionsDurationFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetActionsDurationFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetActionsDurationFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetActionsDurationFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetActionsDurationFilterDateCurrentField is set and exists
current_in - [WidgetDatasetActionsDurationFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetActionsDurationFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetActionsDurationFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetActionsDurationFilterDateCustomWhereInput
last_eq - WidgetDatasetActionsDurationFilterDateLastField is equal to given value
last_exists - WidgetDatasetActionsDurationFilterDateLastField is set and exists
last_in - [WidgetDatasetActionsDurationFilterDateLast]Given value includes field
last_ne - WidgetDatasetActionsDurationFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetActionsDurationFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetActionsDurationFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetActionsDurationFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetActionsDurationFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetActionsDurationFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetActionsDurationFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetActionsDurationFilterDateTypeField is equal to given value
type_exists - WidgetDatasetActionsDurationFilterDateTypeField is set and exists
type_in - [WidgetDatasetActionsDurationFilterDateType]Given value includes field
type_ne - WidgetDatasetActionsDurationFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetActionsDurationFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetActionsDurationFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetActionsDurationFilterUpdateInput

Description

Represents a WidgetDatasetActionsDurationFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
date - WidgetDatasetActionsDurationFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
statuses - [String]
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "date": WidgetDatasetActionsDurationFilterDateUpdateInput,
  "elements": [4],
  "labelValues": ["4"],
  "sites": ["4"],
  "statuses": ["abc123"]
}

WidgetDatasetActionsDurationFilterWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetActionsDurationFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
statuses_all - [String]Field includes all given values.
statuses_eq - [String]Given value is equal to field
statuses_exists - Boolean
statuses_in - [String]Field includes one of given value.
statuses_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "date": WidgetDatasetActionsDurationFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": false,
  "elements_in": ["4"],
  "elements_nin": ["4"],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": ["4"],
  "sites_nin": [4],
  "statuses_all": ["xyz789"],
  "statuses_eq": ["abc123"],
  "statuses_exists": true,
  "statuses_in": ["xyz789"],
  "statuses_nin": ["abc123"]
}

WidgetDatasetActionsDurationGroupBy

Values
Enum ValueDescription

day

month

none

week

weekday

year

Example
"day"

WidgetDatasetActionsDurationRange

Description

Represents a WidgetDatasetActionsDurationRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetActionsDurationRangeCreateInput

Description

Represents a WidgetDatasetActionsDurationRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetActionsDurationRangeUpdateInput

Description

Represents a WidgetDatasetActionsDurationRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetActionsDurationRangeWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDurationRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "max_eq": 987,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 987,
  "max_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123"
}

WidgetDatasetActionsDurationUpdateInput

Description

Represents a WidgetDatasetActionsDurationUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetActionsDurationCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetActionsDurationFilterUpdateInput,
  "groupBy": "day",
  "max": 123.45,
  "min": 123.45,
  "ranges": [
    WidgetDatasetActionsDurationRangeUpdateInput
  ],
  "showAsPercentage": true
}

WidgetDatasetActionsDurationWhereInput

Description

Represents a Where input for: WidgetDatasetActionsDuration

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetActionsDurationByField is equal to given value
by_exists - WidgetDatasetActionsDurationByField is set and exists
by_in - [WidgetDatasetActionsDurationBy]Given value includes field
by_ne - WidgetDatasetActionsDurationByField is not equal to given value
by_nin - [WidgetDatasetActionsDurationBy]Given value does not includes field
chart_eq - WidgetDatasetActionsDurationChartField is equal to given value
chart_exists - WidgetDatasetActionsDurationChartField is set and exists
chart_in - [WidgetDatasetActionsDurationChart]Given value includes field
chart_ne - WidgetDatasetActionsDurationChartField is not equal to given value
chart_nin - [WidgetDatasetActionsDurationChart]Given value does not includes field
customFilters_every - WidgetDatasetActionsDurationCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetActionsDurationCustomFilterWhereInput
customFilters_some - WidgetDatasetActionsDurationCustomFilterWhereInput
filter - WidgetDatasetActionsDurationFilterWhereInput
groupBy_eq - WidgetDatasetActionsDurationGroupByField is equal to given value
groupBy_exists - WidgetDatasetActionsDurationGroupByField is set and exists
groupBy_in - [WidgetDatasetActionsDurationGroupBy]Given value includes field
groupBy_ne - WidgetDatasetActionsDurationGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetActionsDurationGroupBy]Given value does not includes field
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetActionsDurationRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetActionsDurationRangeWhereInput
ranges_some - WidgetDatasetActionsDurationRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetActionsDurationCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetActionsDurationCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetActionsDurationCustomFilterWhereInput,
  "filter": WidgetDatasetActionsDurationFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [123.45],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 987.65,
  "max_nin": [987.65],
  "min_eq": 123.45,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 123.45,
  "min_in": [123.45],
  "min_lt": 987.65,
  "min_lte": 987.65,
  "min_ne": 987.65,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetActionsDurationRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetActionsDurationRangeWhereInput,
  "ranges_some": WidgetDatasetActionsDurationRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true
}

WidgetDatasetChart

Values
Enum ValueDescription

bar

barHorizontal

barStack

barStackHorizontal

gauge

heatmap

line

pie

scatter

table

value

Example
"bar"

WidgetDatasetCreateInput

Example
{
  "actionsCount": WidgetDatasetActionsCountCreateInput,
  "actionsDuration": WidgetDatasetActionsDurationCreateInput,
  "issuesAverage": WidgetDatasetIssuesAverageCreateInput,
  "issuesCount": WidgetDatasetIssuesCountCreateInput,
  "issuesDuration": WidgetDatasetIssuesDurationCreateInput,
  "issuesPlanned": WidgetDatasetIssuesPlannedCreateInput,
  "realtime": WidgetDatasetRealtimeCreateInput,
  "responsesAverageValue": WidgetDatasetResponsesAverageValueCreateInput,
  "responsesByRating": WidgetDatasetResponsesByRatingCreateInput,
  "responsesHighestValue": WidgetDatasetResponsesHighestValueCreateInput,
  "responsesLastValue": WidgetDatasetResponsesLastValueCreateInput,
  "responsesLowestValue": WidgetDatasetResponsesLowestValueCreateInput,
  "responsesSum": WidgetDatasetResponsesSumCreateInput,
  "responsesTotal": WidgetDatasetResponsesTotalCreateInput,
  "responsesTotalValues": WidgetDatasetResponsesTotalValueCreateInput,
  "type": "actionsCount"
}

WidgetDatasetIssuesAverage

Description

Represents a WidgetDatasetIssuesAverage

Example
{
  "_id": "4",
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesAverageCustomFilter
  ],
  "filter": WidgetDatasetIssuesAverageFilter,
  "groupBy": "day",
  "includeArchives": false,
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesAverageRange],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesAverageBy

Values
Enum ValueDescription

assignedLabelValues

assignee

catalog

element

labelValues

state

time

Example
"assignedLabelValues"

WidgetDatasetIssuesAverageChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetIssuesAverageCreateInput

Description

Represents a WidgetDatasetIssuesAverageCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesAverageCustomFilterCreateInput
  ],
  "filter": WidgetDatasetIssuesAverageFilterCreateInput,
  "groupBy": "day",
  "includeArchives": false,
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesAverageRangeCreateInput],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesAverageCustomFilter

Description

Represents a WidgetDatasetIssuesAverageCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesAverageCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesAverageCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetIssuesAverageCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetIssuesAverageCustomFilterCreateInput

Description

Represents a WidgetDatasetIssuesAverageCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesAverageCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesAverageCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetIssuesAverageCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesAverageCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesAverageCustomFilterDateValueCustom

Description

Represents a WidgetDatasetIssuesAverageCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetIssuesAverageCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetIssuesAverageCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesAverageCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesAverageCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesAverageCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesAverageCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesAverageCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesAverageCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetIssuesAverageCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetIssuesAverageCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetIssuesAverageCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesAverageCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetIssuesAverageCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetIssuesAverageCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetIssuesAverageCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetIssuesAverageCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetIssuesAverageCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetIssuesAverageCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesAverageCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesAverageCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetIssuesAverageCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesAverageCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesAverageCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesAverageCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetIssuesAverageCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetIssuesAverageCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetIssuesAverageCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesAverageCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesAverageCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesAverageCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetIssuesAverageCustomFilterUpdateInput

Description

Represents a WidgetDatasetIssuesAverageCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesAverageCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesAverageCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetIssuesAverageCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetIssuesAverageCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetIssuesAverageCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetIssuesAverageCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetIssuesAverageCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetIssuesAverageCustomFilterContextField is equal to given value
context_exists - WidgetDatasetIssuesAverageCustomFilterContextField is set and exists
context_in - [WidgetDatasetIssuesAverageCustomFilterContext]Given value includes field
context_ne - WidgetDatasetIssuesAverageCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetIssuesAverageCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetIssuesAverageCustomFilterDateValueWhereInput
type_eq - WidgetDatasetIssuesAverageCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetIssuesAverageCustomFilterTypeField is set and exists
type_in - [WidgetDatasetIssuesAverageCustomFilterType]Given value includes field
type_ne - WidgetDatasetIssuesAverageCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesAverageCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetIssuesAverageCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetIssuesAverageFilter

Description

Represents a WidgetDatasetIssuesAverageFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalogs - [IssueCatalog]
catalogsIds - [ID]
date - WidgetDatasetIssuesAverageFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
states - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "catalogs": [IssueCatalog],
  "catalogsIds": [4],
  "date": WidgetDatasetIssuesAverageFilterDate,
  "elements": [Element],
  "elementsIds": [4],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "sites": [Site],
  "sitesIds": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesAverageFilterCreateInput

Description

Represents a WidgetDatasetIssuesAverageFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesAverageFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "catalogs": ["4"],
  "date": WidgetDatasetIssuesAverageFilterDateCreateInput,
  "elements": [4],
  "labelValues": [4],
  "sites": ["4"],
  "states": ["xyz789"]
}

WidgetDatasetIssuesAverageFilterDate

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetIssuesAverageFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesAverageFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesAverageFilterDateCustom

Description

Represents a WidgetDatasetIssuesAverageFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageFilterDateCustomCreateInput

Description

Represents a WidgetDatasetIssuesAverageFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetIssuesAverageFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesAverageFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesAverageFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesAverageFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesAverageFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesAverageFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesAverageFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesAverageFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesAverageFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetIssuesAverageFilterDateCurrentField is set and exists
current_in - [WidgetDatasetIssuesAverageFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetIssuesAverageFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesAverageFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetIssuesAverageFilterDateCustomWhereInput
last_eq - WidgetDatasetIssuesAverageFilterDateLastField is equal to given value
last_exists - WidgetDatasetIssuesAverageFilterDateLastField is set and exists
last_in - [WidgetDatasetIssuesAverageFilterDateLast]Given value includes field
last_ne - WidgetDatasetIssuesAverageFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetIssuesAverageFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesAverageFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesAverageFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetIssuesAverageFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesAverageFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesAverageFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesAverageFilterDateTypeField is equal to given value
type_exists - WidgetDatasetIssuesAverageFilterDateTypeField is set and exists
type_in - [WidgetDatasetIssuesAverageFilterDateType]Given value includes field
type_ne - WidgetDatasetIssuesAverageFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesAverageFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesAverageFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesAverageFilterUpdateInput

Description

Represents a WidgetDatasetIssuesAverageFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesAverageFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "catalogs": [4],
  "date": WidgetDatasetIssuesAverageFilterDateUpdateInput,
  "elements": ["4"],
  "labelValues": [4],
  "sites": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesAverageFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalogs_all - [ID]Field includes all given values.
catalogs_eq - [ID]Given value is equal to field
catalogs_exists - Boolean
catalogs_in - [ID]Field includes one of given value.
catalogs_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetIssuesAverageFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
states_all - [String]Field includes all given values.
states_eq - [String]Given value is equal to field
states_exists - Boolean
states_in - [String]Field includes one of given value.
states_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": [4],
  "assignedAccounts_exists": false,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": ["4"],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "catalogs_all": ["4"],
  "catalogs_eq": ["4"],
  "catalogs_exists": false,
  "catalogs_in": [4],
  "catalogs_nin": ["4"],
  "date": WidgetDatasetIssuesAverageFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": true,
  "elements_in": [4],
  "elements_nin": [4],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "sites_all": ["4"],
  "sites_eq": ["4"],
  "sites_exists": true,
  "sites_in": [4],
  "sites_nin": [4],
  "states_all": ["xyz789"],
  "states_eq": ["abc123"],
  "states_exists": false,
  "states_in": ["xyz789"],
  "states_nin": ["abc123"]
}

WidgetDatasetIssuesAverageGroupBy

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesAverageRange

Description

Represents a WidgetDatasetIssuesAverageRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetIssuesAverageRangeCreateInput

Description

Represents a WidgetDatasetIssuesAverageRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetIssuesAverageRangeUpdateInput

Description

Represents a WidgetDatasetIssuesAverageRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetIssuesAverageRangeWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverageRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 123,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetIssuesAverageTimeUnit

Values
Enum ValueDescription

hour

minute

second

Example
"hour"

WidgetDatasetIssuesAverageUpdateInput

Description

Represents a WidgetDatasetIssuesAverageUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesAverageCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetIssuesAverageFilterUpdateInput,
  "groupBy": "day",
  "includeArchives": true,
  "max": 987.65,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesAverageRangeUpdateInput],
  "showAsPercentage": false,
  "timeUnit": "hour"
}

WidgetDatasetIssuesAverageWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesAverage

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetIssuesAverageByField is equal to given value
by_exists - WidgetDatasetIssuesAverageByField is set and exists
by_in - [WidgetDatasetIssuesAverageBy]Given value includes field
by_ne - WidgetDatasetIssuesAverageByField is not equal to given value
by_nin - [WidgetDatasetIssuesAverageBy]Given value does not includes field
chart_eq - WidgetDatasetIssuesAverageChartField is equal to given value
chart_exists - WidgetDatasetIssuesAverageChartField is set and exists
chart_in - [WidgetDatasetIssuesAverageChart]Given value includes field
chart_ne - WidgetDatasetIssuesAverageChartField is not equal to given value
chart_nin - [WidgetDatasetIssuesAverageChart]Given value does not includes field
customFilters_every - WidgetDatasetIssuesAverageCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetIssuesAverageCustomFilterWhereInput
customFilters_some - WidgetDatasetIssuesAverageCustomFilterWhereInput
filter - WidgetDatasetIssuesAverageFilterWhereInput
groupBy_eq - WidgetDatasetIssuesAverageGroupByField is equal to given value
groupBy_exists - WidgetDatasetIssuesAverageGroupByField is set and exists
groupBy_in - [WidgetDatasetIssuesAverageGroupBy]Given value includes field
groupBy_ne - WidgetDatasetIssuesAverageGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetIssuesAverageGroupBy]Given value does not includes field
includeArchives_eq - BooleanField is equal to given value
includeArchives_ne - BooleanField is not equal to given value
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetIssuesAverageRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetIssuesAverageRangeWhereInput
ranges_some - WidgetDatasetIssuesAverageRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
timeUnit_eq - WidgetDatasetIssuesAverageTimeUnitField is equal to given value
timeUnit_exists - WidgetDatasetIssuesAverageTimeUnitField is set and exists
timeUnit_in - [WidgetDatasetIssuesAverageTimeUnit]Given value includes field
timeUnit_ne - WidgetDatasetIssuesAverageTimeUnitField is not equal to given value
timeUnit_nin - [WidgetDatasetIssuesAverageTimeUnit]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetIssuesAverageCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetIssuesAverageCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetIssuesAverageCustomFilterWhereInput,
  "filter": WidgetDatasetIssuesAverageFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "includeArchives_eq": false,
  "includeArchives_ne": false,
  "max_eq": 123.45,
  "max_exists": false,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [123.45],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 123.45,
  "max_nin": [987.65],
  "min_eq": 987.65,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 987.65,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetIssuesAverageRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetIssuesAverageRangeWhereInput,
  "ranges_some": WidgetDatasetIssuesAverageRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "timeUnit_eq": "hour",
  "timeUnit_exists": "hour",
  "timeUnit_in": ["hour"],
  "timeUnit_ne": "hour",
  "timeUnit_nin": ["hour"]
}

WidgetDatasetIssuesCount

Description

Represents a WidgetDatasetIssuesCount

Example
{
  "_id": 4,
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [WidgetDatasetIssuesCountCustomFilter],
  "filter": WidgetDatasetIssuesCountFilter,
  "groupBy": "day",
  "includeArchives": false,
  "max": 123.45,
  "min": 987.65,
  "ranges": [WidgetDatasetIssuesCountRange],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesCountBy

Values
Enum ValueDescription

assignedLabelValues

assignee

catalog

element

labelValues

state

time

Example
"assignedLabelValues"

WidgetDatasetIssuesCountChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetIssuesCountCreateInput

Description

Represents a WidgetDatasetIssuesCountCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesCountCustomFilterCreateInput
  ],
  "filter": WidgetDatasetIssuesCountFilterCreateInput,
  "groupBy": "day",
  "includeArchives": true,
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesCountRangeCreateInput],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesCountCustomFilter

Description

Represents a WidgetDatasetIssuesCountCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesCountCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesCountCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetIssuesCountCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetIssuesCountCustomFilterCreateInput

Description

Represents a WidgetDatasetIssuesCountCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesCountCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesCountCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetIssuesCountCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesCountCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesCountCustomFilterDateValueCustom

Description

Represents a WidgetDatasetIssuesCountCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetIssuesCountCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetIssuesCountCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesCountCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesCountCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesCountCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesCountCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesCountCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesCountCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetIssuesCountCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetIssuesCountCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetIssuesCountCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesCountCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetIssuesCountCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetIssuesCountCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetIssuesCountCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetIssuesCountCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetIssuesCountCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetIssuesCountCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesCountCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesCountCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetIssuesCountCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesCountCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesCountCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesCountCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetIssuesCountCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetIssuesCountCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetIssuesCountCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesCountCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesCountCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesCountCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetIssuesCountCustomFilterUpdateInput

Description

Represents a WidgetDatasetIssuesCountCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesCountCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesCountCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetIssuesCountCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetIssuesCountCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetIssuesCountCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetIssuesCountCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetIssuesCountCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetIssuesCountCustomFilterContextField is equal to given value
context_exists - WidgetDatasetIssuesCountCustomFilterContextField is set and exists
context_in - [WidgetDatasetIssuesCountCustomFilterContext]Given value includes field
context_ne - WidgetDatasetIssuesCountCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetIssuesCountCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetIssuesCountCustomFilterDateValueWhereInput
type_eq - WidgetDatasetIssuesCountCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetIssuesCountCustomFilterTypeField is set and exists
type_in - [WidgetDatasetIssuesCountCustomFilterType]Given value includes field
type_ne - WidgetDatasetIssuesCountCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesCountCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetIssuesCountCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetIssuesCountFilter

Description

Represents a WidgetDatasetIssuesCountFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalogs - [IssueCatalog]
catalogsIds - [ID]
date - WidgetDatasetIssuesCountFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
states - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "catalogs": [IssueCatalog],
  "catalogsIds": [4],
  "date": WidgetDatasetIssuesCountFilterDate,
  "elements": [Element],
  "elementsIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "sites": [Site],
  "sitesIds": ["4"],
  "states": ["abc123"]
}

WidgetDatasetIssuesCountFilterCreateInput

Description

Represents a WidgetDatasetIssuesCountFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesCountFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "catalogs": [4],
  "date": WidgetDatasetIssuesCountFilterDateCreateInput,
  "elements": [4],
  "labelValues": ["4"],
  "sites": ["4"],
  "states": ["abc123"]
}

WidgetDatasetIssuesCountFilterDate

Description

Represents a WidgetDatasetIssuesCountFilterDate

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetIssuesCountFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountFilterDateCreateInput

Description

Represents a WidgetDatasetIssuesCountFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesCountFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesCountFilterDateCustom

Description

Represents a WidgetDatasetIssuesCountFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountFilterDateCustomCreateInput

Description

Represents a WidgetDatasetIssuesCountFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetIssuesCountFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesCountFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesCountFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesCountFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesCountFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesCountFilterDateUpdateInput

Description

Represents a WidgetDatasetIssuesCountFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesCountFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesCountFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesCountFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetIssuesCountFilterDateCurrentField is set and exists
current_in - [WidgetDatasetIssuesCountFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetIssuesCountFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesCountFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetIssuesCountFilterDateCustomWhereInput
last_eq - WidgetDatasetIssuesCountFilterDateLastField is equal to given value
last_exists - WidgetDatasetIssuesCountFilterDateLastField is set and exists
last_in - [WidgetDatasetIssuesCountFilterDateLast]Given value includes field
last_ne - WidgetDatasetIssuesCountFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetIssuesCountFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesCountFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesCountFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetIssuesCountFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesCountFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesCountFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesCountFilterDateTypeField is equal to given value
type_exists - WidgetDatasetIssuesCountFilterDateTypeField is set and exists
type_in - [WidgetDatasetIssuesCountFilterDateType]Given value includes field
type_ne - WidgetDatasetIssuesCountFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesCountFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesCountFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesCountFilterUpdateInput

Description

Represents a WidgetDatasetIssuesCountFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesCountFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "catalogs": [4],
  "date": WidgetDatasetIssuesCountFilterDateUpdateInput,
  "elements": ["4"],
  "labelValues": ["4"],
  "sites": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesCountFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalogs_all - [ID]Field includes all given values.
catalogs_eq - [ID]Given value is equal to field
catalogs_exists - Boolean
catalogs_in - [ID]Field includes one of given value.
catalogs_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetIssuesCountFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
states_all - [String]Field includes all given values.
states_eq - [String]Given value is equal to field
states_exists - Boolean
states_in - [String]Field includes one of given value.
states_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": [4],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": ["4"],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": ["4"],
  "catalogs_all": ["4"],
  "catalogs_eq": [4],
  "catalogs_exists": false,
  "catalogs_in": ["4"],
  "catalogs_nin": [4],
  "date": WidgetDatasetIssuesCountFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": true,
  "elements_in": ["4"],
  "elements_nin": [4],
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": true,
  "labelValues_in": [4],
  "labelValues_nin": ["4"],
  "sites_all": ["4"],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": [4],
  "sites_nin": ["4"],
  "states_all": ["abc123"],
  "states_eq": ["abc123"],
  "states_exists": true,
  "states_in": ["xyz789"],
  "states_nin": ["xyz789"]
}

WidgetDatasetIssuesCountGroupBy

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesCountRange

Description

Represents a WidgetDatasetIssuesCountRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetIssuesCountRangeCreateInput

Description

Represents a WidgetDatasetIssuesCountRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetIssuesCountRangeUpdateInput

Description

Represents a WidgetDatasetIssuesCountRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetIssuesCountRangeWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCountRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "xyz789",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["xyz789"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 987,
  "max_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

WidgetDatasetIssuesCountTimeUnit

Values
Enum ValueDescription

hour

minute

second

Example
"hour"

WidgetDatasetIssuesCountUpdateInput

Description

Represents a WidgetDatasetIssuesCountUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesCountCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetIssuesCountFilterUpdateInput,
  "groupBy": "day",
  "includeArchives": false,
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesCountRangeUpdateInput],
  "showAsPercentage": false,
  "timeUnit": "hour"
}

WidgetDatasetIssuesCountWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesCount

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetIssuesCountByField is equal to given value
by_exists - WidgetDatasetIssuesCountByField is set and exists
by_in - [WidgetDatasetIssuesCountBy]Given value includes field
by_ne - WidgetDatasetIssuesCountByField is not equal to given value
by_nin - [WidgetDatasetIssuesCountBy]Given value does not includes field
chart_eq - WidgetDatasetIssuesCountChartField is equal to given value
chart_exists - WidgetDatasetIssuesCountChartField is set and exists
chart_in - [WidgetDatasetIssuesCountChart]Given value includes field
chart_ne - WidgetDatasetIssuesCountChartField is not equal to given value
chart_nin - [WidgetDatasetIssuesCountChart]Given value does not includes field
customFilters_every - WidgetDatasetIssuesCountCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetIssuesCountCustomFilterWhereInput
customFilters_some - WidgetDatasetIssuesCountCustomFilterWhereInput
filter - WidgetDatasetIssuesCountFilterWhereInput
groupBy_eq - WidgetDatasetIssuesCountGroupByField is equal to given value
groupBy_exists - WidgetDatasetIssuesCountGroupByField is set and exists
groupBy_in - [WidgetDatasetIssuesCountGroupBy]Given value includes field
groupBy_ne - WidgetDatasetIssuesCountGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetIssuesCountGroupBy]Given value does not includes field
includeArchives_eq - BooleanField is equal to given value
includeArchives_ne - BooleanField is not equal to given value
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetIssuesCountRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetIssuesCountRangeWhereInput
ranges_some - WidgetDatasetIssuesCountRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
timeUnit_eq - WidgetDatasetIssuesCountTimeUnitField is equal to given value
timeUnit_exists - WidgetDatasetIssuesCountTimeUnitField is set and exists
timeUnit_in - [WidgetDatasetIssuesCountTimeUnit]Given value includes field
timeUnit_ne - WidgetDatasetIssuesCountTimeUnitField is not equal to given value
timeUnit_nin - [WidgetDatasetIssuesCountTimeUnit]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetIssuesCountCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetIssuesCountCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetIssuesCountCustomFilterWhereInput,
  "filter": WidgetDatasetIssuesCountFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "includeArchives_eq": true,
  "includeArchives_ne": false,
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 987.65,
  "max_nin": [987.65],
  "min_eq": 123.45,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 987.65,
  "min_in": [123.45],
  "min_lt": 987.65,
  "min_lte": 987.65,
  "min_ne": 123.45,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetIssuesCountRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetIssuesCountRangeWhereInput,
  "ranges_some": WidgetDatasetIssuesCountRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "timeUnit_eq": "hour",
  "timeUnit_exists": "hour",
  "timeUnit_in": ["hour"],
  "timeUnit_ne": "hour",
  "timeUnit_nin": ["hour"]
}

WidgetDatasetIssuesDuration

Description

Represents a WidgetDatasetIssuesDuration

Example
{
  "_id": "4",
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesDurationCustomFilter
  ],
  "filter": WidgetDatasetIssuesDurationFilter,
  "groupBy": "day",
  "includeArchives": true,
  "max": 987.65,
  "min": 987.65,
  "ranges": [WidgetDatasetIssuesDurationRange],
  "showAsPercentage": false,
  "timeUnit": "hour"
}

WidgetDatasetIssuesDurationBy

Values
Enum ValueDescription

assignedLabelValues

assignee

catalog

element

labelValues

state

time

Example
"assignedLabelValues"

WidgetDatasetIssuesDurationChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetIssuesDurationCreateInput

Description

Represents a WidgetDatasetIssuesDurationCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesDurationCustomFilterCreateInput
  ],
  "filter": WidgetDatasetIssuesDurationFilterCreateInput,
  "groupBy": "day",
  "includeArchives": true,
  "max": 987.65,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesDurationRangeCreateInput],
  "showAsPercentage": false,
  "timeUnit": "hour"
}

WidgetDatasetIssuesDurationCustomFilter

Description

Represents a WidgetDatasetIssuesDurationCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesDurationCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesDurationCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetIssuesDurationCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetIssuesDurationCustomFilterCreateInput

Description

Represents a WidgetDatasetIssuesDurationCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesDurationCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesDurationCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetIssuesDurationCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesDurationCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesDurationCustomFilterDateValueCustom

Description

Represents a WidgetDatasetIssuesDurationCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetIssuesDurationCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetIssuesDurationCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesDurationCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesDurationCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesDurationCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesDurationCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesDurationCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesDurationCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetIssuesDurationCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetIssuesDurationCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetIssuesDurationCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesDurationCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetIssuesDurationCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetIssuesDurationCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetIssuesDurationCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetIssuesDurationCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetIssuesDurationCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetIssuesDurationCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesDurationCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesDurationCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetIssuesDurationCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesDurationCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesDurationCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesDurationCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetIssuesDurationCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetIssuesDurationCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetIssuesDurationCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesDurationCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesDurationCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesDurationCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetIssuesDurationCustomFilterUpdateInput

Description

Represents a WidgetDatasetIssuesDurationCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesDurationCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesDurationCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetIssuesDurationCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetIssuesDurationCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetIssuesDurationCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetIssuesDurationCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetIssuesDurationCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetIssuesDurationCustomFilterContextField is equal to given value
context_exists - WidgetDatasetIssuesDurationCustomFilterContextField is set and exists
context_in - [WidgetDatasetIssuesDurationCustomFilterContext]Given value includes field
context_ne - WidgetDatasetIssuesDurationCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetIssuesDurationCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetIssuesDurationCustomFilterDateValueWhereInput
type_eq - WidgetDatasetIssuesDurationCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetIssuesDurationCustomFilterTypeField is set and exists
type_in - [WidgetDatasetIssuesDurationCustomFilterType]Given value includes field
type_ne - WidgetDatasetIssuesDurationCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesDurationCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetIssuesDurationCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetIssuesDurationFilter

Description

Represents a WidgetDatasetIssuesDurationFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalogs - [IssueCatalog]
catalogsIds - [ID]
date - WidgetDatasetIssuesDurationFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
states - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": [4],
  "catalogs": [IssueCatalog],
  "catalogsIds": [4],
  "date": WidgetDatasetIssuesDurationFilterDate,
  "elements": [Element],
  "elementsIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": ["4"],
  "sites": [Site],
  "sitesIds": [4],
  "states": ["xyz789"]
}

WidgetDatasetIssuesDurationFilterCreateInput

Description

Represents a WidgetDatasetIssuesDurationFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesDurationFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "catalogs": [4],
  "date": WidgetDatasetIssuesDurationFilterDateCreateInput,
  "elements": ["4"],
  "labelValues": ["4"],
  "sites": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesDurationFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetIssuesDurationFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesDurationFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesDurationFilterDateCustom

Description

Represents a WidgetDatasetIssuesDurationFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationFilterDateCustomCreateInput

Description

Represents a WidgetDatasetIssuesDurationFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetIssuesDurationFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesDurationFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesDurationFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesDurationFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesDurationFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesDurationFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesDurationFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesDurationFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesDurationFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetIssuesDurationFilterDateCurrentField is set and exists
current_in - [WidgetDatasetIssuesDurationFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetIssuesDurationFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesDurationFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetIssuesDurationFilterDateCustomWhereInput
last_eq - WidgetDatasetIssuesDurationFilterDateLastField is equal to given value
last_exists - WidgetDatasetIssuesDurationFilterDateLastField is set and exists
last_in - [WidgetDatasetIssuesDurationFilterDateLast]Given value includes field
last_ne - WidgetDatasetIssuesDurationFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetIssuesDurationFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesDurationFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesDurationFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetIssuesDurationFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesDurationFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesDurationFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesDurationFilterDateTypeField is equal to given value
type_exists - WidgetDatasetIssuesDurationFilterDateTypeField is set and exists
type_in - [WidgetDatasetIssuesDurationFilterDateType]Given value includes field
type_ne - WidgetDatasetIssuesDurationFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesDurationFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesDurationFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesDurationFilterUpdateInput

Description

Represents a WidgetDatasetIssuesDurationFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesDurationFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": [4],
  "catalogs": ["4"],
  "date": WidgetDatasetIssuesDurationFilterDateUpdateInput,
  "elements": ["4"],
  "labelValues": ["4"],
  "sites": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesDurationFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalogs_all - [ID]Field includes all given values.
catalogs_eq - [ID]Given value is equal to field
catalogs_exists - Boolean
catalogs_in - [ID]Field includes one of given value.
catalogs_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetIssuesDurationFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
states_all - [String]Field includes all given values.
states_eq - [String]Given value is equal to field
states_exists - Boolean
states_in - [String]Field includes one of given value.
states_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": [4],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": [4],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": true,
  "assignedLabelValues_in": [4],
  "assignedLabelValues_nin": [4],
  "catalogs_all": ["4"],
  "catalogs_eq": [4],
  "catalogs_exists": true,
  "catalogs_in": ["4"],
  "catalogs_nin": ["4"],
  "date": WidgetDatasetIssuesDurationFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": ["4"],
  "elements_exists": true,
  "elements_in": [4],
  "elements_nin": ["4"],
  "labelValues_all": [4],
  "labelValues_eq": [4],
  "labelValues_exists": false,
  "labelValues_in": [4],
  "labelValues_nin": [4],
  "sites_all": [4],
  "sites_eq": ["4"],
  "sites_exists": false,
  "sites_in": ["4"],
  "sites_nin": ["4"],
  "states_all": ["xyz789"],
  "states_eq": ["xyz789"],
  "states_exists": false,
  "states_in": ["abc123"],
  "states_nin": ["xyz789"]
}

WidgetDatasetIssuesDurationGroupBy

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesDurationRange

Description

Represents a WidgetDatasetIssuesDurationRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetIssuesDurationRangeCreateInput

Description

Represents a WidgetDatasetIssuesDurationRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetIssuesDurationRangeUpdateInput

Description

Represents a WidgetDatasetIssuesDurationRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetIssuesDurationRangeWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDurationRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

WidgetDatasetIssuesDurationTimeUnit

Values
Enum ValueDescription

hour

minute

second

Example
"hour"

WidgetDatasetIssuesDurationUpdateInput

Description

Represents a WidgetDatasetIssuesDurationUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesDurationCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetIssuesDurationFilterUpdateInput,
  "groupBy": "day",
  "includeArchives": false,
  "max": 987.65,
  "min": 987.65,
  "ranges": [WidgetDatasetIssuesDurationRangeUpdateInput],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesDurationWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesDuration

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetIssuesDurationByField is equal to given value
by_exists - WidgetDatasetIssuesDurationByField is set and exists
by_in - [WidgetDatasetIssuesDurationBy]Given value includes field
by_ne - WidgetDatasetIssuesDurationByField is not equal to given value
by_nin - [WidgetDatasetIssuesDurationBy]Given value does not includes field
chart_eq - WidgetDatasetIssuesDurationChartField is equal to given value
chart_exists - WidgetDatasetIssuesDurationChartField is set and exists
chart_in - [WidgetDatasetIssuesDurationChart]Given value includes field
chart_ne - WidgetDatasetIssuesDurationChartField is not equal to given value
chart_nin - [WidgetDatasetIssuesDurationChart]Given value does not includes field
customFilters_every - WidgetDatasetIssuesDurationCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetIssuesDurationCustomFilterWhereInput
customFilters_some - WidgetDatasetIssuesDurationCustomFilterWhereInput
filter - WidgetDatasetIssuesDurationFilterWhereInput
groupBy_eq - WidgetDatasetIssuesDurationGroupByField is equal to given value
groupBy_exists - WidgetDatasetIssuesDurationGroupByField is set and exists
groupBy_in - [WidgetDatasetIssuesDurationGroupBy]Given value includes field
groupBy_ne - WidgetDatasetIssuesDurationGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetIssuesDurationGroupBy]Given value does not includes field
includeArchives_eq - BooleanField is equal to given value
includeArchives_ne - BooleanField is not equal to given value
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetIssuesDurationRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetIssuesDurationRangeWhereInput
ranges_some - WidgetDatasetIssuesDurationRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
timeUnit_eq - WidgetDatasetIssuesDurationTimeUnitField is equal to given value
timeUnit_exists - WidgetDatasetIssuesDurationTimeUnitField is set and exists
timeUnit_in - [WidgetDatasetIssuesDurationTimeUnit]Given value includes field
timeUnit_ne - WidgetDatasetIssuesDurationTimeUnitField is not equal to given value
timeUnit_nin - [WidgetDatasetIssuesDurationTimeUnit]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetIssuesDurationCustomFilterWhereInput,
  "customFilters_exists": true,
  "customFilters_none": WidgetDatasetIssuesDurationCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetIssuesDurationCustomFilterWhereInput,
  "filter": WidgetDatasetIssuesDurationFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "includeArchives_eq": false,
  "includeArchives_ne": false,
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 987.65,
  "max_in": [123.45],
  "max_lt": 987.65,
  "max_lte": 123.45,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "min_eq": 123.45,
  "min_exists": false,
  "min_gt": 987.65,
  "min_gte": 987.65,
  "min_in": [123.45],
  "min_lt": 123.45,
  "min_lte": 123.45,
  "min_ne": 987.65,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetIssuesDurationRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetIssuesDurationRangeWhereInput,
  "ranges_some": WidgetDatasetIssuesDurationRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "timeUnit_eq": "hour",
  "timeUnit_exists": "hour",
  "timeUnit_in": ["hour"],
  "timeUnit_ne": "hour",
  "timeUnit_nin": ["hour"]
}

WidgetDatasetIssuesPlanned

Description

Represents a WidgetDatasetIssuesPlanned

Example
{
  "_id": "4",
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesPlannedCustomFilter
  ],
  "filter": WidgetDatasetIssuesPlannedFilter,
  "groupBy": "day",
  "includeArchives": false,
  "max": 987.65,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesPlannedRange],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesPlannedBy

Values
Enum ValueDescription

assignedLabelValues

assignee

catalog

element

labelValues

state

time

Example
"assignedLabelValues"

WidgetDatasetIssuesPlannedChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetIssuesPlannedCreateInput

Description

Represents a WidgetDatasetIssuesPlannedCreateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesPlannedCustomFilterCreateInput
  ],
  "filter": WidgetDatasetIssuesPlannedFilterCreateInput,
  "groupBy": "day",
  "includeArchives": true,
  "max": 123.45,
  "min": 123.45,
  "ranges": [WidgetDatasetIssuesPlannedRangeCreateInput],
  "showAsPercentage": true,
  "timeUnit": "hour"
}

WidgetDatasetIssuesPlannedCustomFilter

Description

Represents a WidgetDatasetIssuesPlannedCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesPlannedCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesPlannedCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetIssuesPlannedCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetIssuesPlannedCustomFilterCreateInput

Description

Represents a WidgetDatasetIssuesPlannedCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesPlannedCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesPlannedCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesPlannedCustomFilterDateValueCustom

Description

Represents a WidgetDatasetIssuesPlannedCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetIssuesPlannedCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesPlannedCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesPlannedCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesPlannedCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesPlannedCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesPlannedCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetIssuesPlannedCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetIssuesPlannedCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetIssuesPlannedCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesPlannedCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetIssuesPlannedCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetIssuesPlannedCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetIssuesPlannedCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetIssuesPlannedCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetIssuesPlannedCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetIssuesPlannedCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesPlannedCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesPlannedCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetIssuesPlannedCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesPlannedCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesPlannedCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesPlannedCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetIssuesPlannedCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetIssuesPlannedCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetIssuesPlannedCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesPlannedCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesPlannedCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesPlannedCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetIssuesPlannedCustomFilterUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetIssuesPlannedCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetIssuesPlannedCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetIssuesPlannedCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetIssuesPlannedCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetIssuesPlannedCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetIssuesPlannedCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetIssuesPlannedCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetIssuesPlannedCustomFilterContextField is equal to given value
context_exists - WidgetDatasetIssuesPlannedCustomFilterContextField is set and exists
context_in - [WidgetDatasetIssuesPlannedCustomFilterContext]Given value includes field
context_ne - WidgetDatasetIssuesPlannedCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetIssuesPlannedCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetIssuesPlannedCustomFilterDateValueWhereInput
type_eq - WidgetDatasetIssuesPlannedCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetIssuesPlannedCustomFilterTypeField is set and exists
type_in - [WidgetDatasetIssuesPlannedCustomFilterType]Given value includes field
type_ne - WidgetDatasetIssuesPlannedCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesPlannedCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetIssuesPlannedCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetIssuesPlannedFilter

Description

Represents a WidgetDatasetIssuesPlannedFilter

Fields
Field NameDescription
assignedAccounts - [Account]
assignedAccountsIds - [ID]
assignedLabelValues - [LabelValue]
assignedLabelValuesIds - [ID]
catalogs - [IssueCatalog]
catalogsIds - [ID]
date - WidgetDatasetIssuesPlannedFilterDate
elements - [Element]
elementsIds - [ID]
labelValues - [LabelValue]
labelValuesIds - [ID]
sites - [Site]
sitesIds - [ID]
states - [String]
Example
{
  "assignedAccounts": [Account],
  "assignedAccountsIds": ["4"],
  "assignedLabelValues": [LabelValue],
  "assignedLabelValuesIds": ["4"],
  "catalogs": [IssueCatalog],
  "catalogsIds": ["4"],
  "date": WidgetDatasetIssuesPlannedFilterDate,
  "elements": [Element],
  "elementsIds": ["4"],
  "labelValues": [LabelValue],
  "labelValuesIds": [4],
  "sites": [Site],
  "sitesIds": [4],
  "states": ["xyz789"]
}

WidgetDatasetIssuesPlannedFilterCreateInput

Description

Represents a WidgetDatasetIssuesPlannedFilterCreateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesPlannedFilterDateCreateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": ["4"],
  "catalogs": ["4"],
  "date": WidgetDatasetIssuesPlannedFilterDateCreateInput,
  "elements": [4],
  "labelValues": ["4"],
  "sites": ["4"],
  "states": ["abc123"]
}

WidgetDatasetIssuesPlannedFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesPlannedFilterDateCustom

Description

Represents a WidgetDatasetIssuesPlannedFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedFilterDateCustomCreateInput

Description

Represents a WidgetDatasetIssuesPlannedFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetIssuesPlannedFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetIssuesPlannedFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesPlannedFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetIssuesPlannedFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetIssuesPlannedFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetIssuesPlannedFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetIssuesPlannedFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetIssuesPlannedFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetIssuesPlannedFilterDateCurrentField is set and exists
current_in - [WidgetDatasetIssuesPlannedFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetIssuesPlannedFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetIssuesPlannedFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetIssuesPlannedFilterDateCustomWhereInput
last_eq - WidgetDatasetIssuesPlannedFilterDateLastField is equal to given value
last_exists - WidgetDatasetIssuesPlannedFilterDateLastField is set and exists
last_in - [WidgetDatasetIssuesPlannedFilterDateLast]Given value includes field
last_ne - WidgetDatasetIssuesPlannedFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetIssuesPlannedFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetIssuesPlannedFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetIssuesPlannedFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetIssuesPlannedFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetIssuesPlannedFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetIssuesPlannedFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetIssuesPlannedFilterDateTypeField is equal to given value
type_exists - WidgetDatasetIssuesPlannedFilterDateTypeField is set and exists
type_in - [WidgetDatasetIssuesPlannedFilterDateType]Given value includes field
type_ne - WidgetDatasetIssuesPlannedFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetIssuesPlannedFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetIssuesPlannedFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetIssuesPlannedFilterUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedFilterUpdateInput

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
catalogs - [ID]
date - WidgetDatasetIssuesPlannedFilterDateUpdateInput
elements - [ID]
labelValues - [ID]
sites - [ID]
states - [String]
Example
{
  "assignedAccounts": [4],
  "assignedLabelValues": ["4"],
  "catalogs": ["4"],
  "date": WidgetDatasetIssuesPlannedFilterDateUpdateInput,
  "elements": ["4"],
  "labelValues": [4],
  "sites": [4],
  "states": ["abc123"]
}

WidgetDatasetIssuesPlannedFilterWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedFilter

Fields
Input FieldDescription
assignedAccounts_all - [ID]Field includes all given values.
assignedAccounts_eq - [ID]Given value is equal to field
assignedAccounts_exists - Boolean
assignedAccounts_in - [ID]Field includes one of given value.
assignedAccounts_nin - [ID]Field does not include any of the given values.
assignedLabelValues_all - [ID]Field includes all given values.
assignedLabelValues_eq - [ID]Given value is equal to field
assignedLabelValues_exists - Boolean
assignedLabelValues_in - [ID]Field includes one of given value.
assignedLabelValues_nin - [ID]Field does not include any of the given values.
catalogs_all - [ID]Field includes all given values.
catalogs_eq - [ID]Given value is equal to field
catalogs_exists - Boolean
catalogs_in - [ID]Field includes one of given value.
catalogs_nin - [ID]Field does not include any of the given values.
date - WidgetDatasetIssuesPlannedFilterDateWhereInput
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
labelValues_all - [ID]Field includes all given values.
labelValues_eq - [ID]Given value is equal to field
labelValues_exists - Boolean
labelValues_in - [ID]Field includes one of given value.
labelValues_nin - [ID]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
states_all - [String]Field includes all given values.
states_eq - [String]Given value is equal to field
states_exists - Boolean
states_in - [String]Field includes one of given value.
states_nin - [String]Field does not include any of the given values.
Example
{
  "assignedAccounts_all": ["4"],
  "assignedAccounts_eq": ["4"],
  "assignedAccounts_exists": true,
  "assignedAccounts_in": ["4"],
  "assignedAccounts_nin": [4],
  "assignedLabelValues_all": ["4"],
  "assignedLabelValues_eq": [4],
  "assignedLabelValues_exists": false,
  "assignedLabelValues_in": ["4"],
  "assignedLabelValues_nin": ["4"],
  "catalogs_all": ["4"],
  "catalogs_eq": [4],
  "catalogs_exists": false,
  "catalogs_in": [4],
  "catalogs_nin": ["4"],
  "date": WidgetDatasetIssuesPlannedFilterDateWhereInput,
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": false,
  "elements_in": [4],
  "elements_nin": ["4"],
  "labelValues_all": ["4"],
  "labelValues_eq": ["4"],
  "labelValues_exists": false,
  "labelValues_in": ["4"],
  "labelValues_nin": [4],
  "sites_all": ["4"],
  "sites_eq": ["4"],
  "sites_exists": true,
  "sites_in": [4],
  "sites_nin": ["4"],
  "states_all": ["abc123"],
  "states_eq": ["abc123"],
  "states_exists": false,
  "states_in": ["xyz789"],
  "states_nin": ["xyz789"]
}

WidgetDatasetIssuesPlannedGroupBy

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetIssuesPlannedRange

Description

Represents a WidgetDatasetIssuesPlannedRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetIssuesPlannedRangeCreateInput

Description

Represents a WidgetDatasetIssuesPlannedRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetIssuesPlannedRangeUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetIssuesPlannedRangeWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlannedRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "abc123",
  "color_eq": "xyz789",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "xyz789",
  "color_nin": ["xyz789"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 123,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123"
}

WidgetDatasetIssuesPlannedTimeUnit

Values
Enum ValueDescription

hour

minute

second

Example
"hour"

WidgetDatasetIssuesPlannedUpdateInput

Description

Represents a WidgetDatasetIssuesPlannedUpdateInput

Example
{
  "by": "assignedLabelValues",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetIssuesPlannedCustomFilterUpdateInput
  ],
  "filter": WidgetDatasetIssuesPlannedFilterUpdateInput,
  "groupBy": "day",
  "includeArchives": false,
  "max": 123.45,
  "min": 987.65,
  "ranges": [WidgetDatasetIssuesPlannedRangeUpdateInput],
  "showAsPercentage": false,
  "timeUnit": "hour"
}

WidgetDatasetIssuesPlannedWhereInput

Description

Represents a Where input for: WidgetDatasetIssuesPlanned

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetIssuesPlannedByField is equal to given value
by_exists - WidgetDatasetIssuesPlannedByField is set and exists
by_in - [WidgetDatasetIssuesPlannedBy]Given value includes field
by_ne - WidgetDatasetIssuesPlannedByField is not equal to given value
by_nin - [WidgetDatasetIssuesPlannedBy]Given value does not includes field
chart_eq - WidgetDatasetIssuesPlannedChartField is equal to given value
chart_exists - WidgetDatasetIssuesPlannedChartField is set and exists
chart_in - [WidgetDatasetIssuesPlannedChart]Given value includes field
chart_ne - WidgetDatasetIssuesPlannedChartField is not equal to given value
chart_nin - [WidgetDatasetIssuesPlannedChart]Given value does not includes field
customFilters_every - WidgetDatasetIssuesPlannedCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetIssuesPlannedCustomFilterWhereInput
customFilters_some - WidgetDatasetIssuesPlannedCustomFilterWhereInput
filter - WidgetDatasetIssuesPlannedFilterWhereInput
groupBy_eq - WidgetDatasetIssuesPlannedGroupByField is equal to given value
groupBy_exists - WidgetDatasetIssuesPlannedGroupByField is set and exists
groupBy_in - [WidgetDatasetIssuesPlannedGroupBy]Given value includes field
groupBy_ne - WidgetDatasetIssuesPlannedGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetIssuesPlannedGroupBy]Given value does not includes field
includeArchives_eq - BooleanField is equal to given value
includeArchives_ne - BooleanField is not equal to given value
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetIssuesPlannedRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetIssuesPlannedRangeWhereInput
ranges_some - WidgetDatasetIssuesPlannedRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
timeUnit_eq - WidgetDatasetIssuesPlannedTimeUnitField is equal to given value
timeUnit_exists - WidgetDatasetIssuesPlannedTimeUnitField is set and exists
timeUnit_in - [WidgetDatasetIssuesPlannedTimeUnit]Given value includes field
timeUnit_ne - WidgetDatasetIssuesPlannedTimeUnitField is not equal to given value
timeUnit_nin - [WidgetDatasetIssuesPlannedTimeUnit]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "by_eq": "assignedLabelValues",
  "by_exists": "assignedLabelValues",
  "by_in": ["assignedLabelValues"],
  "by_ne": "assignedLabelValues",
  "by_nin": ["assignedLabelValues"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetIssuesPlannedCustomFilterWhereInput,
  "customFilters_exists": true,
  "customFilters_none": WidgetDatasetIssuesPlannedCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetIssuesPlannedCustomFilterWhereInput,
  "filter": WidgetDatasetIssuesPlannedFilterWhereInput,
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "includeArchives_eq": false,
  "includeArchives_ne": false,
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 123.45,
  "max_in": [123.45],
  "max_lt": 123.45,
  "max_lte": 123.45,
  "max_ne": 987.65,
  "max_nin": [987.65],
  "min_eq": 987.65,
  "min_exists": true,
  "min_gt": 987.65,
  "min_gte": 123.45,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 123.45,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetIssuesPlannedRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetIssuesPlannedRangeWhereInput,
  "ranges_some": WidgetDatasetIssuesPlannedRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": true,
  "timeUnit_eq": "hour",
  "timeUnit_exists": "hour",
  "timeUnit_in": ["hour"],
  "timeUnit_ne": "hour",
  "timeUnit_nin": ["hour"]
}

WidgetDatasetRealtime

Description

Represents a WidgetDatasetRealtime

Fields
Field NameDescription
_id - ID
aggregation - WidgetDatasetRealtimeAggregation
chart - WidgetDatasetRealtimeChart!
filters - [WidgetDatasetRealtimeFilter]
ranges - [WidgetDatasetRealtimeRange]
startTimeRange - String
stopTimeRange - String
Example
{
  "_id": "4",
  "aggregation": WidgetDatasetRealtimeAggregation,
  "chart": "bar",
  "filters": [WidgetDatasetRealtimeFilter],
  "ranges": [WidgetDatasetRealtimeRange],
  "startTimeRange": "xyz789",
  "stopTimeRange": "xyz789"
}

WidgetDatasetRealtimeAggregation

Description

Represents a WidgetDatasetRealtimeAggregation

Fields
Field NameDescription
fields - [String]
function - WidgetDatasetRealtimeAggregationFunction
interval - String
mode - WidgetDatasetRealtimeAggregationMode
Example
{
  "fields": ["xyz789"],
  "function": "count",
  "interval": "xyz789",
  "mode": "by"
}

WidgetDatasetRealtimeAggregationCreateInput

Description

Represents a WidgetDatasetRealtimeAggregationCreateInput

Fields
Input FieldDescription
fields - [String]
function - WidgetDatasetRealtimeAggregationFunction
interval - String
mode - WidgetDatasetRealtimeAggregationMode
Example
{
  "fields": ["xyz789"],
  "function": "count",
  "interval": "xyz789",
  "mode": "by"
}

WidgetDatasetRealtimeAggregationFunction

Values
Enum ValueDescription

count

mean

Example
"count"

WidgetDatasetRealtimeAggregationMode

Values
Enum ValueDescription

by

except

Example
"by"

WidgetDatasetRealtimeAggregationUpdateInput

Description

Represents a WidgetDatasetRealtimeAggregationUpdateInput

Fields
Input FieldDescription
fields - [String]
function - WidgetDatasetRealtimeAggregationFunction
interval - String
mode - WidgetDatasetRealtimeAggregationMode
Example
{
  "fields": ["xyz789"],
  "function": "count",
  "interval": "xyz789",
  "mode": "by"
}

WidgetDatasetRealtimeAggregationWhereInput

Description

Represents a Where input for: WidgetDatasetRealtimeAggregation

Fields
Input FieldDescription
fields_all - [String]Field includes all given values.
fields_eq - [String]Given value is equal to field
fields_exists - Boolean
fields_in - [String]Field includes one of given value.
fields_nin - [String]Field does not include any of the given values.
function_eq - WidgetDatasetRealtimeAggregationFunctionField is equal to given value
function_exists - WidgetDatasetRealtimeAggregationFunctionField is set and exists
function_in - [WidgetDatasetRealtimeAggregationFunction]Given value includes field
function_ne - WidgetDatasetRealtimeAggregationFunctionField is not equal to given value
function_nin - [WidgetDatasetRealtimeAggregationFunction]Given value does not includes field
interval_contains - StringField contains given value, case-insensitive
interval_ends_with - StringField ends with given value, case-insensitive
interval_eq - StringField is equal to given value
interval_exists - BooleanField is set and exists
interval_in - [String]Given value includes field
interval_ne - StringField is not equal to given value
interval_nin - [String]Given value does not includes field
interval_not_contains - StringField does not contains given value, case-insensitive
interval_not_ends_with - StringField does not end with given value, case-insensitive
interval_not_starts_with - StringField does not start with given value, case-insensitive
interval_starts_with - StringField starts with given value, case-insensitive
mode_eq - WidgetDatasetRealtimeAggregationModeField is equal to given value
mode_exists - WidgetDatasetRealtimeAggregationModeField is set and exists
mode_in - [WidgetDatasetRealtimeAggregationMode]Given value includes field
mode_ne - WidgetDatasetRealtimeAggregationModeField is not equal to given value
mode_nin - [WidgetDatasetRealtimeAggregationMode]Given value does not includes field
Example
{
  "fields_all": ["xyz789"],
  "fields_eq": ["xyz789"],
  "fields_exists": true,
  "fields_in": ["abc123"],
  "fields_nin": ["xyz789"],
  "function_eq": "count",
  "function_exists": "count",
  "function_in": ["count"],
  "function_ne": "count",
  "function_nin": ["count"],
  "interval_contains": "xyz789",
  "interval_ends_with": "xyz789",
  "interval_eq": "abc123",
  "interval_exists": false,
  "interval_in": ["abc123"],
  "interval_ne": "xyz789",
  "interval_nin": ["xyz789"],
  "interval_not_contains": "abc123",
  "interval_not_ends_with": "xyz789",
  "interval_not_starts_with": "abc123",
  "interval_starts_with": "abc123",
  "mode_eq": "by",
  "mode_exists": "by",
  "mode_in": ["by"],
  "mode_ne": "by",
  "mode_nin": ["by"]
}

WidgetDatasetRealtimeChart

Values
Enum ValueDescription

bar

gauge

heatmap

line

scatter

table

value

Example
"bar"

WidgetDatasetRealtimeCreateInput

Description

Represents a WidgetDatasetRealtimeCreateInput

Example
{
  "aggregation": WidgetDatasetRealtimeAggregationCreateInput,
  "chart": "bar",
  "filters": [WidgetDatasetRealtimeFilterCreateInput],
  "ranges": [WidgetDatasetRealtimeRangeCreateInput],
  "startTimeRange": "abc123",
  "stopTimeRange": "xyz789"
}

WidgetDatasetRealtimeFilter

Description

Represents a WidgetDatasetRealtimeFilter

Fields
Field NameDescription
tags - [ElementTag]
type - WidgetDatasetRealtimeFilterType
Example
{"tags": [ElementTag], "type": "and"}

WidgetDatasetRealtimeFilterCreateInput

Description

Represents a WidgetDatasetRealtimeFilterCreateInput

Fields
Input FieldDescription
tags - [ID!]!
type - WidgetDatasetRealtimeFilterType
Example
{"tags": ["4"], "type": "and"}

WidgetDatasetRealtimeFilterType

Values
Enum ValueDescription

and

or

Example
"and"

WidgetDatasetRealtimeFilterUpdateInput

Description

Represents a WidgetDatasetRealtimeFilterUpdateInput

Fields
Input FieldDescription
tags - [ID]
type - WidgetDatasetRealtimeFilterType
Example
{"tags": ["4"], "type": "and"}

WidgetDatasetRealtimeFilterWhereInput

Description

Represents a Where input for: WidgetDatasetRealtimeFilter

Fields
Input FieldDescription
tags_all - [ID]Field includes all given values.
tags_eq - [ID]Given value is equal to field
tags_exists - Boolean
tags_in - [ID]Field includes one of given value.
tags_nin - [ID]Field does not include any of the given values.
type_eq - WidgetDatasetRealtimeFilterTypeField is equal to given value
type_exists - WidgetDatasetRealtimeFilterTypeField is set and exists
type_in - [WidgetDatasetRealtimeFilterType]Given value includes field
type_ne - WidgetDatasetRealtimeFilterTypeField is not equal to given value
type_nin - [WidgetDatasetRealtimeFilterType]Given value does not includes field
Example
{
  "tags_all": ["4"],
  "tags_eq": [4],
  "tags_exists": false,
  "tags_in": [4],
  "tags_nin": [4],
  "type_eq": "and",
  "type_exists": "and",
  "type_in": ["and"],
  "type_ne": "and",
  "type_nin": ["and"]
}

WidgetDatasetRealtimeRange

Description

Represents a WidgetDatasetRealtimeRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetRealtimeRangeCreateInput

Description

Represents a WidgetDatasetRealtimeRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetRealtimeRangeUpdateInput

Description

Represents a WidgetDatasetRealtimeRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetRealtimeRangeWhereInput

Description

Represents a Where input for: WidgetDatasetRealtimeRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "xyz789",
  "max_eq": 123,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

WidgetDatasetRealtimeUpdateInput

Description

Represents a WidgetDatasetRealtimeUpdateInput

Example
{
  "aggregation": WidgetDatasetRealtimeAggregationUpdateInput,
  "chart": "bar",
  "filters": [WidgetDatasetRealtimeFilterUpdateInput],
  "ranges": [WidgetDatasetRealtimeRangeUpdateInput],
  "startTimeRange": "xyz789",
  "stopTimeRange": "xyz789"
}

WidgetDatasetRealtimeWhereInput

Description

Represents a Where input for: WidgetDatasetRealtime

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
aggregation - WidgetDatasetRealtimeAggregationWhereInput
chart_eq - WidgetDatasetRealtimeChartField is equal to given value
chart_exists - WidgetDatasetRealtimeChartField is set and exists
chart_in - [WidgetDatasetRealtimeChart]Given value includes field
chart_ne - WidgetDatasetRealtimeChartField is not equal to given value
chart_nin - [WidgetDatasetRealtimeChart]Given value does not includes field
filters_every - WidgetDatasetRealtimeFilterWhereInput
filters_exists - Boolean
filters_none - WidgetDatasetRealtimeFilterWhereInput
filters_some - WidgetDatasetRealtimeFilterWhereInput
ranges_every - WidgetDatasetRealtimeRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetRealtimeRangeWhereInput
ranges_some - WidgetDatasetRealtimeRangeWhereInput
startTimeRange_contains - StringField contains given value, case-insensitive
startTimeRange_ends_with - StringField ends with given value, case-insensitive
startTimeRange_eq - StringField is equal to given value
startTimeRange_exists - BooleanField is set and exists
startTimeRange_in - [String]Given value includes field
startTimeRange_ne - StringField is not equal to given value
startTimeRange_nin - [String]Given value does not includes field
startTimeRange_not_contains - StringField does not contains given value, case-insensitive
startTimeRange_not_ends_with - StringField does not end with given value, case-insensitive
startTimeRange_not_starts_with - StringField does not start with given value, case-insensitive
startTimeRange_starts_with - StringField starts with given value, case-insensitive
stopTimeRange_contains - StringField contains given value, case-insensitive
stopTimeRange_ends_with - StringField ends with given value, case-insensitive
stopTimeRange_eq - StringField is equal to given value
stopTimeRange_exists - BooleanField is set and exists
stopTimeRange_in - [String]Given value includes field
stopTimeRange_ne - StringField is not equal to given value
stopTimeRange_nin - [String]Given value does not includes field
stopTimeRange_not_contains - StringField does not contains given value, case-insensitive
stopTimeRange_not_ends_with - StringField does not end with given value, case-insensitive
stopTimeRange_not_starts_with - StringField does not start with given value, case-insensitive
stopTimeRange_starts_with - StringField starts with given value, case-insensitive
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "aggregation": WidgetDatasetRealtimeAggregationWhereInput,
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "filters_every": WidgetDatasetRealtimeFilterWhereInput,
  "filters_exists": true,
  "filters_none": WidgetDatasetRealtimeFilterWhereInput,
  "filters_some": WidgetDatasetRealtimeFilterWhereInput,
  "ranges_every": WidgetDatasetRealtimeRangeWhereInput,
  "ranges_exists": true,
  "ranges_none": WidgetDatasetRealtimeRangeWhereInput,
  "ranges_some": WidgetDatasetRealtimeRangeWhereInput,
  "startTimeRange_contains": "abc123",
  "startTimeRange_ends_with": "xyz789",
  "startTimeRange_eq": "xyz789",
  "startTimeRange_exists": false,
  "startTimeRange_in": ["abc123"],
  "startTimeRange_ne": "xyz789",
  "startTimeRange_nin": ["abc123"],
  "startTimeRange_not_contains": "abc123",
  "startTimeRange_not_ends_with": "abc123",
  "startTimeRange_not_starts_with": "xyz789",
  "startTimeRange_starts_with": "abc123",
  "stopTimeRange_contains": "xyz789",
  "stopTimeRange_ends_with": "abc123",
  "stopTimeRange_eq": "abc123",
  "stopTimeRange_exists": true,
  "stopTimeRange_in": ["abc123"],
  "stopTimeRange_ne": "xyz789",
  "stopTimeRange_nin": ["abc123"],
  "stopTimeRange_not_contains": "abc123",
  "stopTimeRange_not_ends_with": "abc123",
  "stopTimeRange_not_starts_with": "xyz789",
  "stopTimeRange_starts_with": "abc123"
}

WidgetDatasetResponsesAverageValue

Example
{
  "_id": 4,
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesAverageValueCustomFilter
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesAverageValueFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 123.45,
  "ranges": [WidgetDatasetResponsesAverageValueRange],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesAverageValueSort
}

WidgetDatasetResponsesAverageValueBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesAverageValueChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesAverageValueCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesAverageValueCustomFilterCreateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesAverageValueFilterCreateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesAverageValueRangeCreateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesAverageValueSortCreateInput
}

WidgetDatasetResponsesAverageValueCustomFilter

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesAverageValueCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesAverageValueCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesAverageValueCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesAverageValueCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesAverageValueCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesAverageValueCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesAverageValueCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesAverageValueCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesAverageValueCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesAverageValueCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesAverageValueCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesAverageValueCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesAverageValueCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesAverageValueCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesAverageValueCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesAverageValueCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesAverageValueCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesAverageValueCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesAverageValueCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesAverageValueCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesAverageValueCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesAverageValueCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesAverageValueCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesAverageValueCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesAverageValueCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesAverageValueCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesAverageValueCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesAverageValueCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesAverageValueCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesAverageValueCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesAverageValueCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesAverageValueCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesAverageValueCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesAverageValueCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesAverageValueCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesAverageValueCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesAverageValueCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesAverageValueCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesAverageValueCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesAverageValueCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesAverageValueCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesAverageValueCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesAverageValueCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesAverageValueCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesAverageValueCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesAverageValueCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesAverageValueCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesAverageValueCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesAverageValueFilter

Description

Represents a WidgetDatasetResponsesAverageValueFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesAverageValueFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesAverageValueFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesAverageValueFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": "4",
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": ["4"],
  "unit": Unit,
  "unitId": "4"
}

WidgetDatasetResponsesAverageValueFilterCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesAverageValueFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesAverageValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesAverageValueFilterDateCreateInput,
  "decimalDigits": 987,
  "elements": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": [4],
  "unit": "4"
}

WidgetDatasetResponsesAverageValueFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesAverageValueFilterDateCustom

Description

Represents a WidgetDatasetResponsesAverageValueFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesAverageValueFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesAverageValueFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesAverageValueFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesAverageValueFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesAverageValueFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesAverageValueFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesAverageValueFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesAverageValueFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesAverageValueFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesAverageValueFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesAverageValueFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesAverageValueFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesAverageValueFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesAverageValueFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesAverageValueFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesAverageValueFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesAverageValueFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesAverageValueFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesAverageValueFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesAverageValueFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesAverageValueFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesAverageValueFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesAverageValueFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesAverageValueFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesAverageValueFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesAverageValueFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesAverageValueFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesAverageValueFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesAverageValueFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesAverageValueFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesAverageValueFilterUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesAverageValueFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesAverageValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesAverageValueFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["abc123"],
  "sites": ["4"],
  "unit": "4"
}

WidgetDatasetResponsesAverageValueFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesAverageValueFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesAverageValueFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesAverageValueFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesAverageValueFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesAverageValueFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesAverageValueFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesAverageValueFilterDateWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [987],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": true,
  "elements_in": ["4"],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": ["4"],
  "input_eq": "4",
  "input_exists": false,
  "input_in": [4],
  "input_ne": "4",
  "input_nin": ["4"],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": false,
  "issueCatalog_in": [4],
  "issueCatalog_ne": 4,
  "issueCatalog_nin": [4],
  "multipleInputs_all": ["4"],
  "multipleInputs_eq": ["4"],
  "multipleInputs_exists": false,
  "multipleInputs_in": [4],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["abc123"],
  "responseOptions_eq": ["abc123"],
  "responseOptions_exists": true,
  "responseOptions_in": ["xyz789"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": ["4"],
  "sites_nin": ["4"],
  "unit_all": [4],
  "unit_eq": 4,
  "unit_exists": true,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": ["4"]
}

WidgetDatasetResponsesAverageValueMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesAverageValueRange

Description

Represents a WidgetDatasetResponsesAverageValueRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesAverageValueRangeCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetResponsesAverageValueRangeUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetResponsesAverageValueRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["xyz789"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "max_eq": 987,
  "max_exists": true,
  "max_gt": 123,
  "max_gte": 123,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesAverageValueSort

Description

Represents a WidgetDatasetResponsesAverageValueSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesAverageValueSortCreateInput

Description

Represents a WidgetDatasetResponsesAverageValueSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesAverageValueSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesAverageValueSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesAverageValueSortUpdateInput

Description

Represents a WidgetDatasetResponsesAverageValueSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesAverageValueSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValueSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesAverageValueSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesAverageValueSortOrderField is set and exists
order_in - [WidgetDatasetResponsesAverageValueSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesAverageValueSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesAverageValueSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesAverageValueSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesAverageValueSortTypeField is set and exists
type_in - [WidgetDatasetResponsesAverageValueSortType]Given value includes field
type_ne - WidgetDatasetResponsesAverageValueSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesAverageValueSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesAverageValueUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesAverageValueCustomFilterUpdateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesAverageValueFilterUpdateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 123.45,
  "ranges": [
    WidgetDatasetResponsesAverageValueRangeUpdateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesAverageValueSortUpdateInput
}

WidgetDatasetResponsesAverageValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesAverageValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesAverageValueByField is equal to given value
by_exists - WidgetDatasetResponsesAverageValueByField is set and exists
by_in - [WidgetDatasetResponsesAverageValueBy]Given value includes field
by_ne - WidgetDatasetResponsesAverageValueByField is not equal to given value
by_nin - [WidgetDatasetResponsesAverageValueBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesAverageValueChartField is equal to given value
chart_exists - WidgetDatasetResponsesAverageValueChartField is set and exists
chart_in - [WidgetDatasetResponsesAverageValueChart]Given value includes field
chart_ne - WidgetDatasetResponsesAverageValueChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesAverageValueChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesAverageValueCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesAverageValueCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesAverageValueCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesAverageValueFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesAverageValueMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesAverageValueMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesAverageValueMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesAverageValueMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesAverageValueMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesAverageValueRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesAverageValueRangeWhereInput
ranges_some - WidgetDatasetResponsesAverageValueRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesAverageValueSortWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesAverageValueCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetResponsesAverageValueCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesAverageValueCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 987,
  "decimalDigits_nin": [123],
  "filter": WidgetDatasetResponsesAverageValueFilterWhereInput,
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 123.45,
  "max_in": [123.45],
  "max_lt": 123.45,
  "max_lte": 123.45,
  "max_ne": 987.65,
  "max_nin": [987.65],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 987.65,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 987.65,
  "min_ne": 123.45,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetResponsesAverageValueRangeWhereInput,
  "ranges_exists": true,
  "ranges_none": WidgetDatasetResponsesAverageValueRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesAverageValueRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesAverageValueSortWhereInput
}

WidgetDatasetResponsesByRating

Description

Represents a WidgetDatasetResponsesByRating

Example
{
  "_id": 4,
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesByRatingCustomFilter
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesByRatingFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesByRatingRange],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesByRatingSort
}

WidgetDatasetResponsesByRatingBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesByRatingChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesByRatingCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesByRatingCustomFilterCreateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesByRatingFilterCreateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesByRatingRangeCreateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesByRatingSortCreateInput
}

WidgetDatasetResponsesByRatingCustomFilter

Description

Represents a WidgetDatasetResponsesByRatingCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesByRatingCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesByRatingCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesByRatingCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesByRatingCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesByRatingCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesByRatingCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesByRatingCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesByRatingCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesByRatingCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesByRatingCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesByRatingCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesByRatingCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesByRatingCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesByRatingCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesByRatingCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesByRatingCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesByRatingCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesByRatingCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesByRatingCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesByRatingCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesByRatingCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesByRatingCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesByRatingCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesByRatingCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesByRatingCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesByRatingCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesByRatingCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesByRatingCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesByRatingCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesByRatingCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesByRatingCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesByRatingCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesByRatingCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesByRatingCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesByRatingCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesByRatingCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesByRatingCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesByRatingCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesByRatingCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesByRatingCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesByRatingCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesByRatingCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesByRatingCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesByRatingCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesByRatingCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesByRatingCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesByRatingCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesByRatingCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesByRatingCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesByRatingCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesByRatingCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesByRatingCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesByRatingCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesByRatingCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesByRatingCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesByRatingCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesByRatingCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesByRatingFilter

Description

Represents a WidgetDatasetResponsesByRatingFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesByRatingFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesByRatingFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesByRatingFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": "4",
  "multipleInputs": ["4"],
  "responseOptions": ["abc123"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": "4"
}

WidgetDatasetResponsesByRatingFilterCreateInput

Description

Represents a WidgetDatasetResponsesByRatingFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesByRatingFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesByRatingFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesByRatingFilterDateCreateInput,
  "decimalDigits": 987,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["abc123"],
  "sites": ["4"],
  "unit": "4"
}

WidgetDatasetResponsesByRatingFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesByRatingFilterDateCustom

Description

Represents a WidgetDatasetResponsesByRatingFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesByRatingFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesByRatingFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesByRatingFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesByRatingFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesByRatingFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesByRatingFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesByRatingFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesByRatingFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesByRatingFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesByRatingFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesByRatingFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesByRatingFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesByRatingFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesByRatingFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesByRatingFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesByRatingFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesByRatingFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesByRatingFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesByRatingFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesByRatingFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesByRatingFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesByRatingFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesByRatingFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesByRatingFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesByRatingFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesByRatingFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesByRatingFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesByRatingFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesByRatingFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesByRatingFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesByRatingFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesByRatingFilterUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesByRatingFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesByRatingFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesByRatingFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": "4",
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": ["4"],
  "unit": 4
}

WidgetDatasetResponsesByRatingFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesByRatingFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesByRatingFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesByRatingFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesByRatingFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesByRatingFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesByRatingFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesByRatingFilterDateWhereInput,
  "decimalDigits_eq": 987,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [987],
  "elements_all": ["4"],
  "elements_eq": [4],
  "elements_exists": true,
  "elements_in": [4],
  "elements_nin": ["4"],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": [4],
  "input_eq": "4",
  "input_exists": false,
  "input_in": ["4"],
  "input_ne": 4,
  "input_nin": ["4"],
  "issueCatalog_all": [4],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": true,
  "issueCatalog_in": [4],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": ["4"],
  "multipleInputs_all": ["4"],
  "multipleInputs_eq": [4],
  "multipleInputs_exists": true,
  "multipleInputs_in": ["4"],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["xyz789"],
  "responseOptions_eq": ["abc123"],
  "responseOptions_exists": true,
  "responseOptions_in": ["abc123"],
  "responseOptions_nin": ["abc123"],
  "sites_all": ["4"],
  "sites_eq": [4],
  "sites_exists": false,
  "sites_in": [4],
  "sites_nin": ["4"],
  "unit_all": [4],
  "unit_eq": "4",
  "unit_exists": true,
  "unit_in": [4],
  "unit_ne": "4",
  "unit_nin": [4]
}

WidgetDatasetResponsesByRatingMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesByRatingRange

Description

Represents a WidgetDatasetResponsesByRatingRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetResponsesByRatingRangeCreateInput

Description

Represents a WidgetDatasetResponsesByRatingRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesByRatingRangeUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetResponsesByRatingRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "xyz789",
  "color_nin": ["xyz789"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123"
}

WidgetDatasetResponsesByRatingSort

Description

Represents a WidgetDatasetResponsesByRatingSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesByRatingSortCreateInput

Description

Represents a WidgetDatasetResponsesByRatingSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesByRatingSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesByRatingSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesByRatingSortUpdateInput

Description

Represents a WidgetDatasetResponsesByRatingSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesByRatingSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRatingSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesByRatingSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesByRatingSortOrderField is set and exists
order_in - [WidgetDatasetResponsesByRatingSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesByRatingSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesByRatingSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesByRatingSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesByRatingSortTypeField is set and exists
type_in - [WidgetDatasetResponsesByRatingSortType]Given value includes field
type_ne - WidgetDatasetResponsesByRatingSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesByRatingSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesByRatingUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesByRatingCustomFilterUpdateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesByRatingFilterUpdateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesByRatingRangeUpdateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesByRatingSortUpdateInput
}

WidgetDatasetResponsesByRatingWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesByRating

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesByRatingByField is equal to given value
by_exists - WidgetDatasetResponsesByRatingByField is set and exists
by_in - [WidgetDatasetResponsesByRatingBy]Given value includes field
by_ne - WidgetDatasetResponsesByRatingByField is not equal to given value
by_nin - [WidgetDatasetResponsesByRatingBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesByRatingChartField is equal to given value
chart_exists - WidgetDatasetResponsesByRatingChartField is set and exists
chart_in - [WidgetDatasetResponsesByRatingChart]Given value includes field
chart_ne - WidgetDatasetResponsesByRatingChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesByRatingChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesByRatingCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesByRatingCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesByRatingCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesByRatingFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesByRatingMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesByRatingMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesByRatingMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesByRatingMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesByRatingMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesByRatingRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesByRatingRangeWhereInput
ranges_some - WidgetDatasetResponsesByRatingRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesByRatingSortWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesByRatingCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetResponsesByRatingCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesByRatingCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "filter": WidgetDatasetResponsesByRatingFilterWhereInput,
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 987.65,
  "max_lte": 123.45,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 123.45,
  "min_exists": true,
  "min_gt": 987.65,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 123.45,
  "min_lte": 123.45,
  "min_ne": 123.45,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetResponsesByRatingRangeWhereInput,
  "ranges_exists": true,
  "ranges_none": WidgetDatasetResponsesByRatingRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesByRatingRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesByRatingSortWhereInput
}

WidgetDatasetResponsesHighestValue

Example
{
  "_id": "4",
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesHighestValueCustomFilter
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesHighestValueFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesHighestValueRange],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesHighestValueSort
}

WidgetDatasetResponsesHighestValueBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesHighestValueChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesHighestValueCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesHighestValueCustomFilterCreateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesHighestValueFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesHighestValueRangeCreateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesHighestValueSortCreateInput
}

WidgetDatasetResponsesHighestValueCustomFilter

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesHighestValueCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesHighestValueCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesHighestValueCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesHighestValueCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesHighestValueCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesHighestValueCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesHighestValueCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesHighestValueCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesHighestValueCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesHighestValueCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesHighestValueCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesHighestValueCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesHighestValueCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesHighestValueCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesHighestValueCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesHighestValueCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesHighestValueCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesHighestValueCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesHighestValueCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesHighestValueCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesHighestValueCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesHighestValueCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesHighestValueCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesHighestValueCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesHighestValueCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesHighestValueCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesHighestValueCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesHighestValueCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesHighestValueCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesHighestValueCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesHighestValueCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesHighestValueCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesHighestValueCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesHighestValueCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesHighestValueCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesHighestValueCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesHighestValueCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesHighestValueCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesHighestValueCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesHighestValueCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesHighestValueCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesHighestValueCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesHighestValueCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesHighestValueCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesHighestValueCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesHighestValueCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesHighestValueCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesHighestValueCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesHighestValueFilter

Description

Represents a WidgetDatasetResponsesHighestValueFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesHighestValueFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesHighestValueFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesHighestValueFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": IssueCatalog,
  "issueCatalogId": "4",
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": 4
}

WidgetDatasetResponsesHighestValueFilterCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesHighestValueFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesHighestValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesHighestValueFilterDateCreateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": ["4"],
  "unit": 4
}

WidgetDatasetResponsesHighestValueFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesHighestValueFilterDateCustom

Description

Represents a WidgetDatasetResponsesHighestValueFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesHighestValueFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesHighestValueFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesHighestValueFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesHighestValueFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesHighestValueFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesHighestValueFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesHighestValueFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesHighestValueFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesHighestValueFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesHighestValueFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesHighestValueFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesHighestValueFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesHighestValueFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesHighestValueFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesHighestValueFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesHighestValueFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesHighestValueFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesHighestValueFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesHighestValueFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesHighestValueFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesHighestValueFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesHighestValueFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesHighestValueFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesHighestValueFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesHighestValueFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesHighestValueFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesHighestValueFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesHighestValueFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesHighestValueFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesHighestValueFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesHighestValueFilterUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesHighestValueFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesHighestValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesHighestValueFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": ["4"],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": "4",
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": ["4"],
  "unit": "4"
}

WidgetDatasetResponsesHighestValueFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesHighestValueFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesHighestValueFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesHighestValueFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesHighestValueFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesHighestValueFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesHighestValueFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesHighestValueFilterDateWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 987,
  "decimalDigits_nin": [123],
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": true,
  "elements_in": ["4"],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": [4],
  "input_eq": 4,
  "input_exists": true,
  "input_in": ["4"],
  "input_ne": 4,
  "input_nin": [4],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": "4",
  "issueCatalog_exists": true,
  "issueCatalog_in": ["4"],
  "issueCatalog_ne": 4,
  "issueCatalog_nin": [4],
  "multipleInputs_all": ["4"],
  "multipleInputs_eq": ["4"],
  "multipleInputs_exists": true,
  "multipleInputs_in": [4],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["xyz789"],
  "responseOptions_eq": ["abc123"],
  "responseOptions_exists": true,
  "responseOptions_in": ["xyz789"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": ["4"],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": [4],
  "sites_nin": [4],
  "unit_all": [4],
  "unit_eq": 4,
  "unit_exists": true,
  "unit_in": [4],
  "unit_ne": "4",
  "unit_nin": [4]
}

WidgetDatasetResponsesHighestValueMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesHighestValueRange

Description

Represents a WidgetDatasetResponsesHighestValueRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "abc123"
}

WidgetDatasetResponsesHighestValueRangeCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetResponsesHighestValueRangeUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesHighestValueRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesHighestValueSort

Description

Represents a WidgetDatasetResponsesHighestValueSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesHighestValueSortCreateInput

Description

Represents a WidgetDatasetResponsesHighestValueSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesHighestValueSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesHighestValueSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesHighestValueSortUpdateInput

Description

Represents a WidgetDatasetResponsesHighestValueSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesHighestValueSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValueSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesHighestValueSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesHighestValueSortOrderField is set and exists
order_in - [WidgetDatasetResponsesHighestValueSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesHighestValueSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesHighestValueSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesHighestValueSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesHighestValueSortTypeField is set and exists
type_in - [WidgetDatasetResponsesHighestValueSortType]Given value includes field
type_ne - WidgetDatasetResponsesHighestValueSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesHighestValueSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesHighestValueUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesHighestValueCustomFilterUpdateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesHighestValueFilterUpdateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 123.45,
  "ranges": [
    WidgetDatasetResponsesHighestValueRangeUpdateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesHighestValueSortUpdateInput
}

WidgetDatasetResponsesHighestValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesHighestValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesHighestValueByField is equal to given value
by_exists - WidgetDatasetResponsesHighestValueByField is set and exists
by_in - [WidgetDatasetResponsesHighestValueBy]Given value includes field
by_ne - WidgetDatasetResponsesHighestValueByField is not equal to given value
by_nin - [WidgetDatasetResponsesHighestValueBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesHighestValueChartField is equal to given value
chart_exists - WidgetDatasetResponsesHighestValueChartField is set and exists
chart_in - [WidgetDatasetResponsesHighestValueChart]Given value includes field
chart_ne - WidgetDatasetResponsesHighestValueChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesHighestValueChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesHighestValueCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesHighestValueCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesHighestValueCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesHighestValueFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesHighestValueMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesHighestValueMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesHighestValueMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesHighestValueMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesHighestValueMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesHighestValueRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesHighestValueRangeWhereInput
ranges_some - WidgetDatasetResponsesHighestValueRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesHighestValueSortWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesHighestValueCustomFilterWhereInput,
  "customFilters_exists": true,
  "customFilters_none": WidgetDatasetResponsesHighestValueCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesHighestValueCustomFilterWhereInput,
  "decimalDigits_eq": 987,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [987],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 987,
  "decimalDigits_nin": [987],
  "filter": WidgetDatasetResponsesHighestValueFilterWhereInput,
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 123.45,
  "max_in": [987.65],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 987.65,
  "max_nin": [987.65],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 987.65,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 987.65,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetResponsesHighestValueRangeWhereInput,
  "ranges_exists": true,
  "ranges_none": WidgetDatasetResponsesHighestValueRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesHighestValueRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": false,
  "sort": WidgetDatasetResponsesHighestValueSortWhereInput
}

WidgetDatasetResponsesLastValue

Description

Represents a WidgetDatasetResponsesLastValue

Example
{
  "_id": "4",
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLastValueCustomFilter
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesLastValueFilter,
  "max": 987.65,
  "measurement": "average",
  "min": 123.45,
  "ranges": [WidgetDatasetResponsesLastValueRange],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesLastValueSort
}

WidgetDatasetResponsesLastValueBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesLastValueChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesLastValueCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLastValueCustomFilterCreateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesLastValueFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesLastValueRangeCreateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesLastValueSortCreateInput
}

WidgetDatasetResponsesLastValueCustomFilter

Description

Represents a WidgetDatasetResponsesLastValueCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLastValueCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLastValueCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesLastValueCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesLastValueCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesLastValueCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLastValueCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLastValueCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLastValueCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesLastValueCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesLastValueCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesLastValueCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLastValueCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesLastValueCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesLastValueCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesLastValueCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesLastValueCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesLastValueCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesLastValueCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesLastValueCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesLastValueCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesLastValueCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesLastValueCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesLastValueCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesLastValueCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesLastValueCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesLastValueCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesLastValueCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesLastValueCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesLastValueCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesLastValueCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesLastValueCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesLastValueCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesLastValueCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesLastValueCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLastValueCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesLastValueCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesLastValueCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesLastValueCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLastValueCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLastValueCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesLastValueCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesLastValueCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesLastValueCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesLastValueCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesLastValueCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesLastValueCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesLastValueCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesLastValueCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesLastValueCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesLastValueCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesLastValueCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesLastValueCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesLastValueCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesLastValueCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesLastValueCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLastValueCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesLastValueCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesLastValueFilter

Description

Represents a WidgetDatasetResponsesLastValueFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesLastValueFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesLastValueFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesLastValueFilterDate,
  "decimalDigits": 987,
  "elements": [Element],
  "elementsIds": ["4"],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": IssueCatalog,
  "issueCatalogId": "4",
  "multipleInputs": ["4"],
  "responseOptions": ["abc123"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": "4"
}

WidgetDatasetResponsesLastValueFilterCreateInput

Description

Represents a WidgetDatasetResponsesLastValueFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesLastValueFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesLastValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesLastValueFilterDateCreateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["abc123"],
  "sites": ["4"],
  "unit": "4"
}

WidgetDatasetResponsesLastValueFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLastValueFilterDateCustom

Description

Represents a WidgetDatasetResponsesLastValueFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesLastValueFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLastValueFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesLastValueFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLastValueFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesLastValueFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesLastValueFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLastValueFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLastValueFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesLastValueFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesLastValueFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesLastValueFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesLastValueFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesLastValueFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesLastValueFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesLastValueFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesLastValueFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesLastValueFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesLastValueFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesLastValueFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesLastValueFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesLastValueFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesLastValueFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesLastValueFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesLastValueFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesLastValueFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesLastValueFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesLastValueFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesLastValueFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLastValueFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesLastValueFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesLastValueFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesLastValueFilterUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesLastValueFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesLastValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesLastValueFilterDateUpdateInput,
  "decimalDigits": 987,
  "elements": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["abc123"],
  "sites": [4],
  "unit": "4"
}

WidgetDatasetResponsesLastValueFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesLastValueFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesLastValueFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesLastValueFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesLastValueFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesLastValueFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesLastValueFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesLastValueFilterDateWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [987],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [987],
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": false,
  "elements_in": ["4"],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": [4],
  "input_eq": "4",
  "input_exists": false,
  "input_in": [4],
  "input_ne": "4",
  "input_nin": ["4"],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": true,
  "issueCatalog_in": [4],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": ["4"],
  "multipleInputs_all": ["4"],
  "multipleInputs_eq": [4],
  "multipleInputs_exists": true,
  "multipleInputs_in": ["4"],
  "multipleInputs_nin": ["4"],
  "responseOptions_all": ["abc123"],
  "responseOptions_eq": ["xyz789"],
  "responseOptions_exists": false,
  "responseOptions_in": ["abc123"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": false,
  "sites_in": ["4"],
  "sites_nin": [4],
  "unit_all": [4],
  "unit_eq": 4,
  "unit_exists": false,
  "unit_in": [4],
  "unit_ne": 4,
  "unit_nin": [4]
}

WidgetDatasetResponsesLastValueMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesLastValueRange

Description

Represents a WidgetDatasetResponsesLastValueRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesLastValueRangeCreateInput

Description

Represents a WidgetDatasetResponsesLastValueRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesLastValueRangeUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesLastValueRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "abc123",
  "color_exists": false,
  "color_in": ["abc123"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "xyz789",
  "max_eq": 987,
  "max_exists": true,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 987,
  "max_nin": [987],
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "xyz789",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesLastValueSort

Description

Represents a WidgetDatasetResponsesLastValueSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLastValueSortCreateInput

Description

Represents a WidgetDatasetResponsesLastValueSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLastValueSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesLastValueSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesLastValueSortUpdateInput

Description

Represents a WidgetDatasetResponsesLastValueSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLastValueSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValueSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesLastValueSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesLastValueSortOrderField is set and exists
order_in - [WidgetDatasetResponsesLastValueSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesLastValueSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesLastValueSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesLastValueSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesLastValueSortTypeField is set and exists
type_in - [WidgetDatasetResponsesLastValueSortType]Given value includes field
type_ne - WidgetDatasetResponsesLastValueSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLastValueSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesLastValueUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLastValueCustomFilterUpdateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesLastValueFilterUpdateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesLastValueRangeUpdateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesLastValueSortUpdateInput
}

WidgetDatasetResponsesLastValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLastValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesLastValueByField is equal to given value
by_exists - WidgetDatasetResponsesLastValueByField is set and exists
by_in - [WidgetDatasetResponsesLastValueBy]Given value includes field
by_ne - WidgetDatasetResponsesLastValueByField is not equal to given value
by_nin - [WidgetDatasetResponsesLastValueBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesLastValueChartField is equal to given value
chart_exists - WidgetDatasetResponsesLastValueChartField is set and exists
chart_in - [WidgetDatasetResponsesLastValueChart]Given value includes field
chart_ne - WidgetDatasetResponsesLastValueChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesLastValueChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesLastValueCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesLastValueCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesLastValueCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesLastValueFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesLastValueMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesLastValueMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesLastValueMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesLastValueMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesLastValueMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesLastValueRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesLastValueRangeWhereInput
ranges_some - WidgetDatasetResponsesLastValueRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesLastValueSortWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesLastValueCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetResponsesLastValueCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesLastValueCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "filter": WidgetDatasetResponsesLastValueFilterWhereInput,
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 123.45,
  "max_lte": 123.45,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 987.65,
  "min_exists": true,
  "min_gt": 987.65,
  "min_gte": 123.45,
  "min_in": [987.65],
  "min_lt": 123.45,
  "min_lte": 987.65,
  "min_ne": 123.45,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetResponsesLastValueRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetResponsesLastValueRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesLastValueRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesLastValueSortWhereInput
}

WidgetDatasetResponsesLowestValue

Description

Represents a WidgetDatasetResponsesLowestValue

Example
{
  "_id": 4,
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLowestValueCustomFilter
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesLowestValueFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesLowestValueRange],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesLowestValueSort
}

WidgetDatasetResponsesLowestValueBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesLowestValueChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesLowestValueCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLowestValueCustomFilterCreateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesLowestValueFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 123.45,
  "ranges": [
    WidgetDatasetResponsesLowestValueRangeCreateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesLowestValueSortCreateInput
}

WidgetDatasetResponsesLowestValueCustomFilter

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLowestValueCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLowestValueCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesLowestValueCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesLowestValueCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLowestValueCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLowestValueCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLowestValueCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLowestValueCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesLowestValueCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesLowestValueCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesLowestValueCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesLowestValueCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesLowestValueCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesLowestValueCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesLowestValueCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesLowestValueCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesLowestValueCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesLowestValueCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesLowestValueCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesLowestValueCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesLowestValueCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesLowestValueCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesLowestValueCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesLowestValueCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesLowestValueCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLowestValueCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesLowestValueCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesLowestValueCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesLowestValueCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesLowestValueCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesLowestValueCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesLowestValueCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesLowestValueCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesLowestValueCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesLowestValueCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesLowestValueCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesLowestValueCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesLowestValueCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesLowestValueCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesLowestValueCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesLowestValueCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesLowestValueCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesLowestValueCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesLowestValueCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesLowestValueCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesLowestValueCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLowestValueCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesLowestValueCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesLowestValueFilter

Description

Represents a WidgetDatasetResponsesLowestValueFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesLowestValueFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesLowestValueFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesLowestValueFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": [4],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": "4"
}

WidgetDatasetResponsesLowestValueFilterCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesLowestValueFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesLowestValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesLowestValueFilterDateCreateInput,
  "decimalDigits": 987,
  "elements": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": [4],
  "unit": 4
}

WidgetDatasetResponsesLowestValueFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLowestValueFilterDateCustom

Description

Represents a WidgetDatasetResponsesLowestValueFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesLowestValueFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesLowestValueFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesLowestValueFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesLowestValueFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesLowestValueFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesLowestValueFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesLowestValueFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesLowestValueFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesLowestValueFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesLowestValueFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesLowestValueFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesLowestValueFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesLowestValueFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesLowestValueFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesLowestValueFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesLowestValueFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesLowestValueFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesLowestValueFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesLowestValueFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesLowestValueFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesLowestValueFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesLowestValueFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesLowestValueFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesLowestValueFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesLowestValueFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesLowestValueFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesLowestValueFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLowestValueFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesLowestValueFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesLowestValueFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesLowestValueFilterUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesLowestValueFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesLowestValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesLowestValueFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": ["4"],
  "unit": 4
}

WidgetDatasetResponsesLowestValueFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesLowestValueFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesLowestValueFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesLowestValueFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesLowestValueFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesLowestValueFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesLowestValueFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesLowestValueFilterDateWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 987,
  "decimalDigits_nin": [987],
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": false,
  "elements_in": [4],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": ["4"],
  "input_eq": "4",
  "input_exists": true,
  "input_in": ["4"],
  "input_ne": 4,
  "input_nin": ["4"],
  "issueCatalog_all": [4],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": false,
  "issueCatalog_in": ["4"],
  "issueCatalog_ne": 4,
  "issueCatalog_nin": ["4"],
  "multipleInputs_all": [4],
  "multipleInputs_eq": ["4"],
  "multipleInputs_exists": false,
  "multipleInputs_in": [4],
  "multipleInputs_nin": ["4"],
  "responseOptions_all": ["abc123"],
  "responseOptions_eq": ["xyz789"],
  "responseOptions_exists": true,
  "responseOptions_in": ["abc123"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": true,
  "sites_in": [4],
  "sites_nin": [4],
  "unit_all": [4],
  "unit_eq": "4",
  "unit_exists": false,
  "unit_in": [4],
  "unit_ne": "4",
  "unit_nin": [4]
}

WidgetDatasetResponsesLowestValueMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesLowestValueRange

Description

Represents a WidgetDatasetResponsesLowestValueRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesLowestValueRangeCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesLowestValueRangeUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesLowestValueRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "abc123",
  "color_ends_with": "xyz789",
  "color_eq": "xyz789",
  "color_exists": true,
  "color_in": ["xyz789"],
  "color_ne": "xyz789",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 123,
  "max_ne": 123,
  "max_nin": [123],
  "name_contains": "xyz789",
  "name_ends_with": "abc123",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["xyz789"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "abc123"
}

WidgetDatasetResponsesLowestValueSort

Description

Represents a WidgetDatasetResponsesLowestValueSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLowestValueSortCreateInput

Description

Represents a WidgetDatasetResponsesLowestValueSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLowestValueSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesLowestValueSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesLowestValueSortUpdateInput

Description

Represents a WidgetDatasetResponsesLowestValueSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesLowestValueSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValueSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesLowestValueSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesLowestValueSortOrderField is set and exists
order_in - [WidgetDatasetResponsesLowestValueSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesLowestValueSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesLowestValueSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesLowestValueSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesLowestValueSortTypeField is set and exists
type_in - [WidgetDatasetResponsesLowestValueSortType]Given value includes field
type_ne - WidgetDatasetResponsesLowestValueSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesLowestValueSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesLowestValueUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesLowestValueCustomFilterUpdateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesLowestValueFilterUpdateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesLowestValueRangeUpdateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesLowestValueSortUpdateInput
}

WidgetDatasetResponsesLowestValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesLowestValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesLowestValueByField is equal to given value
by_exists - WidgetDatasetResponsesLowestValueByField is set and exists
by_in - [WidgetDatasetResponsesLowestValueBy]Given value includes field
by_ne - WidgetDatasetResponsesLowestValueByField is not equal to given value
by_nin - [WidgetDatasetResponsesLowestValueBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesLowestValueChartField is equal to given value
chart_exists - WidgetDatasetResponsesLowestValueChartField is set and exists
chart_in - [WidgetDatasetResponsesLowestValueChart]Given value includes field
chart_ne - WidgetDatasetResponsesLowestValueChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesLowestValueChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesLowestValueCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesLowestValueCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesLowestValueCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesLowestValueFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesLowestValueMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesLowestValueMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesLowestValueMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesLowestValueMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesLowestValueMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesLowestValueRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesLowestValueRangeWhereInput
ranges_some - WidgetDatasetResponsesLowestValueRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesLowestValueSortWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesLowestValueCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetResponsesLowestValueCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesLowestValueCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [987],
  "filter": WidgetDatasetResponsesLowestValueFilterWhereInput,
  "max_eq": 987.65,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 987.65,
  "max_in": [123.45],
  "max_lt": 123.45,
  "max_lte": 987.65,
  "max_ne": 123.45,
  "max_nin": [987.65],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 123.45,
  "min_exists": false,
  "min_gt": 123.45,
  "min_gte": 123.45,
  "min_in": [123.45],
  "min_lt": 987.65,
  "min_lte": 987.65,
  "min_ne": 123.45,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetResponsesLowestValueRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetResponsesLowestValueRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesLowestValueRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesLowestValueSortWhereInput
}

WidgetDatasetResponsesSum

Description

Represents a WidgetDatasetResponsesSum

Example
{
  "_id": "4",
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesSumCustomFilter
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesSumFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesSumRange],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesSumSort
}

WidgetDatasetResponsesSumBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesSumChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesSumCreateInput

Description

Represents a WidgetDatasetResponsesSumCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesSumCustomFilterCreateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesSumFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesSumRangeCreateInput],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesSumSortCreateInput
}

WidgetDatasetResponsesSumCustomFilter

Description

Represents a WidgetDatasetResponsesSumCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesSumCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesSumCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesSumCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesSumCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesSumCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesSumCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesSumCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetResponsesSumCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesSumCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesSumCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesSumCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": "4",
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesSumCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesSumCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesSumCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesSumCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesSumCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesSumCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesSumCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesSumCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesSumCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesSumCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesSumCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesSumCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesSumCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesSumCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesSumCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesSumCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesSumCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesSumCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesSumCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesSumCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesSumCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesSumCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesSumCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesSumCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesSumCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesSumCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesSumCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesSumCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesSumCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesSumCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesSumCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesSumCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesSumCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesSumCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesSumCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesSumCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesSumCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesSumCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesSumCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesSumCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesSumCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesSumCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesSumCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesSumCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesSumCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesSumCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesSumCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesSumCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesSumCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesSumCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesSumCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesSumFilter

Description

Represents a WidgetDatasetResponsesSumFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesSumFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesSumFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesSumFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": ["4"],
  "unit": Unit,
  "unitId": 4
}

WidgetDatasetResponsesSumFilterCreateInput

Description

Represents a WidgetDatasetResponsesSumFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesSumFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesSumFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesSumFilterDateCreateInput,
  "decimalDigits": 123,
  "elements": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": "4",
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": [4],
  "unit": 4
}

WidgetDatasetResponsesSumFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesSumFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesSumFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesSumFilterDateCustom

Description

Represents a WidgetDatasetResponsesSumFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesSumFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesSumFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesSumFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesSumFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesSumFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesSumFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesSumFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesSumFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesSumFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesSumFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesSumFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesSumFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesSumFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesSumFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesSumFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesSumFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesSumFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesSumFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesSumFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesSumFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesSumFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesSumFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesSumFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesSumFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesSumFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesSumFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesSumFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesSumFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesSumFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesSumFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesSumFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesSumFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesSumFilterUpdateInput

Description

Represents a WidgetDatasetResponsesSumFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesSumFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesSumFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesSumFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": "4",
  "multipleInputs": ["4"],
  "responseOptions": ["abc123"],
  "sites": [4],
  "unit": "4"
}

WidgetDatasetResponsesSumFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesSumFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesSumFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesSumFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesSumFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesSumFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesSumFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesSumFilterDateWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [987],
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": true,
  "elements_in": ["4"],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": ["4"],
  "input_eq": 4,
  "input_exists": true,
  "input_in": [4],
  "input_ne": "4",
  "input_nin": ["4"],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": "4",
  "issueCatalog_exists": true,
  "issueCatalog_in": [4],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": ["4"],
  "multipleInputs_all": [4],
  "multipleInputs_eq": ["4"],
  "multipleInputs_exists": true,
  "multipleInputs_in": [4],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["xyz789"],
  "responseOptions_eq": ["abc123"],
  "responseOptions_exists": true,
  "responseOptions_in": ["abc123"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": [4],
  "sites_eq": [4],
  "sites_exists": false,
  "sites_in": ["4"],
  "sites_nin": [4],
  "unit_all": ["4"],
  "unit_eq": "4",
  "unit_exists": false,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": [4]
}

WidgetDatasetResponsesSumMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesSumRange

Description

Represents a WidgetDatasetResponsesSumRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesSumRangeCreateInput

Description

Represents a WidgetDatasetResponsesSumRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesSumRangeUpdateInput

Description

Represents a WidgetDatasetResponsesSumRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "abc123",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetResponsesSumRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "xyz789",
  "color_exists": true,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "xyz789",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 987,
  "max_in": [123],
  "max_lt": 987,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [123],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": false,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "abc123",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesSumSort

Description

Represents a WidgetDatasetResponsesSumSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesSumSortCreateInput

Description

Represents a WidgetDatasetResponsesSumSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesSumSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesSumSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesSumSortUpdateInput

Description

Represents a WidgetDatasetResponsesSumSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesSumSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSumSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesSumSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesSumSortOrderField is set and exists
order_in - [WidgetDatasetResponsesSumSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesSumSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesSumSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesSumSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesSumSortTypeField is set and exists
type_in - [WidgetDatasetResponsesSumSortType]Given value includes field
type_ne - WidgetDatasetResponsesSumSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesSumSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesSumUpdateInput

Description

Represents a WidgetDatasetResponsesSumUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesSumCustomFilterUpdateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesSumFilterUpdateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 123.45,
  "ranges": [WidgetDatasetResponsesSumRangeUpdateInput],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesSumSortUpdateInput
}

WidgetDatasetResponsesSumWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesSum

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesSumByField is equal to given value
by_exists - WidgetDatasetResponsesSumByField is set and exists
by_in - [WidgetDatasetResponsesSumBy]Given value includes field
by_ne - WidgetDatasetResponsesSumByField is not equal to given value
by_nin - [WidgetDatasetResponsesSumBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesSumChartField is equal to given value
chart_exists - WidgetDatasetResponsesSumChartField is set and exists
chart_in - [WidgetDatasetResponsesSumChart]Given value includes field
chart_ne - WidgetDatasetResponsesSumChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesSumChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesSumCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesSumCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesSumCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesSumFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesSumMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesSumMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesSumMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesSumMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesSumMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesSumRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesSumRangeWhereInput
ranges_some - WidgetDatasetResponsesSumRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesSumSortWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesSumCustomFilterWhereInput,
  "customFilters_exists": false,
  "customFilters_none": WidgetDatasetResponsesSumCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesSumCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "filter": WidgetDatasetResponsesSumFilterWhereInput,
  "max_eq": 123.45,
  "max_exists": true,
  "max_gt": 987.65,
  "max_gte": 123.45,
  "max_in": [123.45],
  "max_lt": 987.65,
  "max_lte": 987.65,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 987.65,
  "min_exists": false,
  "min_gt": 987.65,
  "min_gte": 987.65,
  "min_in": [123.45],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 987.65,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetResponsesSumRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetResponsesSumRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesSumRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": false,
  "sort": WidgetDatasetResponsesSumSortWhereInput
}

WidgetDatasetResponsesTotal

Description

Represents a WidgetDatasetResponsesTotal

Example
{
  "_id": 4,
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalCustomFilter
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesTotalFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 123.45,
  "ranges": [WidgetDatasetResponsesTotalRange],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesTotalSort
}

WidgetDatasetResponsesTotalBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesTotalChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesTotalCreateInput

Description

Represents a WidgetDatasetResponsesTotalCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalCustomFilterCreateInput
  ],
  "decimalDigits": 987,
  "filter": WidgetDatasetResponsesTotalFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesTotalRangeCreateInput],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesTotalSortCreateInput
}

WidgetDatasetResponsesTotalCustomFilter

Description

Represents a WidgetDatasetResponsesTotalCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesTotalCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesTotalCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesTotalCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalCustomFilterDateValue

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesTotalCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesTotalCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesTotalCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesTotalCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": false,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesTotalCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesTotalCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesTotalCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesTotalCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesTotalCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesTotalCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesTotalCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesTotalCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesTotalCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesTotalCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesTotalCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesTotalCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesTotalCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesTotalCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesTotalCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesTotalCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesTotalCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesTotalCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesTotalCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesTotalCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesTotalCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesTotalCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesTotalCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesTotalCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesTotalCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesTotalCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesTotalCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesTotalCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesTotalCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesTotalCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesTotalCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesTotalCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesTotalCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesTotalCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesTotalCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesTotalCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesTotalCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesTotalCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesTotalFilter

Description

Represents a WidgetDatasetResponsesTotalFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesTotalFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesTotalFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesTotalFilterDate,
  "decimalDigits": 987,
  "elements": [Element],
  "elementsIds": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "multipleInputs": [4],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": 4
}

WidgetDatasetResponsesTotalFilterCreateInput

Description

Represents a WidgetDatasetResponsesTotalFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesTotalFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesTotalFilterDateCreateInput,
  "decimalDigits": 123,
  "elements": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": "4",
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": ["4"],
  "unit": "4"
}

WidgetDatasetResponsesTotalFilterDate

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetResponsesTotalFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalFilterDateCustom

Description

Represents a WidgetDatasetResponsesTotalFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesTotalFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesTotalFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesTotalFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesTotalFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesTotalFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesTotalFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesTotalFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesTotalFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesTotalFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesTotalFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesTotalFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesTotalFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesTotalFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesTotalFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesTotalFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesTotalFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesTotalFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesTotalFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesTotalFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesTotalFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesTotalFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesTotalFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalFilterDateType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesTotalFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesTotalFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesTotalFilterUpdateInput

Description

Represents a WidgetDatasetResponsesTotalFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesTotalFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesTotalFilterDateUpdateInput,
  "decimalDigits": 987,
  "elements": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": "4",
  "multipleInputs": [4],
  "responseOptions": ["abc123"],
  "sites": ["4"],
  "unit": 4
}

WidgetDatasetResponsesTotalFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesTotalFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesTotalFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesTotalFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesTotalFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesTotalFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesTotalFilterDateWhereInput,
  "decimalDigits_eq": 987,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [987],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 987,
  "decimalDigits_nin": [123],
  "elements_all": ["4"],
  "elements_eq": ["4"],
  "elements_exists": true,
  "elements_in": ["4"],
  "elements_nin": [4],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": [4],
  "input_eq": "4",
  "input_exists": false,
  "input_in": [4],
  "input_ne": "4",
  "input_nin": [4],
  "issueCatalog_all": ["4"],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": true,
  "issueCatalog_in": [4],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": [4],
  "multipleInputs_all": ["4"],
  "multipleInputs_eq": [4],
  "multipleInputs_exists": false,
  "multipleInputs_in": ["4"],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["xyz789"],
  "responseOptions_eq": ["abc123"],
  "responseOptions_exists": true,
  "responseOptions_in": ["xyz789"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": ["4"],
  "sites_eq": ["4"],
  "sites_exists": false,
  "sites_in": [4],
  "sites_nin": ["4"],
  "unit_all": [4],
  "unit_eq": "4",
  "unit_exists": false,
  "unit_in": ["4"],
  "unit_ne": 4,
  "unit_nin": [4]
}

WidgetDatasetResponsesTotalMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesTotalRange

Description

Represents a WidgetDatasetResponsesTotalRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "xyz789"
}

WidgetDatasetResponsesTotalRangeCreateInput

Description

Represents a WidgetDatasetResponsesTotalRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesTotalRangeUpdateInput

Description

Represents a WidgetDatasetResponsesTotalRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesTotalRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "xyz789",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["abc123"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "abc123",
  "color_not_starts_with": "abc123",
  "color_starts_with": "abc123",
  "max_eq": 123,
  "max_exists": true,
  "max_gt": 987,
  "max_gte": 987,
  "max_in": [987],
  "max_lt": 987,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [987],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "xyz789",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["xyz789"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "xyz789",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesTotalSort

Description

Represents a WidgetDatasetResponsesTotalSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalSortCreateInput

Description

Represents a WidgetDatasetResponsesTotalSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesTotalSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesTotalSortUpdateInput

Description

Represents a WidgetDatasetResponsesTotalSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesTotalSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesTotalSortOrderField is set and exists
order_in - [WidgetDatasetResponsesTotalSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesTotalSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesTotalSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalSortTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalSortType]Given value includes field
type_ne - WidgetDatasetResponsesTotalSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesTotalUpdateInput

Description

Represents a WidgetDatasetResponsesTotalUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalCustomFilterUpdateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesTotalFilterUpdateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [WidgetDatasetResponsesTotalRangeUpdateInput],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesTotalSortUpdateInput
}

WidgetDatasetResponsesTotalValue

Description

Represents a WidgetDatasetResponsesTotalValue

Example
{
  "_id": "4",
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalValueCustomFilter
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesTotalValueFilter,
  "max": 123.45,
  "measurement": "average",
  "min": 123.45,
  "ranges": [WidgetDatasetResponsesTotalValueRange],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesTotalValueSort
}

WidgetDatasetResponsesTotalValueBy

Values
Enum ValueDescription

response

Example
"response"

WidgetDatasetResponsesTotalValueChart

Values
Enum ValueDescription

bar

gauge

line

pie

table

value

Example
"bar"

WidgetDatasetResponsesTotalValueCreateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalValueCustomFilterCreateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesTotalValueFilterCreateInput,
  "max": 987.65,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesTotalValueRangeCreateInput
  ],
  "showAsPercentage": true,
  "sort": WidgetDatasetResponsesTotalValueSortCreateInput
}

WidgetDatasetResponsesTotalValueCustomFilter

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilter

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalValueCustomFilterDateValue,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalValueCustomFilterCondition

Values
Enum ValueDescription

equals

notEquals

Example
"equals"

WidgetDatasetResponsesTotalValueCustomFilterContext

Values
Enum ValueDescription

actions

issues

responses

Example
"actions"

WidgetDatasetResponsesTotalValueCustomFilterCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilterCreateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalValueCustomFilterDateValueCreateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalValueCustomFilterDateValue

Example
{
  "_id": 4,
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueCustomFilterDateValueCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalValueCustomFilterDateValueCustom

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilterDateValueCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueCustomFilterDateValueCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": true,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalValueCustomFilterDateValueToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesTotalValueCustomFilterDateValueType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesTotalValueCustomFilterDateValueUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueCustomFilterDateValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueCustomFilterDateValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrentField is equal to given value
current_exists - WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrentField is set and exists
current_in - [WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrent]Given value includes field
current_ne - WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesTotalValueCustomFilterDateValueCurrent]Given value does not includes field
custom - WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomWhereInput
last_eq - WidgetDatasetResponsesTotalValueCustomFilterDateValueLastField is equal to given value
last_exists - WidgetDatasetResponsesTotalValueCustomFilterDateValueLastField is set and exists
last_in - [WidgetDatasetResponsesTotalValueCustomFilterDateValueLast]Given value includes field
last_ne - WidgetDatasetResponsesTotalValueCustomFilterDateValueLastField is not equal to given value
last_nin - [WidgetDatasetResponsesTotalValueCustomFilterDateValueLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesTotalValueCustomFilterDateValueToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesTotalValueCustomFilterDateValueToDateField is set and exists
toDate_in - [WidgetDatasetResponsesTotalValueCustomFilterDateValueToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesTotalValueCustomFilterDateValueToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesTotalValueCustomFilterDateValueToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalValueCustomFilterDateValueTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalValueCustomFilterDateValueTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalValueCustomFilterDateValueType]Given value includes field
type_ne - WidgetDatasetResponsesTotalValueCustomFilterDateValueTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalValueCustomFilterDateValueType]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": [4],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesTotalValueCustomFilterDateValueCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesTotalValueCustomFilterType

Values
Enum ValueDescription

accountLabels

assignedTo

creationDate

dateUpdated

executedBy

finishDate

issue

labels

siteElement

startdate

status

timeRange

workOrderStatus

Example
"accountLabels"

WidgetDatasetResponsesTotalValueCustomFilterUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueCustomFilterUpdateInput

Example
{
  "condition": "equals",
  "context": "actions",
  "dateValue": WidgetDatasetResponsesTotalValueCustomFilterDateValueUpdateInput,
  "type": "accountLabels",
  "values": {}
}

WidgetDatasetResponsesTotalValueCustomFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueCustomFilter

Fields
Input FieldDescription
condition_eq - WidgetDatasetResponsesTotalValueCustomFilterConditionField is equal to given value
condition_exists - WidgetDatasetResponsesTotalValueCustomFilterConditionField is set and exists
condition_in - [WidgetDatasetResponsesTotalValueCustomFilterCondition]Given value includes field
condition_ne - WidgetDatasetResponsesTotalValueCustomFilterConditionField is not equal to given value
condition_nin - [WidgetDatasetResponsesTotalValueCustomFilterCondition]Given value does not includes field
context_eq - WidgetDatasetResponsesTotalValueCustomFilterContextField is equal to given value
context_exists - WidgetDatasetResponsesTotalValueCustomFilterContextField is set and exists
context_in - [WidgetDatasetResponsesTotalValueCustomFilterContext]Given value includes field
context_ne - WidgetDatasetResponsesTotalValueCustomFilterContextField is not equal to given value
context_nin - [WidgetDatasetResponsesTotalValueCustomFilterContext]Given value does not includes field
dateValue - WidgetDatasetResponsesTotalValueCustomFilterDateValueWhereInput
type_eq - WidgetDatasetResponsesTotalValueCustomFilterTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalValueCustomFilterTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalValueCustomFilterType]Given value includes field
type_ne - WidgetDatasetResponsesTotalValueCustomFilterTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalValueCustomFilterType]Given value does not includes field
values - JSON
Example
{
  "condition_eq": "equals",
  "condition_exists": "equals",
  "condition_in": ["equals"],
  "condition_ne": "equals",
  "condition_nin": ["equals"],
  "context_eq": "actions",
  "context_exists": "actions",
  "context_in": ["actions"],
  "context_ne": "actions",
  "context_nin": ["actions"],
  "dateValue": WidgetDatasetResponsesTotalValueCustomFilterDateValueWhereInput,
  "type_eq": "accountLabels",
  "type_exists": "accountLabels",
  "type_in": ["accountLabels"],
  "type_ne": "accountLabels",
  "type_nin": ["accountLabels"],
  "values": {}
}

WidgetDatasetResponsesTotalValueFilter

Description

Represents a WidgetDatasetResponsesTotalValueFilter

Fields
Field NameDescription
date - WidgetDatasetResponsesTotalValueFilterDate
decimalDigits - Int
elements - [Element]
elementsIds - [ID]
groupBy - WidgetDatasetResponsesTotalValueFilterGroupBy
input - ID
issueCatalog - IssueCatalog
issueCatalogId - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [Site]
sitesIds - [ID]
unit - Unit
unitId - ID
Example
{
  "date": WidgetDatasetResponsesTotalValueFilterDate,
  "decimalDigits": 123,
  "elements": [Element],
  "elementsIds": [4],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": IssueCatalog,
  "issueCatalogId": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": [Site],
  "sitesIds": [4],
  "unit": Unit,
  "unitId": "4"
}

WidgetDatasetResponsesTotalValueFilterCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueFilterCreateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalValueFilterDateCreateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesTotalValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesTotalValueFilterDateCreateInput,
  "decimalDigits": 123,
  "elements": ["4"],
  "groupBy": "day",
  "input": 4,
  "issueCatalog": 4,
  "multipleInputs": [4],
  "responseOptions": ["abc123"],
  "sites": [4],
  "unit": "4"
}

WidgetDatasetResponsesTotalValueFilterDate

Example
{
  "_id": "4",
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueFilterDateCustom,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueFilterDateCreateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueFilterDateCustomCreateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueFilterDateCurrent

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalValueFilterDateCustom

Description

Represents a WidgetDatasetResponsesTotalValueFilterDateCustom

Fields
Field NameDescription
_id - ID
from - DateTime
until - DateTime
Example
{
  "_id": 4,
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueFilterDateCustomCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueFilterDateCustomCreateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueFilterDateCustomUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueFilterDateCustomUpdateInput

Fields
Input FieldDescription
from - DateTime
until - DateTime
Example
{
  "from": "2007-12-03T10:15:30Z",
  "until": "2007-12-03T10:15:30Z"
}

WidgetDatasetResponsesTotalValueFilterDateCustomWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueFilterDateCustom

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
from_eq - DateTimeField is equal to given value
from_exists - BooleanField is set and exists
from_gt - DateTimeField is greater than given value
from_gte - DateTimeField is greater or equal than given value
from_in - [DateTime]Given value includes field
from_lt - DateTimeField is lower than given value
from_lte - DateTimeField is lower or equal than given value
from_ne - DateTimeField is not equal to given value
from_nin - [DateTime]Given value does not includes field
until_eq - DateTimeField is equal to given value
until_exists - BooleanField is set and exists
until_gt - DateTimeField is greater than given value
until_gte - DateTimeField is greater or equal than given value
until_in - [DateTime]Given value includes field
until_lt - DateTimeField is lower than given value
until_lte - DateTimeField is lower or equal than given value
until_ne - DateTimeField is not equal to given value
until_nin - [DateTime]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": ["4"],
  "from_eq": "2007-12-03T10:15:30Z",
  "from_exists": false,
  "from_gt": "2007-12-03T10:15:30Z",
  "from_gte": "2007-12-03T10:15:30Z",
  "from_in": ["2007-12-03T10:15:30Z"],
  "from_lt": "2007-12-03T10:15:30Z",
  "from_lte": "2007-12-03T10:15:30Z",
  "from_ne": "2007-12-03T10:15:30Z",
  "from_nin": ["2007-12-03T10:15:30Z"],
  "until_eq": "2007-12-03T10:15:30Z",
  "until_exists": true,
  "until_gt": "2007-12-03T10:15:30Z",
  "until_gte": "2007-12-03T10:15:30Z",
  "until_in": ["2007-12-03T10:15:30Z"],
  "until_lt": "2007-12-03T10:15:30Z",
  "until_lte": "2007-12-03T10:15:30Z",
  "until_ne": "2007-12-03T10:15:30Z",
  "until_nin": ["2007-12-03T10:15:30Z"]
}

WidgetDatasetResponsesTotalValueFilterDateLast

Values
Enum ValueDescription

day

month

week

year

Example
"day"

WidgetDatasetResponsesTotalValueFilterDateToDate

Values
Enum ValueDescription

biweek

day

month

week

year

Example
"biweek"

WidgetDatasetResponsesTotalValueFilterDateType

Values
Enum ValueDescription

current

custom

last

toDate

Example
"current"

WidgetDatasetResponsesTotalValueFilterDateUpdateInput

Example
{
  "current": "day",
  "custom": WidgetDatasetResponsesTotalValueFilterDateCustomUpdateInput,
  "last": "day",
  "toDate": "biweek",
  "type": "current"
}

WidgetDatasetResponsesTotalValueFilterDateWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueFilterDate

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
current_eq - WidgetDatasetResponsesTotalValueFilterDateCurrentField is equal to given value
current_exists - WidgetDatasetResponsesTotalValueFilterDateCurrentField is set and exists
current_in - [WidgetDatasetResponsesTotalValueFilterDateCurrent]Given value includes field
current_ne - WidgetDatasetResponsesTotalValueFilterDateCurrentField is not equal to given value
current_nin - [WidgetDatasetResponsesTotalValueFilterDateCurrent]Given value does not includes field
custom - WidgetDatasetResponsesTotalValueFilterDateCustomWhereInput
last_eq - WidgetDatasetResponsesTotalValueFilterDateLastField is equal to given value
last_exists - WidgetDatasetResponsesTotalValueFilterDateLastField is set and exists
last_in - [WidgetDatasetResponsesTotalValueFilterDateLast]Given value includes field
last_ne - WidgetDatasetResponsesTotalValueFilterDateLastField is not equal to given value
last_nin - [WidgetDatasetResponsesTotalValueFilterDateLast]Given value does not includes field
toDate_eq - WidgetDatasetResponsesTotalValueFilterDateToDateField is equal to given value
toDate_exists - WidgetDatasetResponsesTotalValueFilterDateToDateField is set and exists
toDate_in - [WidgetDatasetResponsesTotalValueFilterDateToDate]Given value includes field
toDate_ne - WidgetDatasetResponsesTotalValueFilterDateToDateField is not equal to given value
toDate_nin - [WidgetDatasetResponsesTotalValueFilterDateToDate]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalValueFilterDateTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalValueFilterDateTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalValueFilterDateType]Given value includes field
type_ne - WidgetDatasetResponsesTotalValueFilterDateTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalValueFilterDateType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "current_eq": "day",
  "current_exists": "day",
  "current_in": ["day"],
  "current_ne": "day",
  "current_nin": ["day"],
  "custom": WidgetDatasetResponsesTotalValueFilterDateCustomWhereInput,
  "last_eq": "day",
  "last_exists": "day",
  "last_in": ["day"],
  "last_ne": "day",
  "last_nin": ["day"],
  "toDate_eq": "biweek",
  "toDate_exists": "biweek",
  "toDate_in": ["biweek"],
  "toDate_ne": "biweek",
  "toDate_nin": ["biweek"],
  "type_eq": "current",
  "type_exists": "current",
  "type_in": ["current"],
  "type_ne": "current",
  "type_nin": ["current"]
}

WidgetDatasetResponsesTotalValueFilterGroupBy

Values
Enum ValueDescription

day

hour

month

week

year

Example
"day"

WidgetDatasetResponsesTotalValueFilterUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueFilterUpdateInput

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalValueFilterDateUpdateInput
decimalDigits - Int
elements - [ID]
groupBy - WidgetDatasetResponsesTotalValueFilterGroupBy
input - ID
issueCatalog - ID
multipleInputs - [ID]
responseOptions - [String]
sites - [ID]
unit - ID
Example
{
  "date": WidgetDatasetResponsesTotalValueFilterDateUpdateInput,
  "decimalDigits": 123,
  "elements": ["4"],
  "groupBy": "day",
  "input": "4",
  "issueCatalog": 4,
  "multipleInputs": ["4"],
  "responseOptions": ["xyz789"],
  "sites": [4],
  "unit": 4
}

WidgetDatasetResponsesTotalValueFilterWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueFilter

Fields
Input FieldDescription
date - WidgetDatasetResponsesTotalValueFilterDateWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
elements_all - [ID]Field includes all given values.
elements_eq - [ID]Given value is equal to field
elements_exists - Boolean
elements_in - [ID]Field includes one of given value.
elements_nin - [ID]Field does not include any of the given values.
groupBy_eq - WidgetDatasetResponsesTotalValueFilterGroupByField is equal to given value
groupBy_exists - WidgetDatasetResponsesTotalValueFilterGroupByField is set and exists
groupBy_in - [WidgetDatasetResponsesTotalValueFilterGroupBy]Given value includes field
groupBy_ne - WidgetDatasetResponsesTotalValueFilterGroupByField is not equal to given value
groupBy_nin - [WidgetDatasetResponsesTotalValueFilterGroupBy]Given value does not includes field
input_all - [ID]Given value includes all in array
input_eq - IDField is equal to given value
input_exists - BooleanField is set and exists
input_in - [ID]Given value includes field
input_ne - IDField is not equal to given value
input_nin - [ID]Given value does not include field
issueCatalog_all - [ID]Given value includes all in array
issueCatalog_eq - IDField is equal to given value
issueCatalog_exists - BooleanField is set and exists
issueCatalog_in - [ID]Given value includes field
issueCatalog_ne - IDField is not equal to given value
issueCatalog_nin - [ID]Given value does not include field
multipleInputs_all - [ID]Field includes all given values.
multipleInputs_eq - [ID]Given value is equal to field
multipleInputs_exists - Boolean
multipleInputs_in - [ID]Field includes one of given value.
multipleInputs_nin - [ID]Field does not include any of the given values.
responseOptions_all - [String]Field includes all given values.
responseOptions_eq - [String]Given value is equal to field
responseOptions_exists - Boolean
responseOptions_in - [String]Field includes one of given value.
responseOptions_nin - [String]Field does not include any of the given values.
sites_all - [ID]Field includes all given values.
sites_eq - [ID]Given value is equal to field
sites_exists - Boolean
sites_in - [ID]Field includes one of given value.
sites_nin - [ID]Field does not include any of the given values.
unit_all - [ID]Given value includes all in array
unit_eq - IDField is equal to given value
unit_exists - BooleanField is set and exists
unit_in - [ID]Given value includes field
unit_ne - IDField is not equal to given value
unit_nin - [ID]Given value does not include field
Example
{
  "date": WidgetDatasetResponsesTotalValueFilterDateWhereInput,
  "decimalDigits_eq": 987,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 123,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "elements_all": [4],
  "elements_eq": [4],
  "elements_exists": true,
  "elements_in": [4],
  "elements_nin": ["4"],
  "groupBy_eq": "day",
  "groupBy_exists": "day",
  "groupBy_in": ["day"],
  "groupBy_ne": "day",
  "groupBy_nin": ["day"],
  "input_all": [4],
  "input_eq": "4",
  "input_exists": false,
  "input_in": ["4"],
  "input_ne": "4",
  "input_nin": ["4"],
  "issueCatalog_all": [4],
  "issueCatalog_eq": 4,
  "issueCatalog_exists": true,
  "issueCatalog_in": ["4"],
  "issueCatalog_ne": "4",
  "issueCatalog_nin": ["4"],
  "multipleInputs_all": [4],
  "multipleInputs_eq": [4],
  "multipleInputs_exists": true,
  "multipleInputs_in": [4],
  "multipleInputs_nin": [4],
  "responseOptions_all": ["abc123"],
  "responseOptions_eq": ["xyz789"],
  "responseOptions_exists": false,
  "responseOptions_in": ["xyz789"],
  "responseOptions_nin": ["xyz789"],
  "sites_all": ["4"],
  "sites_eq": [4],
  "sites_exists": false,
  "sites_in": [4],
  "sites_nin": ["4"],
  "unit_all": [4],
  "unit_eq": 4,
  "unit_exists": false,
  "unit_in": ["4"],
  "unit_ne": "4",
  "unit_nin": ["4"]
}

WidgetDatasetResponsesTotalValueMeasurement

Values
Enum ValueDescription

average

last

Example
"average"

WidgetDatasetResponsesTotalValueRange

Description

Represents a WidgetDatasetResponsesTotalValueRange

Fields
Field NameDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 123,
  "name": "xyz789"
}

WidgetDatasetResponsesTotalValueRangeCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueRangeCreateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetResponsesTotalValueRangeUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueRangeUpdateInput

Fields
Input FieldDescription
color - String
max - Int
name - String
Example
{
  "color": "xyz789",
  "max": 987,
  "name": "abc123"
}

WidgetDatasetResponsesTotalValueRangeWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueRange

Fields
Input FieldDescription
color_contains - StringField contains given value, case-insensitive
color_ends_with - StringField ends with given value, case-insensitive
color_eq - StringField is equal to given value
color_exists - BooleanField is set and exists
color_in - [String]Given value includes field
color_ne - StringField is not equal to given value
color_nin - [String]Given value does not includes field
color_not_contains - StringField does not contains given value, case-insensitive
color_not_ends_with - StringField does not end with given value, case-insensitive
color_not_starts_with - StringField does not start with given value, case-insensitive
color_starts_with - StringField starts with given value, case-insensitive
max_eq - IntField is equal to given value
max_exists - BooleanField is set and exists
max_gt - IntField is greater than given value
max_gte - IntField is greater or equal than given value
max_in - [Int]Given value includes field
max_lt - IntField is lower than given value
max_lte - IntField is lower or equal than given value
max_ne - IntField is not equal to given value
max_nin - [Int]Given value does not includes field
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
Example
{
  "color_contains": "xyz789",
  "color_ends_with": "abc123",
  "color_eq": "abc123",
  "color_exists": true,
  "color_in": ["abc123"],
  "color_ne": "abc123",
  "color_nin": ["xyz789"],
  "color_not_contains": "abc123",
  "color_not_ends_with": "xyz789",
  "color_not_starts_with": "xyz789",
  "color_starts_with": "xyz789",
  "max_eq": 123,
  "max_exists": false,
  "max_gt": 123,
  "max_gte": 123,
  "max_in": [123],
  "max_lt": 123,
  "max_lte": 987,
  "max_ne": 123,
  "max_nin": [123],
  "name_contains": "abc123",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "abc123",
  "name_not_starts_with": "abc123",
  "name_starts_with": "xyz789"
}

WidgetDatasetResponsesTotalValueSort

Description

Represents a WidgetDatasetResponsesTotalValueSort

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalValueSortCreateInput

Description

Represents a WidgetDatasetResponsesTotalValueSortCreateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalValueSortOrder

Values
Enum ValueDescription

asc

default

desc

Example
"asc"

WidgetDatasetResponsesTotalValueSortType

Values
Enum ValueDescription

alphabetical

default

value

valueCount

Example
"alphabetical"

WidgetDatasetResponsesTotalValueSortUpdateInput

Description

Represents a WidgetDatasetResponsesTotalValueSortUpdateInput

Example
{"order": "asc", "type": "alphabetical"}

WidgetDatasetResponsesTotalValueSortWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValueSort

Fields
Input FieldDescription
order_eq - WidgetDatasetResponsesTotalValueSortOrderField is equal to given value
order_exists - WidgetDatasetResponsesTotalValueSortOrderField is set and exists
order_in - [WidgetDatasetResponsesTotalValueSortOrder]Given value includes field
order_ne - WidgetDatasetResponsesTotalValueSortOrderField is not equal to given value
order_nin - [WidgetDatasetResponsesTotalValueSortOrder]Given value does not includes field
type_eq - WidgetDatasetResponsesTotalValueSortTypeField is equal to given value
type_exists - WidgetDatasetResponsesTotalValueSortTypeField is set and exists
type_in - [WidgetDatasetResponsesTotalValueSortType]Given value includes field
type_ne - WidgetDatasetResponsesTotalValueSortTypeField is not equal to given value
type_nin - [WidgetDatasetResponsesTotalValueSortType]Given value does not includes field
Example
{
  "order_eq": "asc",
  "order_exists": "asc",
  "order_in": ["asc"],
  "order_ne": "asc",
  "order_nin": ["asc"],
  "type_eq": "alphabetical",
  "type_exists": "alphabetical",
  "type_in": ["alphabetical"],
  "type_ne": "alphabetical",
  "type_nin": ["alphabetical"]
}

WidgetDatasetResponsesTotalValueUpdateInput

Example
{
  "by": "response",
  "chart": "bar",
  "customFilters": [
    WidgetDatasetResponsesTotalValueCustomFilterUpdateInput
  ],
  "decimalDigits": 123,
  "filter": WidgetDatasetResponsesTotalValueFilterUpdateInput,
  "max": 123.45,
  "measurement": "average",
  "min": 987.65,
  "ranges": [
    WidgetDatasetResponsesTotalValueRangeUpdateInput
  ],
  "showAsPercentage": false,
  "sort": WidgetDatasetResponsesTotalValueSortUpdateInput
}

WidgetDatasetResponsesTotalValueWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotalValue

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesTotalValueByField is equal to given value
by_exists - WidgetDatasetResponsesTotalValueByField is set and exists
by_in - [WidgetDatasetResponsesTotalValueBy]Given value includes field
by_ne - WidgetDatasetResponsesTotalValueByField is not equal to given value
by_nin - [WidgetDatasetResponsesTotalValueBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesTotalValueChartField is equal to given value
chart_exists - WidgetDatasetResponsesTotalValueChartField is set and exists
chart_in - [WidgetDatasetResponsesTotalValueChart]Given value includes field
chart_ne - WidgetDatasetResponsesTotalValueChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesTotalValueChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesTotalValueCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesTotalValueCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesTotalValueCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesTotalValueFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesTotalValueMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesTotalValueMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesTotalValueMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesTotalValueMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesTotalValueMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesTotalValueRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesTotalValueRangeWhereInput
ranges_some - WidgetDatasetResponsesTotalValueRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesTotalValueSortWhereInput
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": [4],
  "_id_ne": 4,
  "_id_nin": [4],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesTotalValueCustomFilterWhereInput,
  "customFilters_exists": true,
  "customFilters_none": WidgetDatasetResponsesTotalValueCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesTotalValueCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": false,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 987,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 123,
  "decimalDigits_lte": 123,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [987],
  "filter": WidgetDatasetResponsesTotalValueFilterWhereInput,
  "max_eq": 987.65,
  "max_exists": false,
  "max_gt": 123.45,
  "max_gte": 123.45,
  "max_in": [123.45],
  "max_lt": 987.65,
  "max_lte": 123.45,
  "max_ne": 987.65,
  "max_nin": [123.45],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 123.45,
  "min_exists": true,
  "min_gt": 123.45,
  "min_gte": 123.45,
  "min_in": [987.65],
  "min_lt": 123.45,
  "min_lte": 987.65,
  "min_ne": 123.45,
  "min_nin": [123.45],
  "ranges_every": WidgetDatasetResponsesTotalValueRangeWhereInput,
  "ranges_exists": true,
  "ranges_none": WidgetDatasetResponsesTotalValueRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesTotalValueRangeWhereInput,
  "showAsPercentage_eq": true,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesTotalValueSortWhereInput
}

WidgetDatasetResponsesTotalWhereInput

Description

Represents a Where input for: WidgetDatasetResponsesTotal

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
by_eq - WidgetDatasetResponsesTotalByField is equal to given value
by_exists - WidgetDatasetResponsesTotalByField is set and exists
by_in - [WidgetDatasetResponsesTotalBy]Given value includes field
by_ne - WidgetDatasetResponsesTotalByField is not equal to given value
by_nin - [WidgetDatasetResponsesTotalBy]Given value does not includes field
chart_eq - WidgetDatasetResponsesTotalChartField is equal to given value
chart_exists - WidgetDatasetResponsesTotalChartField is set and exists
chart_in - [WidgetDatasetResponsesTotalChart]Given value includes field
chart_ne - WidgetDatasetResponsesTotalChartField is not equal to given value
chart_nin - [WidgetDatasetResponsesTotalChart]Given value does not includes field
customFilters_every - WidgetDatasetResponsesTotalCustomFilterWhereInput
customFilters_exists - Boolean
customFilters_none - WidgetDatasetResponsesTotalCustomFilterWhereInput
customFilters_some - WidgetDatasetResponsesTotalCustomFilterWhereInput
decimalDigits_eq - IntField is equal to given value
decimalDigits_exists - BooleanField is set and exists
decimalDigits_gt - IntField is greater than given value
decimalDigits_gte - IntField is greater or equal than given value
decimalDigits_in - [Int]Given value includes field
decimalDigits_lt - IntField is lower than given value
decimalDigits_lte - IntField is lower or equal than given value
decimalDigits_ne - IntField is not equal to given value
decimalDigits_nin - [Int]Given value does not includes field
filter - WidgetDatasetResponsesTotalFilterWhereInput
max_eq - FloatField is equal to given value
max_exists - BooleanField is set and exists
max_gt - FloatField is greater than given value
max_gte - FloatField is greater or equal than given value
max_in - [Float]Given value includes field
max_lt - FloatField is lower than given value
max_lte - FloatField is lower or equal than given value
max_ne - FloatField is not equal to given value
max_nin - [Float]Given value does not includes field
measurement_eq - WidgetDatasetResponsesTotalMeasurementField is equal to given value
measurement_exists - WidgetDatasetResponsesTotalMeasurementField is set and exists
measurement_in - [WidgetDatasetResponsesTotalMeasurement]Given value includes field
measurement_ne - WidgetDatasetResponsesTotalMeasurementField is not equal to given value
measurement_nin - [WidgetDatasetResponsesTotalMeasurement]Given value does not includes field
min_eq - FloatField is equal to given value
min_exists - BooleanField is set and exists
min_gt - FloatField is greater than given value
min_gte - FloatField is greater or equal than given value
min_in - [Float]Given value includes field
min_lt - FloatField is lower than given value
min_lte - FloatField is lower or equal than given value
min_ne - FloatField is not equal to given value
min_nin - [Float]Given value does not includes field
ranges_every - WidgetDatasetResponsesTotalRangeWhereInput
ranges_exists - Boolean
ranges_none - WidgetDatasetResponsesTotalRangeWhereInput
ranges_some - WidgetDatasetResponsesTotalRangeWhereInput
showAsPercentage_eq - BooleanField is equal to given value
showAsPercentage_ne - BooleanField is not equal to given value
sort - WidgetDatasetResponsesTotalSortWhereInput
Example
{
  "_id_all": [4],
  "_id_eq": 4,
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": "4",
  "_id_nin": [4],
  "by_eq": "response",
  "by_exists": "response",
  "by_in": ["response"],
  "by_ne": "response",
  "by_nin": ["response"],
  "chart_eq": "bar",
  "chart_exists": "bar",
  "chart_in": ["bar"],
  "chart_ne": "bar",
  "chart_nin": ["bar"],
  "customFilters_every": WidgetDatasetResponsesTotalCustomFilterWhereInput,
  "customFilters_exists": true,
  "customFilters_none": WidgetDatasetResponsesTotalCustomFilterWhereInput,
  "customFilters_some": WidgetDatasetResponsesTotalCustomFilterWhereInput,
  "decimalDigits_eq": 123,
  "decimalDigits_exists": true,
  "decimalDigits_gt": 987,
  "decimalDigits_gte": 123,
  "decimalDigits_in": [123],
  "decimalDigits_lt": 987,
  "decimalDigits_lte": 987,
  "decimalDigits_ne": 123,
  "decimalDigits_nin": [123],
  "filter": WidgetDatasetResponsesTotalFilterWhereInput,
  "max_eq": 123.45,
  "max_exists": false,
  "max_gt": 123.45,
  "max_gte": 987.65,
  "max_in": [987.65],
  "max_lt": 123.45,
  "max_lte": 123.45,
  "max_ne": 123.45,
  "max_nin": [123.45],
  "measurement_eq": "average",
  "measurement_exists": "average",
  "measurement_in": ["average"],
  "measurement_ne": "average",
  "measurement_nin": ["average"],
  "min_eq": 123.45,
  "min_exists": true,
  "min_gt": 123.45,
  "min_gte": 987.65,
  "min_in": [987.65],
  "min_lt": 987.65,
  "min_lte": 123.45,
  "min_ne": 987.65,
  "min_nin": [987.65],
  "ranges_every": WidgetDatasetResponsesTotalRangeWhereInput,
  "ranges_exists": false,
  "ranges_none": WidgetDatasetResponsesTotalRangeWhereInput,
  "ranges_some": WidgetDatasetResponsesTotalRangeWhereInput,
  "showAsPercentage_eq": false,
  "showAsPercentage_ne": true,
  "sort": WidgetDatasetResponsesTotalSortWhereInput
}

WidgetDatasetType

Values
Enum ValueDescription

actionsCount

actionsDuration

issuesAverage

issuesCount

issuesDuration

issuesPlanned

realtime

responsesAverageValue

responsesByRating

responsesHighestValue

responsesLastValue

responsesLowestValue

responsesMediumValue

responsesSum

responsesTotal

responsesTotalValues

Example
"actionsCount"

WidgetDatasetUpdateInput

Example
{
  "actionsCount": WidgetDatasetActionsCountUpdateInput,
  "actionsDuration": WidgetDatasetActionsDurationUpdateInput,
  "issuesAverage": WidgetDatasetIssuesAverageUpdateInput,
  "issuesCount": WidgetDatasetIssuesCountUpdateInput,
  "issuesDuration": WidgetDatasetIssuesDurationUpdateInput,
  "issuesPlanned": WidgetDatasetIssuesPlannedUpdateInput,
  "realtime": WidgetDatasetRealtimeUpdateInput,
  "responsesAverageValue": WidgetDatasetResponsesAverageValueUpdateInput,
  "responsesByRating": WidgetDatasetResponsesByRatingUpdateInput,
  "responsesHighestValue": WidgetDatasetResponsesHighestValueUpdateInput,
  "responsesLastValue": WidgetDatasetResponsesLastValueUpdateInput,
  "responsesLowestValue": WidgetDatasetResponsesLowestValueUpdateInput,
  "responsesSum": WidgetDatasetResponsesSumUpdateInput,
  "responsesTotal": WidgetDatasetResponsesTotalUpdateInput,
  "responsesTotalValues": WidgetDatasetResponsesTotalValueUpdateInput,
  "type": "actionsCount"
}

WidgetDatasetWhereInput

Description

Represents a Where input for: WidgetDataset

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
actionsCount - WidgetDatasetActionsCountWhereInput
actionsDuration - WidgetDatasetActionsDurationWhereInput
issuesAverage - WidgetDatasetIssuesAverageWhereInput
issuesCount - WidgetDatasetIssuesCountWhereInput
issuesDuration - WidgetDatasetIssuesDurationWhereInput
issuesPlanned - WidgetDatasetIssuesPlannedWhereInput
realtime - WidgetDatasetRealtimeWhereInput
responsesAverageValue - WidgetDatasetResponsesAverageValueWhereInput
responsesByRating - WidgetDatasetResponsesByRatingWhereInput
responsesHighestValue - WidgetDatasetResponsesHighestValueWhereInput
responsesLastValue - WidgetDatasetResponsesLastValueWhereInput
responsesLowestValue - WidgetDatasetResponsesLowestValueWhereInput
responsesSum - WidgetDatasetResponsesSumWhereInput
responsesTotal - WidgetDatasetResponsesTotalWhereInput
responsesTotalValues - WidgetDatasetResponsesTotalValueWhereInput
type_eq - WidgetDatasetTypeField is equal to given value
type_exists - WidgetDatasetTypeField is set and exists
type_in - [WidgetDatasetType]Given value includes field
type_ne - WidgetDatasetTypeField is not equal to given value
type_nin - [WidgetDatasetType]Given value does not includes field
Example
{
  "_id_all": ["4"],
  "_id_eq": "4",
  "_id_exists": false,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "actionsCount": WidgetDatasetActionsCountWhereInput,
  "actionsDuration": WidgetDatasetActionsDurationWhereInput,
  "issuesAverage": WidgetDatasetIssuesAverageWhereInput,
  "issuesCount": WidgetDatasetIssuesCountWhereInput,
  "issuesDuration": WidgetDatasetIssuesDurationWhereInput,
  "issuesPlanned": WidgetDatasetIssuesPlannedWhereInput,
  "realtime": WidgetDatasetRealtimeWhereInput,
  "responsesAverageValue": WidgetDatasetResponsesAverageValueWhereInput,
  "responsesByRating": WidgetDatasetResponsesByRatingWhereInput,
  "responsesHighestValue": WidgetDatasetResponsesHighestValueWhereInput,
  "responsesLastValue": WidgetDatasetResponsesLastValueWhereInput,
  "responsesLowestValue": WidgetDatasetResponsesLowestValueWhereInput,
  "responsesSum": WidgetDatasetResponsesSumWhereInput,
  "responsesTotal": WidgetDatasetResponsesTotalWhereInput,
  "responsesTotalValues": WidgetDatasetResponsesTotalValueWhereInput,
  "type_eq": "actionsCount",
  "type_exists": "actionsCount",
  "type_in": ["actionsCount"],
  "type_ne": "actionsCount",
  "type_nin": ["actionsCount"]
}

WidgetLayout

Description

Represents a WidgetLayout

Fields
Field NameDescription
_id - ID
h - Float
i - Float
minH - Float
minW - Float
w - Float
x - Float!
y - Float!
Example
{
  "_id": 4,
  "h": 987.65,
  "i": 123.45,
  "minH": 987.65,
  "minW": 987.65,
  "w": 987.65,
  "x": 987.65,
  "y": 123.45
}

WidgetLayoutCreateInput

Description

Represents a WidgetLayoutCreateInput

Fields
Input FieldDescription
h - Float
i - Float
minH - Float
minW - Float
w - Float
x - Float!
y - Float!
Example
{
  "h": 123.45,
  "i": 987.65,
  "minH": 987.65,
  "minW": 987.65,
  "w": 123.45,
  "x": 123.45,
  "y": 987.65
}

WidgetLayoutUpdateInput

Description

Represents a WidgetLayoutUpdateInput

Fields
Input FieldDescription
h - Float
i - Float
minH - Float
minW - Float
w - Float
x - Float
y - Float
Example
{
  "h": 123.45,
  "i": 123.45,
  "minH": 123.45,
  "minW": 123.45,
  "w": 987.65,
  "x": 123.45,
  "y": 987.65
}

WidgetLayoutWhereInput

Description

Represents a Where input for: WidgetLayout

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
h_eq - FloatField is equal to given value
h_exists - BooleanField is set and exists
h_gt - FloatField is greater than given value
h_gte - FloatField is greater or equal than given value
h_in - [Float]Given value includes field
h_lt - FloatField is lower than given value
h_lte - FloatField is lower or equal than given value
h_ne - FloatField is not equal to given value
h_nin - [Float]Given value does not includes field
i_eq - FloatField is equal to given value
i_exists - BooleanField is set and exists
i_gt - FloatField is greater than given value
i_gte - FloatField is greater or equal than given value
i_in - [Float]Given value includes field
i_lt - FloatField is lower than given value
i_lte - FloatField is lower or equal than given value
i_ne - FloatField is not equal to given value
i_nin - [Float]Given value does not includes field
minH_eq - FloatField is equal to given value
minH_exists - BooleanField is set and exists
minH_gt - FloatField is greater than given value
minH_gte - FloatField is greater or equal than given value
minH_in - [Float]Given value includes field
minH_lt - FloatField is lower than given value
minH_lte - FloatField is lower or equal than given value
minH_ne - FloatField is not equal to given value
minH_nin - [Float]Given value does not includes field
minW_eq - FloatField is equal to given value
minW_exists - BooleanField is set and exists
minW_gt - FloatField is greater than given value
minW_gte - FloatField is greater or equal than given value
minW_in - [Float]Given value includes field
minW_lt - FloatField is lower than given value
minW_lte - FloatField is lower or equal than given value
minW_ne - FloatField is not equal to given value
minW_nin - [Float]Given value does not includes field
w_eq - FloatField is equal to given value
w_exists - BooleanField is set and exists
w_gt - FloatField is greater than given value
w_gte - FloatField is greater or equal than given value
w_in - [Float]Given value includes field
w_lt - FloatField is lower than given value
w_lte - FloatField is lower or equal than given value
w_ne - FloatField is not equal to given value
w_nin - [Float]Given value does not includes field
x_eq - FloatField is equal to given value
x_exists - BooleanField is set and exists
x_gt - FloatField is greater than given value
x_gte - FloatField is greater or equal than given value
x_in - [Float]Given value includes field
x_lt - FloatField is lower than given value
x_lte - FloatField is lower or equal than given value
x_ne - FloatField is not equal to given value
x_nin - [Float]Given value does not includes field
y_eq - FloatField is equal to given value
y_exists - BooleanField is set and exists
y_gt - FloatField is greater than given value
y_gte - FloatField is greater or equal than given value
y_in - [Float]Given value includes field
y_lt - FloatField is lower than given value
y_lte - FloatField is lower or equal than given value
y_ne - FloatField is not equal to given value
y_nin - [Float]Given value does not includes field
Example
{
  "_id_all": [4],
  "_id_eq": "4",
  "_id_exists": true,
  "_id_in": [4],
  "_id_ne": "4",
  "_id_nin": ["4"],
  "h_eq": 123.45,
  "h_exists": true,
  "h_gt": 987.65,
  "h_gte": 987.65,
  "h_in": [123.45],
  "h_lt": 123.45,
  "h_lte": 123.45,
  "h_ne": 987.65,
  "h_nin": [987.65],
  "i_eq": 123.45,
  "i_exists": false,
  "i_gt": 987.65,
  "i_gte": 987.65,
  "i_in": [987.65],
  "i_lt": 987.65,
  "i_lte": 123.45,
  "i_ne": 123.45,
  "i_nin": [987.65],
  "minH_eq": 123.45,
  "minH_exists": true,
  "minH_gt": 987.65,
  "minH_gte": 123.45,
  "minH_in": [987.65],
  "minH_lt": 123.45,
  "minH_lte": 987.65,
  "minH_ne": 987.65,
  "minH_nin": [123.45],
  "minW_eq": 123.45,
  "minW_exists": false,
  "minW_gt": 987.65,
  "minW_gte": 987.65,
  "minW_in": [123.45],
  "minW_lt": 123.45,
  "minW_lte": 123.45,
  "minW_ne": 987.65,
  "minW_nin": [987.65],
  "w_eq": 987.65,
  "w_exists": true,
  "w_gt": 123.45,
  "w_gte": 123.45,
  "w_in": [987.65],
  "w_lt": 987.65,
  "w_lte": 987.65,
  "w_ne": 123.45,
  "w_nin": [987.65],
  "x_eq": 123.45,
  "x_exists": false,
  "x_gt": 123.45,
  "x_gte": 123.45,
  "x_in": [987.65],
  "x_lt": 123.45,
  "x_lte": 123.45,
  "x_ne": 123.45,
  "x_nin": [987.65],
  "y_eq": 123.45,
  "y_exists": true,
  "y_gt": 987.65,
  "y_gte": 987.65,
  "y_in": [123.45],
  "y_lt": 987.65,
  "y_lte": 987.65,
  "y_ne": 987.65,
  "y_nin": [123.45]
}

WidgetOrderByInput

Description

Represents an OrderBy enum

Values
Enum ValueDescription

_id_ASC

_id_DESC

createdAt_ASC

createdAt_DESC

dataset_type_ASC

dataset_type_DESC

deletedAt_ASC

deletedAt_DESC

layout_h_ASC

layout_h_DESC

layout_i_ASC

layout_i_DESC

layout_minH_ASC

layout_minH_DESC

layout_minW_ASC

layout_minW_DESC

layout_w_ASC

layout_w_DESC

layout_x_ASC

layout_x_DESC

layout_y_ASC

layout_y_DESC

name_ASC

name_DESC

preset_ASC

preset_DESC

updatedAt_ASC

updatedAt_DESC

Example
"_id_ASC"

WidgetPreviewInput

Fields
Input FieldDescription
dataset - JSON
draft - String
layout - WidgetLayoutWhereInput
name - String
preset - String
Example
{
  "dataset": {},
  "draft": "abc123",
  "layout": WidgetLayoutWhereInput,
  "name": "abc123",
  "preset": "abc123"
}

WidgetUpdateInput

Description

Represents a WidgetUpdateInput

Fields
Input FieldDescription
dashboard - ID
dataset - WidgetDatasetUpdateInput
draft - ID
layout - WidgetLayoutUpdateInput
name - String
palette - [String]
preset - String
showLegend - Boolean
Example
{
  "dashboard": 4,
  "dataset": WidgetDatasetUpdateInput,
  "draft": "4",
  "layout": WidgetLayoutUpdateInput,
  "name": "xyz789",
  "palette": ["xyz789"],
  "preset": "xyz789",
  "showLegend": false
}

WidgetWhereInput

Description

Represents a Where input for: Widget

Fields
Input FieldDescription
_id_all - [ID]Given value includes all in array
_id_eq - IDField is equal to given value
_id_exists - BooleanField is set and exists
_id_in - [ID]Given value includes field
_id_ne - IDField is not equal to given value
_id_nin - [ID]Given value does not include field
createdAt_eq - DateTimeField is equal to given value
createdAt_exists - BooleanField is set and exists
createdAt_gt - DateTimeField is greater than given value
createdAt_gte - DateTimeField is greater or equal than given value
createdAt_in - [DateTime]Given value includes field
createdAt_lt - DateTimeField is lower than given value
createdAt_lte - DateTimeField is lower or equal than given value
createdAt_ne - DateTimeField is not equal to given value
createdAt_nin - [DateTime]Given value does not includes field
createdBy_all - [ID]Given value includes all in array
createdBy_eq - IDField is equal to given value
createdBy_exists - BooleanField is set and exists
createdBy_in - [ID]Given value includes field
createdBy_ne - IDField is not equal to given value
createdBy_nin - [ID]Given value does not include field
dashboard_all - [ID]Given value includes all in array
dashboard_eq - IDField is equal to given value
dashboard_exists - BooleanField is set and exists
dashboard_in - [ID]Given value includes field
dashboard_ne - IDField is not equal to given value
dashboard_nin - [ID]Given value does not include field
dataset - WidgetDatasetWhereInput
deletedAt_eq - DateTimeField is equal to given value
deletedAt_exists - BooleanField is set and exists
deletedAt_gt - DateTimeField is greater than given value
deletedAt_gte - DateTimeField is greater or equal than given value
deletedAt_in - [DateTime]Given value includes field
deletedAt_lt - DateTimeField is lower than given value
deletedAt_lte - DateTimeField is lower or equal than given value
deletedAt_ne - DateTimeField is not equal to given value
deletedAt_nin - [DateTime]Given value does not includes field
deletedBy_all - [ID]Given value includes all in array
deletedBy_eq - IDField is equal to given value
deletedBy_exists - BooleanField is set and exists
deletedBy_in - [ID]Given value includes field
deletedBy_ne - IDField is not equal to given value
deletedBy_nin - [ID]Given value does not include field
deleted_eq - BooleanField is equal to given value
deleted_ne - BooleanField is not equal to given value
draft_all - [ID]Given value includes all in array
draft_eq - IDField is equal to given value
draft_exists - BooleanField is set and exists
draft_in - [ID]Given value includes field
draft_ne - IDField is not equal to given value
draft_nin - [ID]Given value does not include field
layout - WidgetLayoutWhereInput
name_contains - StringField contains given value, case-insensitive
name_ends_with - StringField ends with given value, case-insensitive
name_eq - StringField is equal to given value
name_exists - BooleanField is set and exists
name_in - [String]Given value includes field
name_ne - StringField is not equal to given value
name_nin - [String]Given value does not includes field
name_not_contains - StringField does not contains given value, case-insensitive
name_not_ends_with - StringField does not end with given value, case-insensitive
name_not_starts_with - StringField does not start with given value, case-insensitive
name_starts_with - StringField starts with given value, case-insensitive
palette_all - [String]Field includes all given values.
palette_eq - [String]Given value is equal to field
palette_exists - Boolean
palette_in - [String]Field includes one of given value.
palette_nin - [String]Field does not include any of the given values.
preset_contains - StringField contains given value, case-insensitive
preset_ends_with - StringField ends with given value, case-insensitive
preset_eq - StringField is equal to given value
preset_exists - BooleanField is set and exists
preset_in - [String]Given value includes field
preset_ne - StringField is not equal to given value
preset_nin - [String]Given value does not includes field
preset_not_contains - StringField does not contains given value, case-insensitive
preset_not_ends_with - StringField does not end with given value, case-insensitive
preset_not_starts_with - StringField does not start with given value, case-insensitive
preset_starts_with - StringField starts with given value, case-insensitive
protected_eq - BooleanField is equal to given value
protected_ne - BooleanField is not equal to given value
showLegend_eq - BooleanField is equal to given value
showLegend_ne - BooleanField is not equal to given value
system_eq - BooleanField is equal to given value
system_ne - BooleanField is not equal to given value
updatedAt_eq - DateTimeField is equal to given value
updatedAt_exists - BooleanField is set and exists
updatedAt_gt - DateTimeField is greater than given value
updatedAt_gte - DateTimeField is greater or equal than given value
updatedAt_in - [DateTime]Given value includes field
updatedAt_lt - DateTimeField is lower than given value
updatedAt_lte - DateTimeField is lower or equal than given value
updatedAt_ne - DateTimeField is not equal to given value
updatedAt_nin - [DateTime]Given value does not includes field
updatedBy_all - [ID]Given value includes all in array
updatedBy_eq - IDField is equal to given value
updatedBy_exists - BooleanField is set and exists
updatedBy_in - [ID]Given value includes field
updatedBy_ne - IDField is not equal to given value
updatedBy_nin - [ID]Given value does not include field
Example
{
  "_id_all": ["4"],
  "_id_eq": 4,
  "_id_exists": true,
  "_id_in": ["4"],
  "_id_ne": 4,
  "_id_nin": [4],
  "createdAt_eq": "2007-12-03T10:15:30Z",
  "createdAt_exists": true,
  "createdAt_gt": "2007-12-03T10:15:30Z",
  "createdAt_gte": "2007-12-03T10:15:30Z",
  "createdAt_in": ["2007-12-03T10:15:30Z"],
  "createdAt_lt": "2007-12-03T10:15:30Z",
  "createdAt_lte": "2007-12-03T10:15:30Z",
  "createdAt_ne": "2007-12-03T10:15:30Z",
  "createdAt_nin": ["2007-12-03T10:15:30Z"],
  "createdBy_all": ["4"],
  "createdBy_eq": "4",
  "createdBy_exists": true,
  "createdBy_in": [4],
  "createdBy_ne": 4,
  "createdBy_nin": [4],
  "dashboard_all": ["4"],
  "dashboard_eq": "4",
  "dashboard_exists": true,
  "dashboard_in": [4],
  "dashboard_ne": 4,
  "dashboard_nin": [4],
  "dataset": WidgetDatasetWhereInput,
  "deletedAt_eq": "2007-12-03T10:15:30Z",
  "deletedAt_exists": false,
  "deletedAt_gt": "2007-12-03T10:15:30Z",
  "deletedAt_gte": "2007-12-03T10:15:30Z",
  "deletedAt_in": ["2007-12-03T10:15:30Z"],
  "deletedAt_lt": "2007-12-03T10:15:30Z",
  "deletedAt_lte": "2007-12-03T10:15:30Z",
  "deletedAt_ne": "2007-12-03T10:15:30Z",
  "deletedAt_nin": ["2007-12-03T10:15:30Z"],
  "deletedBy_all": [4],
  "deletedBy_eq": 4,
  "deletedBy_exists": false,
  "deletedBy_in": ["4"],
  "deletedBy_ne": "4",
  "deletedBy_nin": [4],
  "deleted_eq": false,
  "deleted_ne": true,
  "draft_all": [4],
  "draft_eq": "4",
  "draft_exists": false,
  "draft_in": ["4"],
  "draft_ne": 4,
  "draft_nin": ["4"],
  "layout": WidgetLayoutWhereInput,
  "name_contains": "xyz789",
  "name_ends_with": "xyz789",
  "name_eq": "abc123",
  "name_exists": true,
  "name_in": ["abc123"],
  "name_ne": "abc123",
  "name_nin": ["abc123"],
  "name_not_contains": "xyz789",
  "name_not_ends_with": "xyz789",
  "name_not_starts_with": "abc123",
  "name_starts_with": "abc123",
  "palette_all": ["xyz789"],
  "palette_eq": ["xyz789"],
  "palette_exists": true,
  "palette_in": ["abc123"],
  "palette_nin": ["xyz789"],
  "preset_contains": "abc123",
  "preset_ends_with": "abc123",
  "preset_eq": "xyz789",
  "preset_exists": true,
  "preset_in": ["xyz789"],
  "preset_ne": "abc123",
  "preset_nin": ["abc123"],
  "preset_not_contains": "abc123",
  "preset_not_ends_with": "abc123",
  "preset_not_starts_with": "xyz789",
  "preset_starts_with": "abc123",
  "protected_eq": true,
  "protected_ne": true,
  "showLegend_eq": true,
  "showLegend_ne": false,
  "system_eq": false,
  "system_ne": false,
  "updatedAt_eq": "2007-12-03T10:15:30Z",
  "updatedAt_exists": false,
  "updatedAt_gt": "2007-12-03T10:15:30Z",
  "updatedAt_gte": "2007-12-03T10:15:30Z",
  "updatedAt_in": ["2007-12-03T10:15:30Z"],
  "updatedAt_lt": "2007-12-03T10:15:30Z",
  "updatedAt_lte": "2007-12-03T10:15:30Z",
  "updatedAt_ne": "2007-12-03T10:15:30Z",
  "updatedAt_nin": ["2007-12-03T10:15:30Z"],
  "updatedBy_all": [4],
  "updatedBy_eq": "4",
  "updatedBy_exists": false,
  "updatedBy_in": ["4"],
  "updatedBy_ne": 4,
  "updatedBy_nin": ["4"]
}

WidgetWhereUniqueInput

Description

Get a single document by its unique fields

Fields
Input FieldDescription
_id - ID!
Example
{"_id": 4}

WorkPackageData

Fields
Input FieldDescription
assignedAccounts - [ID]
assignedLabelValues - [ID]
issueCatalogId - ID
taskMappings - [TaskMappingData]
Example
{
  "assignedAccounts": ["4"],
  "assignedLabelValues": [4],
  "issueCatalogId": 4,
  "taskMappings": [TaskMappingData]
}

WorkPackageWhere

Fields
Input FieldDescription
_id_eq - ID
finishedAt_eq - DateTime
finishedAt_exists - Boolean
finishedAt_ne - DateTime
workPackageName_contains - String
Example
{
  "_id_eq": "4",
  "finishedAt_eq": "2007-12-03T10:15:30Z",
  "finishedAt_exists": false,
  "finishedAt_ne": "2007-12-03T10:15:30Z",
  "workPackageName_contains": "abc123"
}

XLSXUploadProgressType

Fields
Field NameDescription
progress - Int
status - String
Example
{"progress": 987, "status": "xyz789"}

archiveManyIssueTemplatesResponse

Fields
Field NameDescription
templates - [IssueTemplate]
templatesToRoot - [String]
Example
{
  "templates": [IssueTemplate],
  "templatesToRoot": ["abc123"]
}

createMaterials

Fields
Field NameDescription
total - Float
totalImported - Float
Example
{"total": 123.45, "totalImported": 123.45}

createToolItems

Fields
Field NameDescription
total - Int
totalImported - Int
Example
{"total": 123, "totalImported": 123}

deleteToolItemsBatch

Fields
Field NameDescription
deletedCount - Int
Example
{"deletedCount": 987}

labelValuesReorder

Fields
Input FieldDescription
_id - ID
order - Int
Example
{"_id": 4, "order": 123}

timeMapColumn

Fields
Field NameDescription
groupId - ID
time - Float
Example
{"groupId": 4, "time": 123.45}

timeMapSelectionResult

Fields
Field NameDescription
columns - [timeMapColumn]
Example
{"columns": [timeMapColumn]}

timeTableColumn

Fields
Field NameDescription
groupId - ID
max - Float
min - Float
Example
{"groupId": 4, "max": 987.65, "min": 123.45}

timeTableSelectionResult

Fields
Field NameDescription
columns - [timeTableColumn]
Example
{"columns": [timeTableColumn]}