From dac549e7853c20aa657420baf7594f48a86621b5 Mon Sep 17 00:00:00 2001 From: Michael Jong <100671309+michael-jong-ds@users.noreply.github.com> Date: Wed, 10 Aug 2022 15:11:41 +0700 Subject: [PATCH] #13088 Adjust PCW schema based on Datasaur version (#45) * comment-out codegen.yml run fails otherwise * adjust sample & mapper * update schema to match * fix unit test: ProjectSettings mapper * Handled breaking version for project settings * rename old version interface * Update consensus validation for new format * updated unit test * Adjusted version parser * update unit testing * Update variable names * Use axios for getting fe config * fixed logic on parseversion * changed version to use BE * use localeCompare to compare versions * update comparison * changed default to latest Co-authored-by: Ivan Marcellino --- codegen.yml | 2 +- graphql.schema.json | 27360 +++++++++------- quickstart/doc-based/config/config.json | 5 +- quickstart/row-based/config/config.json | 5 +- quickstart/token-based/config/config.json | 5 +- sample/pcwPayload/config.json | 5 +- src/assignment/assign-auto-documents.ts | 9 +- src/config/interfaces.ts | 11 +- src/generated/graphql.ts | 852 +- src/transformer/pcw-transformer/constants.ts | 4 + .../pcw-transformer/helper/compareVersion.ts | 17 + .../helper/getDatasaurVersion.ts | 8 + .../helper/project-settings.mapper.spec.ts | 67 +- .../helper/project-settings.mapper.ts | 29 +- src/transformer/pcw-transformer/interfaces.ts | 6 +- .../pcw-transformer/setConfigFromPcw.ts | 13 +- 16 files changed, 17169 insertions(+), 11229 deletions(-) create mode 100644 src/transformer/pcw-transformer/constants.ts create mode 100644 src/transformer/pcw-transformer/helper/compareVersion.ts create mode 100644 src/transformer/pcw-transformer/helper/getDatasaurVersion.ts diff --git a/codegen.yml b/codegen.yml index f927b31..581d3d7 100644 --- a/codegen.yml +++ b/codegen.yml @@ -1,6 +1,6 @@ overwrite: true schema: 'http://localhost:8080/graphql' -documents: 'src/**/*.graphql' +# documents: 'src/**/*.graphql' generates: src/generated/graphql.ts: plugins: diff --git a/graphql.schema.json b/graphql.schema.json index d6986aa..fd9b3c9 100644 --- a/graphql.schema.json +++ b/graphql.schema.json @@ -167,6 +167,65 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "AddLabelingFunctionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "content", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataProgrammingId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "AnalyticsDashboardQueryInput", @@ -185,6 +244,26 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "labelSetFilter", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "labelType", "description": null, @@ -378,7 +457,7 @@ { "kind": "SCALAR", "name": "AnswerScalar", - "description": "Answer is in the form of a JSON object.\nThe schema of said object is generated by AJV library using the question set.\nOne AnswerScalar object is for one row (in row labeling project).\nThe property name is the question name, while the value of each property is the answer itself.\nSee issue #10427 for more information.\n\nExample:\nGiven a question set with 13 root questions of varying types, on a row labeling project with 4 columns of data:\nQ1 -> text, single answer.\nQ2 -> text, multiple answer.\nQ3 -> multiline text, single answer.\nQ4 -> multiline text, multiple answer.\nQ5 -> dropdown, multiple answer.\nQ6 -> dropdown, single answer.\nQ7 -> hierarchical dropdown, multiple answer.\nQ8 -> date.\nQ9 -> time.\nQ10 -> checkbox.\nQ11 -> slider.\nQ12 -> url.\nQ13 -> grouped attributes with 2 subfields (Q13.1 and Q13.2).\nQ13.1 -> text, single answer.\nQ13.2 -> checkbox.\n\nWith such question set, the JSON object for one row of answer would look like this:\n{\n \"Q1\": \"asd\",\n \"Q2\": [\n \"asd\",\n \"fgh\",\n \"jkl\"\n ],\n \"Q3\": \"asdasdasd\\nzxczxczxc\",\n \"Q4\": [\n \"asdasdasd\\nzxczxczxc\",\n \"asdasdasd\",\n \"qweqweqwe\"\n ],\n \"Q5\": [\n \"a\",\n \"s\"\n ],\n \"Q6\": \"d\",\n \"Q7\": [\n \"1.2\",\n \"3\"\n ],\n \"Q8\": \"2022-03-08\",\n \"Q9\": \"11:02:50.896\",\n \"Q10\": true,\n \"Q11\": \"6\",\n \"Q12\": \"https://google.com\",\n \"Q13\": [\n {\n \"Q13.1\": \"asdasd\",\n \"Q13.2\": true\n },\n {\n \"Q13.1\": \"123123\",\n \"Q13.2\": false\n }\n ]\n}", + "description": "Example of RowAnswer for one line\n\nGiven a question set with 13 root questions, on a row labeling project with 4 columns of data:\nmeta.id=4 -> text, single answer.\nmeta.id=5 -> text, multiple answer.\nmeta.id=6 -> multiline text, single answer.\nmeta.id=7 -> multiline text, multiple answer.\nmeta.id=8 -> dropdown, multiple answer.\nmeta.id=9 -> dropdown, single answer.\nmeta.id=10 -> hierarchical dropdown, multiple answer.\nmeta.id=11 -> date.\nmeta.id=12 -> time.\nmeta.id=13 -> checkbox.\nmeta.id=14 -> slider.\nmeta.id=15 -> url.\nmeta.id=16 -> grouped attributes with 2 subfields (meta.id=17 and meta.id=18).\nmeta.id=17 -> text, single answer.\nmeta.id=18 -> checkbox.\n\nWith such question set, the JSON object for one row of answer would look like this\nThe key for a RowAnswer object is ('Q' + question.meta.id)\n{\n \"Q4\": \"Short text\",\n \"Q5\": [\n \"Short text 1\",\n \"Short text 2\",\n \"Short text 3\"\n ],\n \"Q6\": \"Longer text at line 1\\nMore text at line 2\",\n \"Q7\": [\n \"Longer text at line 1\\nMore text at line 2\",\n \"Second longer text\",\n \"Third longer text\"\n ],\n \"Q8\": [\n \"Option 1\",\n \"Option 2\"\n ],\n \"Q9\": \"Option 1\",\n \"Q10\": [\n \"1.2\",\n \"3\"\n ],\n \"Q11\": \"2022-03-08\",\n \"Q12\": \"11:02:50.896\",\n \"Q13\": true,\n \"Q14\": \"6\",\n \"Q15\": \"https://datasaur.ai\",\n \"Q16\": [\n {\n \"Q17\": \"Nested short text, group 1\",\n \"Q18\": true\n },\n {\n \"Q17\": \"Nested short text, group 2\",\n \"Q18\": false\n }\n ]\n}", "fields": null, "inputFields": null, "interfaces": null, @@ -3879,6 +3958,107 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "ConflictResolution", + "description": null, + "fields": [ + { + "name": "consensus", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ConflictResolutionMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ConflictResolutionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "consensus", + "description": "Peer review / labeler consensus. It determines how many consensus so that the label will be automatically accepted.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": "Defaults to PEER_REVIEW when not provided.\nMANUAL: all labels must be manually accepted / rejected by REVIEWERs\nPEER_REVIEW: labels that have met the minimum consensus value are automatically accepted.", + "type": { + "kind": "ENUM", + "name": "ConflictResolutionMode", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ConflictResolutionMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MANUAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PEER_REVIEW", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", "name": "ConflictTextLabel", @@ -4300,6 +4480,81 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CreateExternalObjectStorageInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "bucketName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cloudService", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ObjectStorageClientName", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credentials", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExternalObjectStorageCredentialsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "CreateFileTransformerInput", @@ -4550,6 +4805,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "externalObjectStorageId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "name", "description": null, @@ -4692,10 +4959,34 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateTagInput", + "name": "CreateQuestionSetInput", "description": null, "fields": null, "inputFields": [ + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionSetItemInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "name", "description": null, @@ -4717,7 +5008,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4731,28 +5022,67 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateTagsIfNotExistInput", + "name": "CreateTagInput", "description": null, "fields": null, "inputFields": [ { - "name": "names", + "name": "name", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTagsIfNotExistInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "names", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "defaultValue": null, @@ -4913,6 +5243,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "externalObjectStorageAnswerFileKey", + "description": "Specify this if you want to select a pre-labeled file directly from your own object storage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalObjectStorageFileKey", + "description": "Specify this if you want to select a file directly from your own object storage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "extraFiles", "description": null, @@ -5371,14 +5725,14 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Dataset", + "kind": "INPUT_OBJECT", + "name": "CustomReportBuilderInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "cabinetIds", - "description": null, - "args": [], + "name": "filters", + "description": "Optional. The filters. See `CustomReportFilter`.", "type": { "kind": "LIST", "name": null, @@ -5386,31 +5740,19 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CabinetDocumentIds", + "kind": "INPUT_OBJECT", + "name": "CustomReportFilter", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], + "name": "metricsGroupId", + "description": "Required. The metrics group table ID to export.", "type": { "kind": "NON_NULL", "name": null, @@ -5420,111 +5762,156 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "kind", - "description": null, - "args": [], + "name": "selectedMetrics", + "description": "Required. The metrics to export. See `CustomReportMetric`.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "DatasetKind", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CustomReportMetric", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelCount", - "description": null, - "args": [], + "name": "selectedSegments", + "description": "Required. The segments to export. See `CustomReportClientSegment`.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CustomReportClientSegment", + "ofType": null + } + } } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CustomReportClientSegment", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DATE", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mlModelSettingId", + "name": "DOCUMENT", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "DOCUMENT_CREATED_AT", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "DOCUMENT_ORIGIN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DOCUMENT_UPDATED_AT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABEL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABEL_TYPE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OWNER_USER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ROLE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "USER", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "DatasetInput", + "name": "CustomReportFilter", "description": null, "fields": null, "inputFields": [ { - "name": "cabinets", + "name": "field", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CabinetDocumentIdsInput", - "ofType": null - } + "kind": "ENUM", + "name": "CustomReportFilterColumn", + "ofType": null } }, "defaultValue": null, @@ -5532,14 +5919,14 @@ "deprecationReason": null }, { - "name": "kind", + "name": "strategy", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "DatasetKind", + "name": "CustomReportFilterStrategy", "ofType": null } }, @@ -5548,96 +5935,196 @@ "deprecationReason": null }, { - "name": "labelCount", + "name": "value", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CustomReportFilterColumn", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DATE", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mlModelSettingId", + "name": "DOCUMENT_CREATED_AT", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "DOCUMENT_NAME", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "DOCUMENT_ORIGIN_NAME", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DOCUMENT_UPDATED_AT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABEL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABELED_BY_USER_DISPLAY_NAME", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABEL_TYPE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OWNER_USER_NAME", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_NAME", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ROLE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "USER_NAME", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CustomReportFilterStrategy", + "description": null, + "fields": null, + "inputFields": null, "interfaces": null, - "enumValues": null, + "enumValues": [ + { + "name": "CONTAINS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DATE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IS_NOT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NOT_CONTAINS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "ENUM", - "name": "DatasetKind", + "name": "CustomReportMetric", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "DOCUMENT_BASED", + "name": "ACTIVE_DURATION", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ROW_BASED", + "name": "LABELS_ACCURACY", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOKEN_BASED", + "name": "TOTAL_CONFLICTS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOTAL_CONFLICTS_RESOLVED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOTAL_LABELS_ACCEPTED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOTAL_LABELS_APPLIED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOTAL_LABELS_REJECTED", "description": null, "isDeprecated": false, "deprecationReason": null @@ -5647,11 +6134,11 @@ }, { "kind": "OBJECT", - "name": "DatasetPaginatedResponse", + "name": "CustomReportMetricsGroupTable", "description": null, "fields": [ { - "name": "nodes", + "name": "clientSegments", "description": null, "args": [], "type": { @@ -5664,8 +6151,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Dataset", + "kind": "ENUM", + "name": "CustomReportClientSegment", "ofType": null } } @@ -5675,125 +6162,87 @@ "deprecationReason": null }, { - "name": "pageInfo", + "name": "description", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "filterStrategies", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CustomReportFilterStrategy", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "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.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DaysCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "newestDate", - "description": "Required. Date string, in `yyyy-mm-dd`.", + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oldestDate", - "description": "Date string, in `yyyy-mm-dd`.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DefinitionEntry", - "description": null, - "fields": [ - { - "name": "definition", + "name": "metrics", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CustomReportMetric", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "synonyms", + "name": "name", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -5811,14 +6260,14 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DeleteExtensionElementInput", + "kind": "OBJECT", + "name": "DataProgramming", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "cabinetId", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -5828,95 +6277,69 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelSetTagItemInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "labelSetId", - "description": "Required. The labelset to modify.", + "name": "labels", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataProgrammingLabel", + "ofType": null + } + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelSetSignature", - "description": "Optional. The labelset's signature.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItemId", - "description": "Required. The ID of the labelset item to be deleted.", + "name": "labelsSignature", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelSetTagItemsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "labelSetId", - "description": "Required. The labelset to modify.", + "name": "projectId", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -5926,125 +6349,93 @@ "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelSetSignature", - "description": "Optional. The labelset's signature.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItemIds", - "description": "Required. IDs of the items to be deleted.", + "name": "updatedAt", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelsOnTextDocumentInput", + "kind": "OBJECT", + "name": "DataProgrammingLabel", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "documentId", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItemIds", + "name": "label", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DeleteLabelsOnTextDocumentResult", + "name": "Dataset", "description": null, "fields": [ { - "name": "affectedChunks", + "name": "cabinetIds", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextChunk", - "ofType": null - } + "kind": "OBJECT", + "name": "CabinetDocumentIds", + "ofType": null } } }, @@ -6052,39 +6443,43 @@ "deprecationReason": null }, { - "name": "deletedTokenLabels", + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastSavedAt", + "name": "kind", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DatasetKind", "ofType": null } }, @@ -6092,36 +6487,25 @@ "deprecationReason": null }, { - "name": "statistic", + "name": "labelCount", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocumentStatistic", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "projectId", + "name": "mlModelSettingId", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -6131,199 +6515,190 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteSentenceResult", - "description": null, - "fields": [ + }, { - "name": "addedLabels", + "name": "teamId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedLabels", + "name": "updatedAt", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DatasetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cabinets", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextLabel", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CabinetDocumentIdsInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "document", + "name": "kind", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", + "kind": "ENUM", + "name": "DatasetKind", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedCell", + "name": "labelCount", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Cell", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteTextDocumentResult", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DictionaryResult", - "description": null, - "fields": [ + }, { - "name": "entries", + "name": "mlModelSettingId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DictionaryResultEntry", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lang", + "name": "teamId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "word", + "name": "version", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "DatasetKind", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DOCUMENT_BASED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ROW_BASED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOKEN_BASED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "DictionaryResultEntry", + "name": "DatasetPaginatedResponse", "description": null, "fields": [ { - "name": "definitions", + "name": "nodes", "description": null, "args": [], "type": { @@ -6337,7 +6712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DefinitionEntry", + "name": "Dataset", "ofType": null } } @@ -6347,7 +6722,23 @@ "deprecationReason": null }, { - "name": "lexicalCategory", + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", "description": null, "args": [], "type": { @@ -6355,7 +6746,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -6364,30 +6755,59 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "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.", + "fields": null, + "inputFields": null, + "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "DateTimeDefaultValue", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "NOW", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "DocFileOptionsInput", + "name": "DaysCreatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "customHeaderColumns", - "description": "Override column headers by using these values.", + "name": "newestDate", + "description": "Required. Date string, in `yyyy-mm-dd`.", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "HeaderColumnInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -6395,11 +6815,11 @@ "deprecationReason": null }, { - "name": "firstRowAsHeader", - "description": "If the csv or xlsx file has header as the first row. Datasaur will use it as the column header for Row Based Labeling.", + "name": "oldestDate", + "description": "Date string, in `yyyy-mm-dd`.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6413,68 +6833,36 @@ }, { "kind": "OBJECT", - "name": "DocLabelObject", + "name": "DefinitionEntry", "description": null, "fields": [ { - "name": "labels", + "name": "definition", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "objectLabels", + "name": "synonyms", "description": null, "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelObject", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subLabels", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocLabelObject", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, @@ -6488,48 +6876,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "DocLabelObjectInput", + "name": "DeleteExtensionElementInput", "description": null, "fields": null, "inputFields": [ { - "name": "labels", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "objectLabels", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelObjectInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -6537,19 +6897,15 @@ "deprecationReason": null }, { - "name": "subLabels", + "name": "id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DocLabelObjectInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -6562,30 +6918,42 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DocumentAnswer", + "kind": "INPUT_OBJECT", + "name": "DeleteLabelSetTagItemInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "answers", - "description": null, - "args": [], + "name": "labelSetId", + "description": "Required. The labelset to modify.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "AnswerScalar", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentId", - "description": null, - "args": [], + "name": "labelSetSignature", + "description": "Optional. The labelset's signature.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tagItemId", + "description": "Required. The ID of the labelset item to be deleted.", "type": { "kind": "NON_NULL", "name": null, @@ -6595,35 +6963,31 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "DocumentAssignmentInput", + "name": "DeleteLabelSetTagItemsInput", "description": null, "fields": null, "inputFields": [ { - "name": "documents", - "description": "List of documents to be assigned.", + "name": "labelSetId", + "description": "Required. The labelset to modify.", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DocumentFileNameWithPart", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, @@ -6631,8 +6995,8 @@ "deprecationReason": null }, { - "name": "email", - "description": "One of `teamMemberId` or `email` must be provided.", + "name": "labelSetSignature", + "description": "Optional. The labelset's signature.", "type": { "kind": "SCALAR", "name": "String", @@ -6643,24 +7007,24 @@ "deprecationReason": null }, { - "name": "role", - "description": "The team member's role in the document.", - "type": { - "kind": "ENUM", - "name": "ProjectAssignmentRole", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamMemberId", - "description": "One of `teamMemberId` or `email` must be provided. See query `getTeamMembers` to get `teamMemberId`s.", + "name": "tagItemIds", + "description": "Required. IDs of the items to be deleted.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, @@ -6672,76 +7036,111 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DocumentBoundLabel", + "kind": "INPUT_OBJECT", + "name": "DeleteLabelsOnTextDocumentInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "answerPath", + "name": "documentId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "document", + "name": "tagItemIds", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteLabelsOnTextDocumentResult", + "description": null, + "fields": [ { - "name": "documentId", + "name": "affectedChunks", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextChunk", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hashCode", + "name": "deletedTokenLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "lastSavedAt", "description": null, "args": [], "type": { @@ -6749,7 +7148,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -6757,114 +7156,133 @@ "deprecationReason": null }, { - "name": "label", + "name": "statistic", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TextDocumentStatistic", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "questionId", + "name": "projectId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DocumentBoundLabelConflict", + "name": "DeleteSentenceResult", "description": null, "fields": [ { - "name": "conflictable", + "name": "addedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DocumentBoundLabel", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentId", + "name": "deletedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelers", + "name": "document", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resolved", + "name": "updatedCell", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Cell", "ofType": null } }, @@ -6878,46 +7296,57 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DocumentBoundLabelInput", + "kind": "OBJECT", + "name": "DeleteTextDocumentResult", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "answerPath", + "name": "id", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DictionaryResult", + "description": null, + "fields": [ { - "name": "documentId", + "name": "entries", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DictionaryResultEntry", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", + "name": "lang", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -6927,203 +7356,253 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "questionId", + "name": "word", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DocumentFileNameWithPart", + "kind": "OBJECT", + "name": "DictionaryResultEntry", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "fileName", - "description": "Required. The uploaded document filename.", + "name": "definitions", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DefinitionEntry", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "part", - "description": "Required. Zero-index numbering up to the limit set in `SplitDocumentOptionInput.number`.\nExample: if the limit is `3`, part should be `0`, `1` and `2`.\nSet this to `0` and `SplitDocumentOptionInput` to `null` to skip splitting the document.", + "name": "lexicalCategory", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DocumentMeta", + "kind": "INPUT_OBJECT", + "name": "DocFileOptionsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "cabinetId", - "description": null, - "args": [], + "name": "customHeaderColumns", + "description": "Override column headers by using these values.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "HeaderColumnInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, - "args": [], + "name": "firstRowAsHeader", + "description": "If the csv or xlsx file has header as the first row. Datasaur will use it as the column header for Row Based Labeling.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocLabelObject", + "description": null, + "fields": [ { - "name": "displayed", + "name": "labels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "format", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "objectLabels", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelObject", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelerRestricted", + "name": "subLabels", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocLabelObject", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocLabelObjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "multipleChoice", + "name": "labels", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "objectLabels", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelObjectInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", + "name": "subLabels", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -7131,17 +7610,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DocumentMetaOption", + "kind": "INPUT_OBJECT", + "name": "DocLabelObjectInput", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentAnswer", + "description": "Example of DocumentAnswer for one document\n\nGiven a question set with 13 root questions, on a row labeling project with 4 columns of data:\nquestion.index=0 -> text, single answer.\nquestion.index=1 -> text, multiple answer.\nquestion.index=2 -> multiline text, single answer.\nquestion.index=3 -> multiline text, multiple answer.\nquestion.index=4 -> dropdown, multiple answer.\nquestion.index=5 -> dropdown, single answer.\nquestion.index=6 -> hierarchical dropdown, multiple answer.\nquestion.index=7 -> date.\nquestion.index=8 -> time.\nquestion.index=9 -> checkbox.\nquestion.index=10 -> slider.\nquestion.index=11 -> url.\nquestion.index=12 -> grouped attributes with 2 subfields (question.index=13 and question.index=14).\nquestion.index=13 -> text, single answer.\nquestion.index=14 -> checkbox.\n\nThe key for a DocumentAnswer object is ('Q' + question.index)\n{\n \"Q0\": \"Short text\",\n \"Q1\": [\n \"Short text 1\",\n \"Short text 2\",\n \"Short text 3\"\n ],\n \"Q2\": \"Longer text at line 1\\nMore text at line 2\",\n \"Q3\": [\n \"Longer text at line 1\\nMore text at line 2\",\n \"Second longer text\",\n \"Third longer text\"\n ],\n \"Q4\": [\n \"Option 1\",\n \"Option 2\"\n ],\n \"Q5\": \"Option 1\",\n \"Q6\": [\n \"1.2\",\n \"3\"\n ],\n \"Q7\": \"2022-03-08\",\n \"Q8\": \"11:02:50.896\",\n \"Q9\": true,\n \"Q10\": \"6\",\n \"Q11\": \"https://datasaur.ai\",\n \"Q12\": [\n {\n \"Q13\": \"Nested short text, group 1\",\n \"Q14\": true\n },\n {\n \"Q13\": \"Nested short text, group 2\",\n \"Q14\": false\n }\n ]\n}", + "fields": [ { - "name": "required", + "name": "answers", "description": null, "args": [], "type": { @@ -7149,7 +7639,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "AnswerScalar", "ofType": null } }, @@ -7157,32 +7647,20 @@ "deprecationReason": null }, { - "name": "type", + "name": "documentId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "QuestionType", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "width", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -7192,101 +7670,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "DocumentMetaInput", + "name": "DocumentAssignmentInput", "description": null, "fields": null, "inputFields": [ { - "name": "delete", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelerRestricted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "multipleChoice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, + "name": "documents", + "description": "List of documents to be assigned.", "type": { "kind": "LIST", "name": null, @@ -7295,7 +7685,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DocumentMetaOptionInput", + "name": "DocumentFileNameWithPart", "ofType": null } } @@ -7305,11 +7695,11 @@ "deprecationReason": null }, { - "name": "required", - "description": null, + "name": "email", + "description": "One of `teamMemberId` or `email` must be provided.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7317,11 +7707,11 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "role", + "description": "The team member's role in the document.", "type": { "kind": "ENUM", - "name": "QuestionType", + "name": "ProjectAssignmentRole", "ofType": null }, "defaultValue": null, @@ -7329,11 +7719,11 @@ "deprecationReason": null }, { - "name": "width", - "description": null, + "name": "teamMemberId", + "description": "One of `teamMemberId` or `email` must be provided. See query `getTeamMembers` to get `teamMemberId`s.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -7347,35 +7737,43 @@ }, { "kind": "OBJECT", - "name": "DocumentMetaOption", + "name": "DocumentBoundLabel", "description": null, "fields": [ { - "name": "color", + "name": "answerPath", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "document", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "documentId", "description": null, "args": [], "type": { @@ -7383,7 +7781,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -7391,7 +7789,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "hashCode", "description": null, "args": [], "type": { @@ -7406,49 +7804,26 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "parentId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DocumentMetaOptionInput", - "description": null, - "fields": null, - "inputFields": [ { "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "label", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -7458,42 +7833,46 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "parentId", + "name": "questionId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "EditSentenceConflict", + "name": "DocumentBoundLabelConflict", "description": null, "fields": [ { - "name": "documentId", + "name": "conflictable", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DocumentBoundLabel", "ofType": null } }, @@ -7501,7 +7880,7 @@ "deprecationReason": null }, { - "name": "fileName", + "name": "documentId", "description": null, "args": [], "type": { @@ -7517,7 +7896,7 @@ "deprecationReason": null }, { - "name": "lines", + "name": "labelers", "description": null, "args": [], "type": { @@ -7530,8 +7909,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "User", "ofType": null } } @@ -7539,6 +7918,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "resolved", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -7548,19 +7943,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "EditSentenceInput", + "name": "DocumentBoundLabelInput", "description": null, "fields": null, "inputFields": [ { - "name": "documentId", + "name": "answerPath", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -7569,14 +7964,14 @@ "deprecationReason": null }, { - "name": "sentenceId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -7585,7 +7980,7 @@ "deprecationReason": null }, { - "name": "signature", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -7601,8 +7996,35 @@ "deprecationReason": null }, { - "name": "text", + "name": "questionId", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentFileNameWithPart", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fileName", + "description": "Required. The uploaded document filename.", "type": { "kind": "NON_NULL", "name": null, @@ -7617,12 +8039,16 @@ "deprecationReason": null }, { - "name": "tokenizationMethod", - "description": null, + "name": "part", + "description": "Required. Zero-index numbering up to the limit set in `SplitDocumentOptionInput.number`.\nExample: if the limit is `3`, part should be `0`, `1` and `2`.\nSet this to `0` and `SplitDocumentOptionInput` to `null` to skip splitting the document.", "type": { - "kind": "ENUM", - "name": "TokenizationMethod", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -7635,67 +8061,47 @@ }, { "kind": "OBJECT", - "name": "EditSentenceResult", + "name": "DocumentMeta", "description": null, "fields": [ { - "name": "addedLabels", + "name": "cabinetId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GqlConflictable", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedLabels", + "name": "description", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GqlConflictable", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "document", + "name": "displayed", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -7703,341 +8109,259 @@ "deprecationReason": null }, { - "name": "previousSentences", + "name": "format", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextSentence", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedCell", + "name": "id", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Cell", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnableExtensionElementsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "enabled", + "name": "labelerRestricted", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "extensionId", + "name": "multipleChoice", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnableProjectExtensionElementsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "cabinetId", + "name": "name", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "elements", + "name": "options", "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnableExtensionElementsInput", - "ofType": null - } + "kind": "OBJECT", + "name": "DocumentMetaOption", + "ofType": null } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ExportChartMethod", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FILE_STORAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ExportCommentType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARROW_LABEL", - "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "COMMENT", + "name": "required", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SPAN_LABEL", + "name": "type", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "QuestionType", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SPAN_TEXT", + "name": "width", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ExportDeliveryStatus", + "kind": "INPUT_OBJECT", + "name": "DocumentMetaInput", "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "DELIVERED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "FAILED", + "name": "delete", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "IN_PROGRESS", + "name": "description", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "NONE", + "name": "displayed", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "QUEUED", + "name": "id", "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ExportFileTransformerExecuteResult", - "description": "interface ExportFileTransformerExecuteResult {\n document: ExportedDocument!\n}", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExportRequestResult", - "description": "The result / payload received after initiating an export query.", - "fields": [ - { - "name": "exportId", - "description": "The export process ID. Used to check the delivery status via `getExportDeliveryStatus`, `getJob` or `getJobs`.", - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fileUrl", - "description": "Link to download the exported file. Should be used when choosing `FILE_STORAGE`.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileUrlExpiredAt", + "name": "labelerRestricted", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "queued", + "name": "multipleChoice", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect", - "description": "You should use this redirect url if you use method `DOWNLOAD`.", - "args": [], + "name": "name", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExportTeamOverviewInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "method", - "description": "Required. How the export result is delivered.", + "name": "options", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlExportMethod", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentMetaOptionInput", + "ofType": null + } } }, "defaultValue": null, @@ -8045,11 +8369,11 @@ "deprecationReason": null }, { - "name": "secret", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "required", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -8057,24 +8381,20 @@ "deprecationReason": null }, { - "name": "teamId", - "description": "Required. The team ID to export. See `getAllTeams`.", + "name": "type", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "QuestionType", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "width", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -8090,99 +8410,99 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ExportTestProjectResultInput", + "kind": "OBJECT", + "name": "DocumentMetaOption", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "externalFileStorageParameter", - "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", + "name": "color", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalFileStorageInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "method", - "description": "Required. How the export result is delivered.", + "name": "description", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "GqlExportMethod", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectId", - "description": "Required. The project ID to export. See `getProjects`.", + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "secret", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "parentId", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ExportTextProjectDocumentInput", + "name": "DocumentMetaOptionInput", "description": null, "fields": null, "inputFields": [ { - "name": "documentId", - "description": "Required. The document ID to export. See `getCabinet`.", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -8191,20 +8511,8 @@ "deprecationReason": null }, { - "name": "externalFileStorageParameter", - "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalFileStorageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileName", - "description": "Required. The filename for the export result.", + "name": "name", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -8219,8 +8527,8 @@ "deprecationReason": null }, { - "name": "fileTransformerId", - "description": "Optional. The file transformer to be used during the export process. Only applicable when `format` is `CUSTOM`. Defaults to `null`.", + "name": "parentId", + "description": null, "type": { "kind": "SCALAR", "name": "ID", @@ -8229,64 +8537,82 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DropdownConfigOptions", + "description": null, + "fields": [ { - "name": "format", - "description": "Required. The exported format depends on the project's task, please refer [here](https://datasaurai.gitbook.io/datasaur/basics/export-project#available-formats).\nUse `CUSTOM` to export using your team's custom export file transformer, specified in `fileTransformerId`.", + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "includedCommentType", - "description": "Optional. Use this field when you want to export comment and choose the CommentType which you want to export.", + "name": "label", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExportCommentType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "maskPIIEntities", - "description": "Optional. Use this field when you want to export project with masking format.", + "name": "parentId", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DropdownConfigOptionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "method", - "description": "Required. How the export result is delivered.", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlExportMethod", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -8295,23 +8621,27 @@ "deprecationReason": null }, { - "name": "secret", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "label", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "name": "parentId", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -8324,26 +8654,30 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ExportTextProjectInput", + "kind": "OBJECT", + "name": "EditSentenceConflict", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "externalFileStorageParameter", - "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", + "name": "documentId", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalFileStorageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "fileName", - "description": "Required. The filename for the export result.", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -8353,43 +8687,70 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fileTransformerId", - "description": "Optional. The file transformer to be used during the export process. Only applicable when `format` is `CUSTOM`. Defaults to `null`.", + "name": "lines", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EditSentenceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "filteredCabinetRole", - "description": "Optional. Use this field when you want to export cabinets of specified role", + "name": "documentId", + "description": null, "type": { - "kind": "ENUM", - "name": "Role", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "format", - "description": "Required. The exported format depends on the project's task, please refer [here](https://datasaurai.gitbook.io/datasaur/basics/export-project#available-formats).\nUse `CUSTOM` to export using your team's custom export file transformer, specified in `fileTransformerId`.", + "name": "sentenceId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -8398,46 +8759,14 @@ "deprecationReason": null }, { - "name": "includedCommentType", - "description": "Optional. Use this field when you want to export comment and choose the CommentType which you want to export.", + "name": "signature", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExportCommentType", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maskPIIEntities", - "description": "Optional. Use this field when you want to export project with masking format.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": "Required. How the export result is delivered.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "GqlExportMethod", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -8446,23 +8775,15 @@ "deprecationReason": null }, { - "name": "projectIds", - "description": "Required. The project(s) to be exported. See `getProjects`.", + "name": "text", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -8470,35 +8791,11 @@ "deprecationReason": null }, { - "name": "role", - "description": "Required. Export project based on specified role. ", + "name": "tokenizationMethod", + "description": null, "type": { "kind": "ENUM", - "name": "Role", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "TokenizationMethod", "ofType": null }, "defaultValue": null, @@ -8510,106 +8807,117 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "ExportableJSON", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "ExportedDocument", + "name": "EditSentenceResult", "description": null, "fields": [ { - "name": "result", + "name": "addedBoundingBoxLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Extension", - "description": null, - "fields": [ + }, { - "name": "documentType", + "name": "addedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GqlConflictable", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "elementKind", + "name": "deletedBoundingBoxLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "elementType", + "name": "deletedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GqlConflictable", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "document", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TextDocument", "ofType": null } }, @@ -8617,31 +8925,39 @@ "deprecationReason": null }, { - "name": "title", + "name": "previousSentences", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextSentence", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "updatedCell", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Cell", "ofType": null } }, @@ -8655,192 +8971,268 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ExtensionElement", + "kind": "INPUT_OBJECT", + "name": "EnableExtensionElementsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { "name": "enabled", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "extension", + "name": "extensionId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Extension", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EnableProjectExtensionElementsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "height", + "name": "cabinetId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "elements", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnableExtensionElementsInput", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ExportChartMethod", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "order", + "name": "EMAIL", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setting", + "name": "FILE_STORAGE", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtensionElementSetting", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ExportCommentType", + "description": null, + "fields": null, "inputFields": null, - "interfaces": [], - "enumValues": null, + "interfaces": null, + "enumValues": [ + { + "name": "ARROW_LABEL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "COMMENT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPAN_LABEL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPAN_TEXT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ExtensionElementSetting", + "kind": "ENUM", + "name": "ExportDeliveryStatus", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "apiToken", + "name": "DELIVERED", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiURL", + "name": "FAILED", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "confidenceScore", + "name": "IN_PROGRESS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NONE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "QUEUED", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ExportFileTransformerExecuteResult", + "description": "interface ExportFileTransformerExecuteResult {\n document: ExportedDocument!\n}", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExportRequestResult", + "description": "The result / payload received after initiating an export query.", + "fields": [ + { + "name": "exportId", + "description": "The export process ID. Used to check the delivery status via `getExportDeliveryStatus`, `getJob` or `getJobs`.", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "extensionId", - "description": null, + "name": "fileUrl", + "description": "Link to download the exported file. Should be used when choosing `FILE_STORAGE`.", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "locked", + "name": "fileUrlExpiredAt", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "modelId", + "name": "queued", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "serviceProvider", - "description": null, + "name": "redirect", + "description": "You should use this redirect url if you use method `DOWNLOAD`.", "args": [], "type": { - "kind": "ENUM", - "name": "GqlAutoLabelServiceProvider", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8854,25 +9246,29 @@ }, { "kind": "INPUT_OBJECT", - "name": "ExtensionElementSettingInput", + "name": "ExportTeamOverviewInput", "description": null, "fields": null, "inputFields": [ { - "name": "apiToken", - "description": null, + "name": "method", + "description": "Required. How the export result is delivered.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GqlExportMethod", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiURL", - "description": null, + "name": "secret", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", "type": { "kind": "SCALAR", "name": "String", @@ -8883,26 +9279,14 @@ "deprecationReason": null }, { - "name": "confidenceScore", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extensionId", - "description": null, + "name": "teamId", + "description": "Required. The team ID to export. See `getAllTeams`.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -8911,8 +9295,8 @@ "deprecationReason": null }, { - "name": "modelId", - "description": null, + "name": "url", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", "type": { "kind": "SCALAR", "name": "String", @@ -8921,18 +9305,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "serviceProvider", - "description": null, - "type": { - "kind": "ENUM", - "name": "GqlAutoLabelServiceProvider", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -8940,152 +9312,260 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ExtensionID", + "kind": "INPUT_OBJECT", + "name": "ExportTestProjectResultInput", "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "AUTO_LABEL_ROW_EXTENSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTO_LABEL_TOKEN_EXTENSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "DASHBOARD_EXTENSION_ID", - "description": null, + "name": "externalFileStorageParameter", + "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalFileStorageInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DICTIONARY_EXTENSION_ID", - "description": null, + "name": "method", + "description": "Required. How the export result is delivered.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GqlExportMethod", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DOCUMENT_LABELING_EXTENSION_ID", - "description": null, + "name": "projectId", + "description": "Required. The project ID to export. See `getProjects`.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FILE_COLLECTION_EXTENSION_ID", - "description": null, + "name": "secret", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "GRAMMAR_CHECKER_EXTENSION_ID", - "description": null, + "name": "url", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExportTextProjectDocumentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "GUIDELINES_EXTENSION_ID", - "description": null, + "name": "documentId", + "description": "Required. The document ID to export. See `getCabinet`.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "LABELS_EXTENSION_ID", - "description": null, + "name": "externalFileStorageParameter", + "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalFileStorageInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "LABEL_COLOR_LEGEND_ID", - "description": null, + "name": "fileName", + "description": "Required. The filename for the export result.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "METADATA_EXTENSION_ID", - "description": null, + "name": "fileTransformerId", + "description": "Optional. The file transformer to be used during the export process. Only applicable when `format` is `CUSTOM`. Defaults to `null`.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "REVIEW_EXTENSION_ID", - "description": null, + "name": "format", + "description": "Required. The exported format depends on the project's task, please refer [here](https://datasaurai.gitbook.io/datasaur/basics/export-project#available-formats).\nUse `CUSTOM` to export using your team's custom export file transformer, specified in `fileTransformerId`.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SEARCH_EXTENSION_ID", - "description": null, + "name": "includedCommentType", + "description": "Optional. Use this field when you want to export comment and choose the CommentType which you want to export.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExportCommentType", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TEST_EXTENSION_ID", - "description": null, + "name": "maskPIIEntities", + "description": "Optional. Use this field when you want to export project with masking format.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExternalFile", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, - "args": [], + "name": "method", + "description": "Required. How the export result is delivered.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "GqlExportMethod", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secret", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "url", - "description": null, - "args": [], + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ExternalFileStorageInput", + "name": "ExportTextProjectInput", "description": null, "fields": null, "inputFields": [ { - "name": "accessKeyId", - "description": null, + "name": "externalFileStorageParameter", + "description": "Optional. Use this field when you choose method `EXTERNAL_FILE_STORAGE`.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalFileStorageInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileName", + "description": "Required. The filename for the export result.", "type": { "kind": "NON_NULL", "name": null, @@ -9100,8 +9580,32 @@ "deprecationReason": null }, { - "name": "bucketName", - "description": null, + "name": "fileTransformerId", + "description": "Optional. The file transformer to be used during the export process. Only applicable when `format` is `CUSTOM`. Defaults to `null`.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filteredCabinetRole", + "description": "Optional. Use this field when you want to export cabinets of specified role", + "type": { + "kind": "ENUM", + "name": "Role", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": "Required. The exported format depends on the project's task, please refer [here](https://datasaurai.gitbook.io/datasaur/basics/export-project#available-formats).\nUse `CUSTOM` to export using your team's custom export file transformer, specified in `fileTransformerId`.", "type": { "kind": "NON_NULL", "name": null, @@ -9116,14 +9620,46 @@ "deprecationReason": null }, { - "name": "objectPath", - "description": null, + "name": "includedCommentType", + "description": "Optional. Use this field when you want to export comment and choose the CommentType which you want to export.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExportCommentType", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maskPIIEntities", + "description": "Optional. Use this field when you want to export project with masking format.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "method", + "description": "Required. How the export result is delivered.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "GqlExportMethod", "ofType": null } }, @@ -9132,8 +9668,89 @@ "deprecationReason": null }, { - "name": "secretAccessKey", + "name": "projectIds", + "description": "Required. The project(s) to be exported. See `getProjects`.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": "Required. Export project based on specified role. ", + "type": { + "kind": "ENUM", + "name": "Role", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secret", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Optional. Use this field when you choose method `CUSTOM_WEBHOOK`.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ExportableJSON", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExportedDocument", + "description": null, + "fields": [ + { + "name": "result", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -9143,22 +9760,22 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "FileTransformer", + "name": "Extension", "description": null, "fields": [ { - "name": "content", + "name": "documentType", "description": null, "args": [], "type": { @@ -9174,7 +9791,7 @@ "deprecationReason": null }, { - "name": "createdAt", + "name": "elementKind", "description": null, "args": [], "type": { @@ -9190,13 +9807,17 @@ "deprecationReason": null }, { - "name": "externalId", + "name": "elementType", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -9210,7 +9831,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -9218,15 +9839,15 @@ "deprecationReason": null }, { - "name": "language", + "name": "title", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "FileTransformerLanguage", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -9234,7 +9855,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "url", "description": null, "args": [], "type": { @@ -9248,17 +9869,28 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExtensionElement", + "description": null, + "fields": [ { - "name": "purpose", + "name": "enabled", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "FileTransformerPurpose", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -9266,15 +9898,15 @@ "deprecationReason": null }, { - "name": "readonly", + "name": "extension", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Extension", "ofType": null } }, @@ -9282,19 +9914,23 @@ "deprecationReason": null }, { - "name": "transpiled", + "name": "height", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "id", "description": null, "args": [], "type": { @@ -9302,7 +9938,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -9310,7 +9946,7 @@ "deprecationReason": null }, { - "name": "warmup", + "name": "order", "description": null, "args": [], "type": { @@ -9318,12 +9954,24 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "setting", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExtensionElementSetting", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -9332,166 +9980,145 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "FileTransformerLanguage", + "kind": "OBJECT", + "name": "ExtensionElementSetting", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "TYPESCRIPT", + "name": "apiToken", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FileTransformerPurpose", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "EXPORT", + "name": "apiURL", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "IMPORT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FontSize", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "EXTRA_LARGE", + "name": "confidenceScore", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LARGE", + "name": "extensionId", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "MEDIUM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FontType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MONOSPACE", + "name": "locked", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SANS_SERIF", + "name": "modelId", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SERIF", + "name": "serviceProvider", "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "GqlAutoLabelServiceProvider", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GeneralWorkspaceSettings", + "kind": "INPUT_OBJECT", + "name": "ExtensionElementSettingInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "editorFontSize", + "name": "apiToken", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FontSize", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "editorFontType", + "name": "apiURL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FontType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "editorLineSpacing", + "name": "confidenceScore", "description": null, - "args": [], "type": { - "kind": "ENUM", - "name": "GeneralWorkspaceSettingsLineSpacing", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "extensionId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -9501,207 +10128,127 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "jumpToNextDocumentOnSubmit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keepLabelBoxOpenAfterRelabel", + "name": "modelId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showIndexBar", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showLabels", + "name": "serviceProvider", "description": null, - "args": [], "type": { "kind": "ENUM", - "name": "GeneralWorkspaceSettingsShowLabels", + "name": "GqlAutoLabelServiceProvider", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GeneralWorkspaceSettingsInput", + "kind": "ENUM", + "name": "ExtensionID", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "editorFontSize", + "name": "AUTO_LABEL_ROW_EXTENSION_ID", "description": null, - "type": { - "kind": "ENUM", - "name": "FontSize", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "editorFontType", + "name": "AUTO_LABEL_TOKEN_EXTENSION_ID", "description": null, - "type": { - "kind": "ENUM", - "name": "FontType", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "editorLineSpacing", + "name": "DASHBOARD_EXTENSION_ID", "description": null, - "type": { - "kind": "ENUM", - "name": "GeneralWorkspaceSettingsLineSpacing", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "jumpToNextDocumentOnSubmit", + "name": "DICTIONARY_EXTENSION_ID", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "keepLabelBoxOpenAfterRelabel", + "name": "DOCUMENT_LABELING_EXTENSION_ID", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showIndexBar", + "name": "FILE_COLLECTION_EXTENSION_ID", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showLabels", + "name": "GRAMMAR_CHECKER_EXTENSION_ID", "description": null, - "type": { - "kind": "ENUM", - "name": "GeneralWorkspaceSettingsShowLabels", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GeneralWorkspaceSettingsLineSpacing", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "DENSE", + "name": "GUIDELINES_EXTENSION_ID", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "NORMAL", + "name": "LABELS_EXTENSION_ID", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "WIDE", + "name": "LABEL_COLOR_LEGEND_ID", "description": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GeneralWorkspaceSettingsShowLabels", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "ALWAYS", + "name": "METADATA_EXTENSION_ID", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ON_TOKEN_CLICK", + "name": "REVIEW_EXTENSION_ID", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SEARCH_EXTENSION_ID", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TEST_EXTENSION_ID", "description": null, "isDeprecated": false, "deprecationReason": null @@ -9711,35 +10258,27 @@ }, { "kind": "OBJECT", - "name": "GetBoundingBoxConflictListResult", + "name": "ExternalFile", "description": null, "fields": [ { - "name": "items", + "name": "name", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConflictBoundingBoxLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "upToDate", + "name": "url", "description": null, "args": [], "type": { @@ -9747,7 +10286,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -9762,64 +10301,69 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetCellPositionsByMetadataFilter", + "name": "ExternalFileStorageInput", "description": null, "fields": null, "inputFields": [ { - "name": "metadata", - "description": "Filter Cells by metadata.\nThe filtered Cell must have ALL the specified metadata.", + "name": "accessKeyId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CellMetadataInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetCellPositionsByMetadataPaginatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "filter", - "description": "Filter Cells by the specified parameters.", + "name": "bucketName", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetCellPositionsByMetadataFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", - "description": "Filter Cells whose `line` is within `start` (inclusive) and `end` (exclusive).\nCell's `line` is 0-based indexed.", + "name": "objectPath", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RangePageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secretAccessKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -9832,43 +10376,35 @@ }, { "kind": "OBJECT", - "name": "GetCellPositionsByMetadataPaginatedResponse", + "name": "ExternalObjectStorage", "description": null, "fields": [ { - "name": "nodes", - "description": "List of Cell positions along with the origin document ID. See type `CellPositionWithOriginDocumentId`.", + "name": "bucketName", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CellPositionWithOriginDocumentId", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "cloudService", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "ENUM", + "name": "ObjectStorageClientName", "ofType": null } }, @@ -9876,196 +10412,178 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "Total number of Cells that matches the applied filter.", + "name": "createdAt", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetCellsFilterInput", - "description": null, - "fields": null, - "inputFields": [ + "name": "credentials", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalObjectStorageCredentials", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "statuses", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CellStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetCellsPaginatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "cursor", + "name": "projects", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "team", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "GetCellsFilterInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "GetCellsPaginatedResponse", + "name": "ExternalObjectStorageCredentials", "description": null, "fields": [ { - "name": "nodes", + "name": "connectionString", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "CellScalar", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "externalId", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "roleArn", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null + "name": "serviceAccount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetCommentsFilterInput", + "name": "ExternalObjectStorageCredentialsInput", "description": null, "fields": null, "inputFields": [ { - "name": "documentId", + "name": "connectionString", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10073,31 +10591,23 @@ "deprecationReason": null }, { - "name": "hashCodes", + "name": "externalId", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "originDocumentId", + "name": "roleArn", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10105,152 +10615,145 @@ "deprecationReason": null }, { - "name": "parentId", + "name": "serviceAccount", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileTransformer", + "description": null, + "fields": [ { - "name": "resolved", + "name": "content", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetCommentsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "cursor", + "name": "externalId", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "GetCommentsFilterInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", + "name": "language", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileTransformerLanguage", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sort", + "name": "name", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GetCommentsResponse", - "description": null, - "fields": [ + }, { - "name": "nodes", + "name": "purpose", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - } + "kind": "ENUM", + "name": "FileTransformerPurpose", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "readonly", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -10258,7 +10761,19 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "transpiled", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", "description": null, "args": [], "type": { @@ -10266,192 +10781,150 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetConflictAnswersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "documentId", + "name": "warmup", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GetCurrentUserTeamMemberInput", + "kind": "ENUM", + "name": "FileTransformerLanguage", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "teamId", + "name": "TYPESCRIPT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FileTransformerPurpose", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "EXPORT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IMPORT", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GetDatasetFilterInput", + "kind": "ENUM", + "name": "FontSize", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "kinds", + "name": "EXTRA_LARGE", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DatasetKind", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mlModelSettingId", + "name": "LARGE", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "MEDIUM", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GetDatasetsPaginatedInput", + "kind": "ENUM", + "name": "FontType", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "cursor", + "name": "MONOSPACE", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "SANS_SERIF", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GetDatasetFilterInput", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", + "name": "SERIF", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "GetExportDeliveryStatusResult", + "name": "GeneralWorkspaceSettings", "description": null, "fields": [ { - "name": "deliveryStatus", + "name": "editorFontSize", "description": null, "args": [], "type": { @@ -10459,7 +10932,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ExportDeliveryStatus", + "name": "FontSize", "ofType": null } }, @@ -10467,106 +10940,119 @@ "deprecationReason": null }, { - "name": "errors", + "name": "editorFontType", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "JobError", - "ofType": null - } - } + "kind": "ENUM", + "name": "FontType", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetExternalFilesByApiInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "apiUrl", + "name": "editorLineSpacing", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsLineSpacing", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectCreationId", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "secret", + "name": "jumpToNextDocumentOnSubmit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "keepLabelBoxOpenAfterRelabel", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showIndexBar", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showLabels", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsShowLabels", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetLabelSetTemplatesFilterInput", + "name": "GeneralWorkspaceSettingsInput", "description": null, "fields": null, "inputFields": [ { - "name": "keyword", + "name": "editorFontSize", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "FontSize", "ofType": null }, "defaultValue": null, @@ -10574,31 +11060,23 @@ "deprecationReason": null }, { - "name": "ownerIds", + "name": "editorFontType", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "FontType", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "editorLineSpacing", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsLineSpacing", "ofType": null }, "defaultValue": null, @@ -10606,42 +11084,23 @@ "deprecationReason": null }, { - "name": "types", + "name": "jumpToNextDocumentOnSubmit", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LabelSetTemplateType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetLabelSetTemplatesPaginatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "cursor", + "name": "keepLabelBoxOpenAfterRelabel", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -10649,11 +11108,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "showIndexBar", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetLabelSetTemplatesFilterInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -10661,49 +11120,81 @@ "deprecationReason": null }, { - "name": "page", + "name": "showLabels", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsShowLabels", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsLineSpacing", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DENSE", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sort", + "name": "NORMAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WIDE", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GeneralWorkspaceSettingsShowLabels", + "description": null, + "fields": null, + "inputFields": null, "interfaces": null, - "enumValues": null, + "enumValues": [ + { + "name": "ALWAYS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TOKEN_CLICK", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "OBJECT", - "name": "GetLabelSetTemplatesResponse", + "name": "GetBoundingBoxConflictListResult", "description": null, "fields": [ { - "name": "nodes", + "name": "items", "description": null, "args": [], "type": { @@ -10717,7 +11208,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LabelSetTemplate", + "name": "ConflictBoundingBoxLabel", "ofType": null } } @@ -10727,23 +11218,7 @@ "deprecationReason": null }, { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", + "name": "upToDate", "description": null, "args": [], "type": { @@ -10751,7 +11226,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -10760,69 +11235,39 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetLabelSetsFilterInput", + "name": "GetCellPositionsByMetadataFilter", "description": null, "fields": null, "inputFields": [ { - "name": "keyword", - "description": "Optional. Filter labelsets by its `LabelSet.name` or `Project.name` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectStatuses", - "description": "Optional. Filter labelsets by its associated project's status.", + "name": "metadata", + "description": "Filter Cells by metadata.\nThe filtered Cell must have ALL the specified metadata.", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CellMetadataInput", + "ofType": null + } } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "teamId", - "description": "Required. Filter labelsets by team.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -10831,16 +11276,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetLabelSetsPaginatedInput", + "name": "GetCellPositionsByMetadataPaginatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "cursor", - "description": "Cursor to the current page of result.", + "name": "filter", + "description": "Filter Cells by the specified parameters.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GetCellPositionsByMetadataFilter", "ofType": null }, "defaultValue": null, @@ -10848,67 +11293,116 @@ "deprecationReason": null }, { - "name": "filter", - "description": "Filter labelsets by the specified parameters.", + "name": "page", + "description": "Filter Cells whose `line` is within `start` (inclusive) and `end` (exclusive).\nCell's `line` is 0-based indexed.", "type": { "kind": "INPUT_OBJECT", - "name": "GetLabelSetsFilterInput", + "name": "RangePageInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GetCellPositionsByMetadataPaginatedResponse", + "description": null, + "fields": [ + { + "name": "nodes", + "description": "List of Cell positions along with the origin document ID. See type `CellPositionWithOriginDocumentId`.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CellPositionWithOriginDocumentId", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "page", - "description": "Offset Pagination controls.\n`skip`: The number of labelsets to be skipped.\n`take`: The maximum number of labelsets to be returned.", + "name": "pageInfo", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sort", - "description": "Sorts the labelsets by a specified field.\n`field`: The field to sort.\n`order`: one of [ASC, DESC].", + "name": "totalCount", + "description": "Total number of Cells that matches the applied filter.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetLabelsFilterInput", + "name": "GetCellsFilterInput", "description": null, "fields": null, "inputFields": [ { - "name": "phase", + "name": "statuses", "description": null, "type": { - "kind": "ENUM", - "name": "ConflictTextLabelResolutionStrategy", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CellStatus", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -10921,7 +11415,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetLabelsPaginatedInput", + "name": "GetCellsPaginatedInput", "description": null, "fields": null, "inputFields": [ @@ -10937,6 +11431,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetCellsFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "page", "description": null, @@ -10956,7 +11462,7 @@ }, { "kind": "OBJECT", - "name": "GetLabelsPaginatedResponse", + "name": "GetCellsPaginatedResponse", "description": null, "fields": [ { @@ -10974,7 +11480,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "TextLabelScalar", + "name": "CellScalar", "ofType": null } } @@ -11029,12 +11535,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetMlModelsFilterInput", + "name": "GetCommentsFilterInput", "description": null, "fields": null, "inputFields": [ { - "name": "mlModelSettingId", + "name": "documentId", "description": null, "type": { "kind": "SCALAR", @@ -11046,15 +11552,19 @@ "deprecationReason": null }, { - "name": "teamId", + "name": "hashCodes", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -11062,42 +11572,23 @@ "deprecationReason": null }, { - "name": "types", + "name": "originDocumentId", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MLModelKind", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetMlModelsPaginatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "cursor", + "name": "parentId", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -11105,11 +11596,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "resolved", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetMlModelsFilterInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -11117,11 +11608,11 @@ "deprecationReason": null }, { - "name": "page", + "name": "userId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11135,43 +11626,60 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetPersonalTagsInput", + "name": "GetCommentsInput", "description": null, "fields": null, "inputFields": [ + { + "name": "cursor", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "filter", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GetTagsFilterInput", + "name": "GetCommentsFilterInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetPredictedLabelsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "documentId", + "name": "page", "description": null, "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortInput", + "ofType": null + } } }, "defaultValue": null, @@ -11185,11 +11693,11 @@ }, { "kind": "OBJECT", - "name": "GetProjectConflictListResult", + "name": "GetCommentsResponse", "description": null, "fields": [ { - "name": "items", + "name": "nodes", "description": null, "args": [], "type": { @@ -11203,7 +11711,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectConflictListItem", + "name": "Comment", "ofType": null } } @@ -11213,7 +11721,23 @@ "deprecationReason": null }, { - "name": "upToDate", + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", "description": null, "args": [], "type": { @@ -11221,7 +11745,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -11230,18 +11754,24 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetProjectInput", + "name": "GetConflictAnswersInput", "description": null, "fields": null, "inputFields": [ { - "name": "projectId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -11255,14 +11785,29 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetCurrentUserTeamMemberInput", + "description": null, + "fields": null, + "inputFields": [ { "name": "teamId", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -11275,37 +11820,64 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetProjectsFilterInput", - "description": "Parameters to filter the projects", + "name": "GetDataProgrammingInput", + "description": null, "fields": null, "inputFields": [ { - "name": "daysCreatedRange", - "description": "Optional. Filters projects by its creation date.", + "name": "labels", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "DaysCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "keyword", - "description": "Optional. Filters projects by keyword, searches project name and tags. By default shows all projects.", + "name": "projectId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetDatasetFilterInput", + "description": null, + "fields": null, + "inputFields": [ { "name": "kinds", - "description": "Optional. Filters projects by its kind.", + "description": null, "type": { "kind": "LIST", "name": null, @@ -11314,7 +11886,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "TextDocumentKind", + "name": "DatasetKind", "ofType": null } } @@ -11324,8 +11896,8 @@ "deprecationReason": null }, { - "name": "labelSetSignature", - "description": "Optional. Filters projects by its LabelSet. See `LabelSet.signature`.", + "name": "mlModelSettingId", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -11336,79 +11908,140 @@ "deprecationReason": null }, { - "name": "labelerTeamMemberIds", - "description": "Optional. Filters projects by its labeler.", + "name": "teamId", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetDatasetsPaginatedInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cursor", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reviewerTeamMemberIds", - "description": "Optional. Filters projects by its reviewer.", + "name": "filter", + "description": null, "type": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "GetDatasetFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GetExportDeliveryStatusResult", + "description": null, + "fields": [ + { + "name": "deliveryStatus", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "ExportDeliveryStatus", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "statuses", - "description": "Optional. Filters projects by its status.", + "name": "errors", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlProjectAndLabelingStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JobError", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetExternalFilesByApiInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "tags", - "description": "Optional. Filters projects by its tag IDs. To filter by tag names, use the `keyword` field. To see a list of tag IDs, see query `getTags` and `getPersonalTags`", + "name": "apiUrl", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -11416,31 +12049,31 @@ "deprecationReason": null }, { - "name": "teamId", - "description": "Optional. Filters projects by teams. Defaults to `null`, shows all projects under the personal workspace.", + "name": "projectCreationId", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types", - "description": "Deprecated. To filter by types (POS, NER, etc), use the `tags` or `keyword` option instead.", + "name": "secret", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TextDocumentType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -11454,13 +12087,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetProjectsPaginatedInput", - "description": "Parameters for getProjects endpoint.", + "name": "GetLabelSetTemplatesFilterInput", + "description": null, "fields": null, "inputFields": [ { - "name": "cursor", - "description": "Cursor to the current page of result.", + "name": "keyword", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -11471,23 +12104,27 @@ "deprecationReason": null }, { - "name": "filter", - "description": "Filters the projects by the specified parameters.", + "name": "ownerIds", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetProjectsFilterInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", - "description": "Offset Pagination controls.\n`skip`: The number of projects to be skipped.\n`take`: The maximum number of projects to be returned.", + "name": "teamId", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -11495,8 +12132,8 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Sorts the projects by a specified field.\n`field`: The field to sort.\n`order`: one of [ASC, DESC].", + "name": "types", + "description": null, "type": { "kind": "LIST", "name": null, @@ -11504,8 +12141,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", + "kind": "ENUM", + "name": "LabelSetTemplateType", "ofType": null } } @@ -11521,7 +12158,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetRowAnswersPaginatedInput", + "name": "GetLabelSetTemplatesPaginatedInput", "description": null, "fields": null, "inputFields": [ @@ -11537,17 +12174,49 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetLabelSetTemplatesFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "page", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RangePageInput", + "name": "OffsetPageInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -11556,7 +12225,7 @@ }, { "kind": "OBJECT", - "name": "GetRowAnswersPaginatedResponse", + "name": "GetLabelSetTemplatesResponse", "description": null, "fields": [ { @@ -11574,7 +12243,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RowAnswer", + "name": "LabelSetTemplate", "ofType": null } } @@ -11629,13 +12298,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetSpanAndArrowConflictsPaginatedInput", + "name": "GetLabelSetsFilterInput", "description": null, "fields": null, "inputFields": [ { - "name": "cursor", - "description": null, + "name": "keyword", + "description": "Optional. Filter labelsets by its `LabelSet.name` or `Project.name` field.", "type": { "kind": "SCALAR", "name": "String", @@ -11646,134 +12315,70 @@ "deprecationReason": null }, { - "name": "page", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GetSpanAndArrowConflictsPaginatedResponse", - "description": null, - "fields": [ - { - "name": "nodes", - "description": null, - "args": [], + "name": "projectStatuses", + "description": "Optional. Filter labelsets by its associated project's status.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ConflictTextLabelScalar", - "ofType": null - } + "kind": "ENUM", + "name": "GqlProjectStatus", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": null, - "args": [], + "name": "teamId", + "description": "Required. Filter labelsets by team.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "GetTagsFilterInput", + "name": "GetLabelSetsPaginatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "includeGlobalTag", - "description": null, + "name": "cursor", + "description": "Cursor to the current page of result.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetTagsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { "name": "filter", - "description": null, + "description": "Filter labelsets by the specified parameters.", "type": { "kind": "INPUT_OBJECT", - "name": "GetTagsFilterInput", + "name": "GetLabelSetsFilterInput", "ofType": null }, "defaultValue": null, @@ -11781,38 +12386,31 @@ "deprecationReason": null }, { - "name": "teamId", - "description": null, + "name": "page", + "description": "Offset Pagination controls.\n`skip`: The number of labelsets to be skipped.\n`take`: The maximum number of labelsets to be returned.", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetTeamDetailInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "sort", + "description": "Sorts the labelsets by a specified field.\n`field`: The field to sort.\n`order`: one of [ASC, DESC].", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortInput", + "ofType": null + } } }, "defaultValue": null, @@ -11826,12 +12424,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetTeamMemberAssignedProjectsInput", + "name": "GetLabelingFunctionsInput", "description": null, "fields": null, "inputFields": [ { - "name": "teamId", + "name": "dataProgrammingId", "description": null, "type": { "kind": "NON_NULL", @@ -11845,32 +12443,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GetTeamMembersFilterInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "keyword", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "roleId", + "name": "labelingFunctionIds", "description": null, "type": { "kind": "LIST", @@ -11888,18 +12463,25 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetLabelsFilterInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "teamId", + "name": "phase", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "ConflictTextLabelResolutionStrategy", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -11912,7 +12494,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetTeamMembersPaginatedInput", + "name": "GetLabelsPaginatedInput", "description": null, "fields": null, "inputFields": [ @@ -11928,18 +12510,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GetTeamMembersFilterInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "page", "description": null, @@ -11951,26 +12521,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -11979,7 +12529,7 @@ }, { "kind": "OBJECT", - "name": "GetTeamMembersPaginatedResponse", + "name": "GetLabelsPaginatedResponse", "description": null, "fields": [ { @@ -11996,8 +12546,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamMember", + "kind": "SCALAR", + "name": "TextLabelScalar", "ofType": null } } @@ -12052,12 +12602,24 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetTeamProjectAssigneesInput", + "name": "GetMlModelsFilterInput", "description": null, "fields": null, "inputFields": [ { - "name": "projectId", + "name": "mlModelSettingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", @@ -12071,6 +12633,26 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "types", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MLModelKind", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -12079,12 +12661,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetTeamTimelineEventsFilter", + "name": "GetMlModelsPaginatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "endDate", + "name": "cursor", "description": null, "type": { "kind": "SCALAR", @@ -12096,11 +12678,11 @@ "deprecationReason": null }, { - "name": "projectId", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "GetMlModelsFilterInput", "ofType": null }, "defaultValue": null, @@ -12108,26 +12690,37 @@ "deprecationReason": null }, { - "name": "startDate", + "name": "page", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetPaginatedQuestionSetFilter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "teamId", + "name": "creatorIds", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -12136,11 +12729,23 @@ "deprecationReason": null }, { - "name": "userId", + "name": "keyword", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12154,7 +12759,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetTeamTimelineEventsInput", + "name": "GetPaginatedQuestionSetInput", "description": null, "fields": null, "inputFields": [ @@ -12175,7 +12780,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GetTeamTimelineEventsFilter", + "name": "GetPaginatedQuestionSetFilter", "ofType": null }, "defaultValue": null, @@ -12187,7 +12792,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CursorPageInput", + "name": "OffsetPageInput", "ofType": null }, "defaultValue": null, @@ -12221,7 +12826,7 @@ }, { "kind": "OBJECT", - "name": "GetTeamTimelineEventsResponse", + "name": "GetPaginatedQuestionSetResponse", "description": null, "fields": [ { @@ -12239,7 +12844,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TimelineEvent", + "name": "QuestionSet", "ofType": null } } @@ -12294,35 +12899,42 @@ }, { "kind": "INPUT_OBJECT", - "name": "GetUsageInput", + "name": "GetPersonalTagsInput", "description": null, "fields": null, "inputFields": [ { - "name": "end", + "name": "filter", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GetTagsFilterInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetPredictedLabelsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "start", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -12335,131 +12947,37 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "GqlAutoLabelModelPrivacy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "PRIVATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GqlAutoLabelServiceProvider", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARDIS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ASSISTED_LABELING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CORENLP_NER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CORENLP_POS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CUSTOM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DISTILBERT_OPIEC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HUGGINGFACE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NLTK", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SENTIMENT_ANALYSIS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPACY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPARKNLP_NER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPARKNLP_POS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "GqlConflictable", + "name": "GetProjectConflictListResult", "description": null, "fields": [ { - "name": "acceptedByUserId", + "name": "items", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConflictListItem", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentId", + "name": "upToDate", "description": null, "args": [], "type": { @@ -12467,131 +12985,134 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hashCode", + "name": "projectId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "teamId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetProjectsFilterInput", + "description": "Parameters to filter the projects", + "fields": null, + "inputFields": [ { - "name": "labeledBy", - "description": null, - "args": [], + "name": "daysCreatedRange", + "description": "Optional. Filters projects by its creation date.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ConflictTextLabelResolutionStrategy", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "DaysCreatedInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labeledByUserId", - "description": null, - "args": [], + "name": "isArchived", + "description": "Optional. Filters projects by archived state.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rejectedByUserId", - "description": null, - "args": [], + "name": "keyword", + "description": "Optional. Filters projects by keyword, searches project name and tags. By default shows all projects.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], + "name": "kinds", + "description": "Optional. Filters projects by its kind.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextDocumentKind", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GqlConflictableInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "acceptedByUserId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentId", - "description": null, + "name": "labelSetSignatures", + "description": "Optional. Filters projects by its LabelSet. See `LabelSet.signature`.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -12599,15 +13120,19 @@ "deprecationReason": null }, { - "name": "hashCode", - "description": null, + "name": "labelerTeamMemberIds", + "description": "Optional. Filters projects by its labeler.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null, @@ -12615,27 +13140,39 @@ "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "reviewerTeamMemberIds", + "description": "Optional. Filters projects by its reviewer.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labeledBy", - "description": null, + "name": "statuses", + "description": "Optional. Filters projects by its status.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ConflictTextLabelResolutionStrategy", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GqlProjectAndLabelingStatus", + "ofType": null + } } }, "defaultValue": null, @@ -12643,23 +13180,31 @@ "deprecationReason": null }, { - "name": "labeledByUserId", - "description": null, + "name": "tags", + "description": "Optional. Filters projects by its tag IDs. To filter by tag names, use the `keyword` field. To see a list of tag IDs, see query `getTags` and `getPersonalTags`", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rejectedByUserId", - "description": null, + "name": "teamId", + "description": "Optional. Filters projects by teams. Defaults to `null`, shows all projects under the personal workspace.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12667,15 +13212,19 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "types", + "description": "Deprecated. To filter by types (POS, NER, etc), use the `tags` or `keyword` option instead.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextDocumentType", + "ofType": null + } } }, "defaultValue": null, @@ -12687,214 +13236,42 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "GqlExportMethod", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CUSTOM_WEBHOOK", - "description": "Sends the download link to custom webhook.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOWNLOAD", - "description": "Deprecated. Please use the other options.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOWNLOAD_REQUEST", - "description": "Returns a redirect link.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL", - "description": "Sends the download link to creator email.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTERNAL_FILE_STORAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FILE_STORAGE", - "description": "Returns file url.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GqlLabelingStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IN_PROGRESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NOT_STARTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GqlProjectAndLabelingStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IN_PROGRESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IN_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NOT_STARTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVIEW_READY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GqlProjectStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IN_PROGRESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IN_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVIEW_READY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "GrammarCheckerInput", - "description": null, + "name": "GetProjectsPaginatedInput", + "description": "Parameters for getProjects endpoint.", "fields": null, "inputFields": [ { - "name": "documentId", - "description": null, + "name": "cursor", + "description": "Cursor to the current page of result.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "grammarCheckerProviderId", - "description": null, + "name": "filter", + "description": "Filters the projects by the specified parameters.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GetProjectsFilterInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sentenceIdRange", - "description": null, + "name": "page", + "description": "Offset Pagination controls.\n`skip`: The number of projects to be skipped.\n`take`: The maximum number of projects to be returned.", "type": { "kind": "INPUT_OBJECT", - "name": "RangeInput", + "name": "OffsetPageInput", "ofType": null }, "defaultValue": null, @@ -12902,8 +13279,8 @@ "deprecationReason": null }, { - "name": "sentenceIds", - "description": null, + "name": "sort", + "description": "Sorts the projects by a specified field.\n`field`: The field to sort.\n`order`: one of [ASC, DESC].", "type": { "kind": "LIST", "name": null, @@ -12911,8 +13288,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SortInput", "ofType": null } } @@ -12927,103 +13304,106 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GrammarCheckerServiceProvider", + "kind": "INPUT_OBJECT", + "name": "GetRowAnswerConflictsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "description", + "name": "documentId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "end", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "start", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GrammarMistake", + "kind": "INPUT_OBJECT", + "name": "GetRowAnswersPaginatedInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "message", + "name": "cursor", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "position", + "name": "page", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextRange", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RangePageInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GetRowAnswersPaginatedResponse", + "description": null, + "fields": [ { - "name": "suggestions", + "name": "nodes", "description": null, "args": [], "type": { @@ -13036,8 +13416,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RowAnswer", "ofType": null } } @@ -13047,34 +13427,23 @@ "deprecationReason": null }, { - "name": "text", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Guideline", - "description": null, - "fields": [ + }, { - "name": "content", + "name": "totalCount", "description": null, "args": [], "type": { @@ -13082,171 +13451,158 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "id", + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetSpanAndArrowConflictsPaginatedInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cursor", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", + "name": "page", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "HeaderColumnInput", + "kind": "OBJECT", + "name": "GetSpanAndArrowConflictsPaginatedResponse", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "displayed", + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ConflictTextLabelScalar", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelerRestricted", + "name": "pageInfo", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "totalCount", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "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.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ImportFileTransformerExecuteResult", - "description": "interface ImportFileTransformerExecuteResult {\n document: ImportedDocument!\n labelSets: [ImportedLabelSet!]!\n}", - "fields": null, "inputFields": null, - "interfaces": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ImportTextDocumentInput", + "name": "GetSpanAndArrowRejectedLabelsPaginatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "textDocumentFile", + "name": "cursor", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Upload", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "textDocumentId", + "name": "page", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -13259,35 +13615,43 @@ }, { "kind": "OBJECT", - "name": "ImportedBoundingBoxLabel", + "name": "GetSpanAndArrowRejectedLabelsPaginatedResponse", "description": null, "fields": [ { - "name": "end", + "name": "nodes", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextCursor", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ConflictTextLabelScalar", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -13295,7 +13659,7 @@ "deprecationReason": null }, { - "name": "labelSetIndex", + "name": "totalCount", "description": null, "args": [], "type": { @@ -13309,214 +13673,239 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "nodeCount", + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTagsFilterInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "includeGlobalTag", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "start", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextCursor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x0", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "x1", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GetTagsFilterInput", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "x2", + "name": "teamId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTeamDetailInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "x3", + "name": "id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTeamMemberAssignedProjectsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "y0", + "name": "teamId", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTeamMembersFilterInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "y1", + "name": "keyword", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "y2", + "name": "roleId", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "y3", + "name": "teamId", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ImportedCell", + "kind": "INPUT_OBJECT", + "name": "GetTeamMembersPaginatedInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "content", + "name": "cursor", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "index", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GetTeamMembersFilterInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "line", + "name": "page", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "metadata", + "name": "sort", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -13524,52 +13913,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CellMetadata", + "kind": "INPUT_OBJECT", + "name": "SortInput", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokens", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ImportedDocument", + "name": "GetTeamMembersPaginatedResponse", "description": null, "fields": [ { - "name": "boundingBoxLabels", + "name": "nodes", "description": null, "args": [], "type": { @@ -13583,7 +13948,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ImportedBoundingBoxLabel", + "name": "TeamMember", "ofType": null } } @@ -13593,248 +13958,257 @@ "deprecationReason": null }, { - "name": "cells", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImportedCell", - "ofType": null - } - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "spanAndArrowLabels", + "name": "totalCount", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImportedSpanAndArrowLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "timestampLabels", + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetTeamProjectAssigneesInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "projectId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImportedTimestampLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ImportedLabelItem", + "kind": "INPUT_OBJECT", + "name": "GetTeamTimelineEventsFilter", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "id", + "name": "endDate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelName", + "name": "projectId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImportedLabelSet", - "description": null, - "fields": [ + }, { - "name": "index", + "name": "startDate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelItems", + "name": "teamId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImportedLabelItem", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "userId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ImportedSpanAndArrowLabel", + "kind": "INPUT_OBJECT", + "name": "GetTeamTimelineEventsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "destinationId", + "name": "cursor", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "end", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "GetTeamTimelineEventsFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CursorPageInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextCursor", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GetTeamTimelineEventsResponse", + "description": null, + "fields": [ { - "name": "id", + "name": "nodes", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimelineEvent", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelName", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -13842,7 +14216,7 @@ "deprecationReason": null }, { - "name": "labelSetIndex", + "name": "totalCount", "description": null, "args": [], "type": { @@ -13856,260 +14230,187 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "originId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GetUsageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "start", + "name": "end", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextCursor", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "start", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ImportedTimestampLabel", + "kind": "ENUM", + "name": "GqlAutoLabelModelPrivacy", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "end", + "name": "PRIVATE", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextCursor", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "endTimestampMillis", + "name": "PUBLIC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GqlAutoLabelServiceProvider", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ARDIS", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "ASSISTED_LABELING", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelSetIndex", + "name": "CORENLP_NER", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shouldExpand", - "description": "Whether the label position should span over the cell it is bound to.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "CORENLP_POS", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "start", + "name": "CUSTOM", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextCursor", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "startTimestampMillis", + "name": "DISTILBERT_OPIEC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "HUGGINGFACE", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InsertTargetInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "afterId", + "name": "NLTK", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beforeId", + "name": "SENTIMENT_ANALYSIS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPACY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPARKNLP_NER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPARKNLP_POS", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "InvalidAnswerInfo", + "name": "GqlConflictable", "description": null, "fields": [ { - "name": "documentId", + "name": "acceptedByUserId", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fileName", + "name": "documentId", "description": null, "args": [], "type": { @@ -14125,38 +14426,23 @@ "deprecationReason": null }, { - "name": "lines", + "name": "hashCode", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InvitationVerificationResult", - "description": null, - "fields": [ + }, { - "name": "email", + "name": "id", "description": null, "args": [], "type": { @@ -14168,15 +14454,15 @@ "deprecationReason": null }, { - "name": "isValid", + "name": "labeledBy", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "ConflictTextLabelResolutionStrategy", "ofType": null } }, @@ -14184,31 +14470,39 @@ "deprecationReason": null }, { - "name": "teamId", + "name": "labeledByUserId", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userIsRegistered", + "name": "rejectedByUserId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "LabelEntityType", "ofType": null } }, @@ -14223,253 +14517,184 @@ }, { "kind": "INPUT_OBJECT", - "name": "InviteTeamMembersInput", + "name": "GqlConflictableInput", "description": null, "fields": null, "inputFields": [ { - "name": "members", + "name": "acceptedByUserId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberInput", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Job", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "hashCode", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "JobError", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "progress", + "name": "labeledBy", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ConflictTextLabelResolutionStrategy", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "result", + "name": "labeledByUserId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "JobResult", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resultId", + "name": "rejectedByUserId", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "type", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "JobStatus", + "name": "LabelEntityType", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "JobError", + "kind": "ENUM", + "name": "GqlExportMethod", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JobErrorArgs", - "ofType": null - }, + "name": "CUSTOM_WEBHOOK", + "description": "Sends the download link to custom webhook.", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "DOWNLOAD", + "description": "Deprecated. Please use the other options.", "isDeprecated": false, "deprecationReason": null }, { - "name": "stack", + "name": "DOWNLOAD_REQUEST", + "description": "Returns a redirect link.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EMAIL", + "description": "Sends the download link to creator email.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EXTERNAL_FILE_STORAGE", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FILE_STORAGE", + "description": "Returns file url.", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "JobErrorArgs", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "JobResult", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "JobStatus", + "name": "GqlLabelingStatus", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "DELIVERED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", + "name": "COMPLETE", "description": null, "isDeprecated": false, "deprecationReason": null @@ -14481,13 +14706,7 @@ "deprecationReason": null }, { - "name": "NONE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUEUED", + "name": "NOT_STARTED", "description": null, "isDeprecated": false, "deprecationReason": null @@ -14495,32 +14714,46 @@ ], "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "KeyPayload", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "ENUM", - "name": "KeyPayloadType", + "name": "GqlProjectAndLabelingStatus", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "PROJECT", + "name": "COMPLETE", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "USER", + "name": "CREATED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IN_PROGRESS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IN_REVIEW", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NOT_STARTED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REVIEW_READY", "description": null, "isDeprecated": false, "deprecationReason": null @@ -14530,38 +14763,38 @@ }, { "kind": "ENUM", - "name": "LabelEntityType", + "name": "GqlProjectStatus", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "ARROW", + "name": "COMPLETE", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BOUNDING_BOX", + "name": "CREATED", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "QUESTION_BOUND", + "name": "IN_PROGRESS", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SPAN", + "name": "IN_REVIEW", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TIMESTAMP", + "name": "REVIEW_READY", "description": null, "isDeprecated": false, "deprecationReason": null @@ -14570,57 +14803,89 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "LabelObject", + "kind": "INPUT_OBJECT", + "name": "GrammarCheckerInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "key", + "name": "documentId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "grammarCheckerProviderId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentenceIdRange", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RangeInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentenceIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LabelObjectInput", + "kind": "OBJECT", + "name": "GrammarCheckerServiceProvider", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "key", + "name": "description", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -14630,13 +14895,29 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -14646,77 +14927,113 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "LabelPhase", + "kind": "OBJECT", + "name": "GrammarMistake", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "AUTO", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CONFLICT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "EXTERNAL", + "name": "message", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LABELER", + "name": "position", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextRange", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PRELABELED", + "name": "suggestions", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "REVIEWER", + "name": "text", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LabelSet", + "name": "Guideline", "description": null, "fields": [ { - "name": "id", - "description": "Unique identifier of the labelset.", + "name": "content", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -14724,15 +15041,27 @@ "deprecationReason": null }, { - "name": "index", - "description": "The labelset's zero-based index in a project.\nEach project can have up to 5 labelset.", + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -14740,309 +15069,363 @@ "deprecationReason": null }, { - "name": "lastUsedBy", + "name": "project", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "LastUsedProject", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HeaderColumnInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "displayed", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "signature", - "description": "A labelset signature. The signature is generated based on the labelset's items.", - "args": [], + "name": "labelerRestricted", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItems", + "name": "name", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TagItem", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "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.", + "fields": null, "inputFields": null, - "interfaces": [], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ImportFileTransformerExecuteResult", + "description": "interface ImportFileTransformerExecuteResult {\n document: ImportedDocument!\n labelSets: [ImportedLabelSet!]!\n}", + "fields": null, + "inputFields": null, + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "LabelSetConfigInput", + "name": "ImportTextDocumentInput", "description": null, "fields": null, "inputFields": [ { - "name": "activationConditionLogic", + "name": "textDocumentFile", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultValue", - "description": "Applies for `DATE`, `TIME`. Possible value `NOW`", + "name": "textDocumentId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImportedBoundingBoxLabel", + "description": null, + "fields": [ + { + "name": "end", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextCursor", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "format", - "description": "Applies for `DATE`, `TIME`. Possible values for `DATE` are `DD-MM-YYYY`, `MM-DD-YYYY`, `YYYY-MM-DD` `DD/MM/YYYY`, `MM/DD/YYYY` and `YYYY/MM/DD`. Possible values for `TIME` are `HH:mm:ss`, `HH:mm`, `HH.mm.ss`, and `HH.mm`", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hint", - "description": "Applies for `CHECKBOX`.", + "name": "labelSetIndex", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": "Applies for `SLIDER`.", + "name": "nodeCount", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "maxLength", - "description": "Applies for `TEXT`.", + "name": "start", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextCursor", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": "Applies for `SLIDER`.", + "name": "type", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LabelEntityType", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "minLength", - "description": "Applies for `TEXT`.", + "name": "x0", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiline", - "description": "Applies for `TEXT`. Set it as true if you want to enter long text.", + "name": "x1", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiple", - "description": "Applies for `TEXT`, `NESTED`, `DROPDOWN`, `HIERARCHICAL_DROPDOWN`. Set it as true if you want to have multiple answers for this question.", + "name": "x2", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", - "description": "Applies for `DROPDOWN`, `HIERARCHICAL_DROPDOWN` and `TOKEN`.\n- `TOKEN`: List of labelset items in the labelset. Each item needs at least an ID and a label.", + "name": "x3", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelSetConfigOptionsInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pattern", - "description": "Applies for `TEXT`. This field can contain a regex string, which the browser natively uses for validation. E.g. `[0-9]*`", + "name": "y0", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "questions", - "description": "Applies for `NESTED`.", + "name": "y1", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelSetTemplateItemInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "step", - "description": "Applies for `SLIDER`.", + "name": "y2", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "theme", - "description": "Applies for `SLIDER`.", + "name": "y3", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "SliderTheme", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LabelSetConfigOptions", - "description": "Represents a labelset item.", + "name": "ImportedCell", + "description": null, "fields": [ { - "name": "color", - "description": "The labelset item color when shown in web UI. 6 digit hex string, prefixed by #. Example: #df3920.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Unique identifier of the labelset item.", + "name": "content", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -15050,15 +15433,15 @@ "deprecationReason": null }, { - "name": "label", - "description": "The labelset item name shown in web UI.", + "name": "index", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15066,155 +15449,128 @@ "deprecationReason": null }, { - "name": "parentId", - "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LabelSetConfigOptionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "color", - "description": "Optional. Sets the labelset item color when shown in web UI. Accepts a 6 digit hex string, prefixed by #. Example: #df3920.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", + "name": "line", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Required. Unique identifier of the labelset item.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", - "description": "Required. The labelset item name shown in web UI.", + "name": "metadata", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CellMetadata", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "parentId", - "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", + "name": "tokens", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LabelSetInput", + "kind": "OBJECT", + "name": "ImportedDocument", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "boundingBoxLabels", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImportedBoundingBoxLabel", + "ofType": null + } + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "cells", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImportedCell", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItems", + "name": "spanAndArrowLabels", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -15225,30 +15581,19 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagItemInput", + "kind": "OBJECT", + "name": "ImportedSpanAndArrowLabel", "ofType": null } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LabelSetPaginatedResponse", - "description": null, - "fields": [ + }, { - "name": "nodes", - "description": "List of labelsets. See type `LabelSet`.", + "name": "timestampLabels", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -15261,7 +15606,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LabelSet", + "name": "ImportedTimestampLabel", "ofType": null } } @@ -15269,17 +15614,28 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImportedLabelItem", + "description": null, + "fields": [ { - "name": "pageInfo", + "name": "id", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -15287,15 +15643,15 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "Total number of labelsets that matches the applied filter.", + "name": "labelName", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -15304,23 +15660,17 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LabelSetTemplate", + "name": "ImportedLabelSet", "description": null, "fields": [ { - "name": "count", + "name": "index", "description": null, "args": [], "type": { @@ -15336,15 +15686,74 @@ "deprecationReason": null }, { - "name": "createdAt", + "name": "labelItems", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImportedLabelItem", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImportedSpanAndArrowLabel", + "description": null, + "fields": [ + { + "name": "destinationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextCursor", "ofType": null } }, @@ -15360,7 +15769,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -15368,27 +15777,23 @@ "deprecationReason": null }, { - "name": "items", + "name": "labelName", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSetTemplateItem", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "labelSetIndex", "description": null, "args": [], "type": { @@ -15396,7 +15801,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15404,27 +15809,27 @@ "deprecationReason": null }, { - "name": "owner", + "name": "originId", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "User", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "start", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LabelSetTemplateType", + "kind": "OBJECT", + "name": "TextCursor", "ofType": null } }, @@ -15432,15 +15837,15 @@ "deprecationReason": null }, { - "name": "updatedAt", + "name": "type", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LabelEntityType", "ofType": null } }, @@ -15455,59 +15860,43 @@ }, { "kind": "OBJECT", - "name": "LabelSetTemplateItem", + "name": "ImportedTimestampLabel", "description": null, "fields": [ { - "name": "activationConditionLogic", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bindToColumn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", + "name": "end", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextCursor", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultValue", + "name": "endTimestampMillis", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "id", "description": null, "args": [], "type": { @@ -15515,7 +15904,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15523,39 +15912,43 @@ "deprecationReason": null }, { - "name": "format", + "name": "labelSetIndex", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hint", - "description": null, + "name": "shouldExpand", + "description": "Whether the label position should span over the cell it is bound to.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "start", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "TextCursor", "ofType": null } }, @@ -15563,19 +15956,7 @@ "deprecationReason": null }, { - "name": "index", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelSetTemplateId", + "name": "startTimestampMillis", "description": null, "args": [], "type": { @@ -15583,7 +15964,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15591,79 +15972,154 @@ "deprecationReason": null }, { - "name": "max", + "name": "type", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LabelEntityType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InsertTargetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "maxLength", + "name": "afterId", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "beforeId", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "minLength", + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InvalidAnswerInfo", + "description": null, + "fields": [ + { + "name": "documentId", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiline", + "name": "fileName", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "multipleChoice", + "name": "lines", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InvitationVerificationResult", + "description": null, + "fields": [ + { + "name": "email", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "isValid", "description": null, "args": [], "type": { @@ -15671,7 +16127,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -15679,95 +16135,165 @@ "deprecationReason": null }, { - "name": "options", - "description": "For type:\n- `TOKEN`: List of labelset items in the labelset", + "name": "teamId", + "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSetConfigOptions", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parentIndex", + "name": "userIsRegistered", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InviteTeamMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "pattern", + "name": "members", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamMemberInput", + "ofType": null + } + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "required", + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Job", + "description": null, + "fields": [ + { + "name": "createdAt", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "step", + "name": "errors", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JobError", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "theme", + "name": "id", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "SliderTheme", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "progress", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LabelSetTemplateItemType", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -15775,171 +16301,210 @@ "deprecationReason": null }, { - "name": "updatedAt", + "name": "result", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "JobResult", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LabelSetTemplateItemInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "bindToColumn", - "description": "Optional. Binds to the specified column", + "name": "resultId", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "config", - "description": "Required. Configures the labelset items.", + "name": "status", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LabelSetConfigInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "JobStatus", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", - "description": "Message shown to Labeler.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JobError", + "description": null, + "fields": [ { - "name": "name", - "description": "Optional. Column name.", + "name": "args", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "JobErrorArgs", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "required", - "description": "This marks whether the question is required to answer or not.", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": "Optional. Type of the question", + "name": "stack", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "LabelSetTemplateItemType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "JobErrorArgs", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "JobResult", + "description": null, + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "LabelSetTemplateItemType", + "name": "JobStatus", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "CHECKBOX", - "description": "This type provides a checkbox.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATE", - "description": "This type provides a date picker.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DROPDOWN", - "description": "This type provides a dropdown with multiple options.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HIERARCHICAL_DROPDOWN", - "description": "This type provides a dropdown with hierarchical options.", + "name": "DELIVERED", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "NESTED", - "description": "You can create nested questions. Questions inside a question by using this type.", + "name": "FAILED", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SLIDER", - "description": "This type provides a slider with customizeable minimum value and maximum value.", + "name": "IN_PROGRESS", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TEXT", - "description": "This type provides a text area.", + "name": "NONE", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TIME", - "description": "This type provides a time picker.", + "name": "QUEUED", + "description": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "KeyPayload", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "KeyPayloadType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "TOKEN", - "description": "This type provides a token field.", + "name": "PROJECT", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "URL", - "description": "This type provides a URL field.", + "name": "USER", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -15948,20 +16513,38 @@ }, { "kind": "ENUM", - "name": "LabelSetTemplateType", + "name": "LabelEntityType", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "QUESTION", + "name": "ARROW", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOKEN", + "name": "BOUNDING_BOX", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "QUESTION_BOUND", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SPAN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TIMESTAMP", "description": null, "isDeprecated": false, "deprecationReason": null @@ -15970,14 +16553,14 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LabelSetTextProjectInput", + "kind": "OBJECT", + "name": "LabelObject", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "key", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -15987,59 +16570,39 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", + "name": "value", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelSetTextProjectOptionInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "LabelSetTextProjectOptionInput", + "name": "LabelObjectInput", "description": null, "fields": null, "inputFields": [ { - "name": "color", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "key", "description": null, "type": { "kind": "NON_NULL", @@ -16055,7 +16618,7 @@ "deprecationReason": null }, { - "name": "label", + "name": "value", "description": null, "type": { "kind": "NON_NULL", @@ -16069,18 +16632,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "parentId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -16088,79 +16639,67 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "LabelerStatistic", + "kind": "ENUM", + "name": "LabelPhase", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "numberOfAcceptedLabels", + "name": "AUTO", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfRejectedLabels", + "name": "CONFLICT", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", + "name": "EXTERNAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABELER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRELABELED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REVIEWER", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LabelingStatus", + "name": "LabelSet", "description": null, "fields": [ { - "name": "isCompleted", - "description": null, + "name": "id", + "description": "Unique identifier of the labelset.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -16168,15 +16707,15 @@ "deprecationReason": null }, { - "name": "isStarted", - "description": null, + "name": "index", + "description": "The labelset's zero-based index in a project.\nEach project can have up to 5 labelset.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -16184,31 +16723,27 @@ "deprecationReason": null }, { - "name": "labeler", + "name": "lastUsedBy", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - } + "kind": "OBJECT", + "name": "LastUsedProject", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statistic", + "name": "name", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelingStatusStatistic", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16216,7 +16751,19 @@ "deprecationReason": null }, { - "name": "statisticsToShow", + "name": "signature", + "description": "A labelset signature. The signature is generated based on the labelset's items.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tagItems", "description": null, "args": [], "type": { @@ -16230,7 +16777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StatisticItem", + "name": "TagItem", "ofType": null } } @@ -16246,215 +16793,239 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "LabelingStatusStatistic", + "kind": "INPUT_OBJECT", + "name": "LabelSetConfigInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "documentIds", + "name": "activationConditionLogic", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "defaultValue", + "description": "Applies for `DATE`, `TIME`. Possible value `NOW`", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfAcceptedLabels", - "description": null, - "args": [], + "name": "format", + "description": "Applies for `DATE`, `TIME`. Possible values for `DATE` are `DD-MM-YYYY`, `MM-DD-YYYY`, `YYYY-MM-DD` `DD/MM/YYYY`, `MM/DD/YYYY` and `YYYY/MM/DD`. Possible values for `TIME` are `HH:mm:ss`, `HH:mm`, `HH.mm.ss`, and `HH.mm`", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfDocuments", - "description": null, - "args": [], + "name": "hint", + "description": "Applies for `CHECKBOX`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfRejectedLabels", - "description": null, - "args": [], + "name": "max", + "description": "Applies for `SLIDER`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfSentences", - "description": null, - "args": [], + "name": "maxLength", + "description": "Applies for `TEXT`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfTouchedDocuments", - "description": null, - "args": [], + "name": "min", + "description": "Applies for `SLIDER`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfTouchedSentences", - "description": null, - "args": [], + "name": "minLength", + "description": "Applies for `TEXT`.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfUnresolvedLabels", - "description": null, - "args": [], + "name": "multiline", + "description": "Applies for `TEXT`. Set it as true if you want to enter long text.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalLabelsApplied", - "description": null, - "args": [], + "name": "multiple", + "description": "Applies for `TEXT`, `NESTED`, `DROPDOWN`, `HIERARCHICAL_DROPDOWN`. Set it as true if you want to have multiple answers for this question.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": "Applies for `DROPDOWN`, `HIERARCHICAL_DROPDOWN` and `TOKEN`.\n- `TOKEN`: List of labelset items in the labelset. Each item needs at least an ID and a label.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelSetConfigOptionsInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalTimeSpent", - "description": null, - "args": [], + "name": "pattern", + "description": "Applies for `TEXT`. This field can contain a regex string, which the browser natively uses for validation. E.g. `[0-9]*`", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questions", + "description": "Applies for `NESTED`.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelSetTemplateItemInput", + "ofType": null + } } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "step", + "description": "Applies for `SLIDER`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "theme", + "description": "Applies for `SLIDER`.", + "type": { + "kind": "ENUM", + "name": "SliderTheme", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LastUsedProject", - "description": null, + "name": "LabelSetConfigOptions", + "description": "Represents a labelset item.", "fields": [ { - "name": "name", - "description": null, + "name": "color", + "description": "The labelset item color when shown in web UI. 6 digit hex string, prefixed by #. Example: #df3920.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Unique identifier of the labelset item.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -16462,20 +17033,32 @@ "deprecationReason": null }, { - "name": "projectId", - "description": null, + "name": "label", + "description": "The labelset item name shown in web UI.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "parentId", + "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -16485,59 +17068,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "LaunchTextProjectInput", - "description": "Configuration parameter for project creation.", + "name": "LabelSetConfigOptionsInput", + "description": null, "fields": null, "inputFields": [ { - "name": "assignees", - "description": "Deprecated. Please use field `documentAssignments` instead.", + "name": "color", + "description": "Optional. Sets the labelset item color when shown in web UI. Accepts a 6 digit hex string, prefixed by #. Example: #df3920.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAssignmentByNameInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentAssignments", - "description": "Optional. Team projects only. Assign specific document to specific team member.", + "name": "description", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DocumentAssignmentInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "documentSettings", - "description": "Document related configuration, such as token length and file transformer.", + "name": "id", + "description": "Required. Unique identifier of the labelset item.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TextDocumentSettingsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -16546,19 +17113,15 @@ "deprecationReason": null }, { - "name": "documents", - "description": "Required. The documents associated to the project. Please ensure all the documents uploaded are of the same type.", + "name": "label", + "description": "Required. The labelset item name shown in web UI.", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTextDocumentInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -16566,8 +17129,8 @@ "deprecationReason": null }, { - "name": "guidelineId", - "description": "Optional. Sets the labeling guideline for the project.", + "name": "parentId", + "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", "type": { "kind": "SCALAR", "name": "ID", @@ -16576,21 +17139,28 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelSetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "kinds", - "description": "Required. Sets the project kinds.", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TextDocumentKind", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, @@ -16598,164 +17168,192 @@ "deprecationReason": null }, { - "name": "labelSetIDs", - "description": "Optional. LabelSetId for Token Based Labeling. You can provide labelSetId when creating project or you can create LabelSet after the project is created.", + "name": "index", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelSetId", - "description": "Deprecated. Please use field `labelSets` instead.", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelSets", - "description": "Optional. LabelSets for token based labeling. No need to create them separately, just pass these data when launching the project.", + "name": "tagItems", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelSetTextProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagItemInput", + "ofType": null + } } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LabelSetPaginatedResponse", + "description": null, + "fields": [ { - "name": "labelerExtensions", - "description": "Optional. Sets the default Datasaur extensions for labelers.", + "name": "nodes", + "description": "List of labelsets. See type `LabelSet`.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ExtensionID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "Required. Sets the project name.", + "name": "pageInfo", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectCreationId", - "description": "Used as unique identifier for the project creation.", + "name": "totalCount", + "description": "Total number of labelsets that matches the applied filter.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "projectSettings", - "description": "Sets the new project settings", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectSettingsInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LabelSetTemplate", + "description": null, + "fields": [ { - "name": "purpose", - "description": "Optional. Defaults to `LABELING`", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectPurpose", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewerExtensions", - "description": "Optional. Sets the default Datasaur extensions for reviewers.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtensionID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "splitDocumentOption", - "description": "Optional. Sets the document splitting behavior. Assign `null` to skip document splitting", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SplitDocumentOptionInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagNames", - "description": "The tag names associated with the project", + "name": "items", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -16763,52 +17361,45 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LabelSetTemplateItem", "ofType": null } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", - "description": "Optional. Defaults to `null`, which creates a personal project.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": "Use DOC when you want to create Doc Based Labeling or [any project template](https://datasaurai.gitbook.io/datasaur/basics/creating-a-project/project-templates)", + "name": "owner", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TextDocumentType", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Legend", - "description": null, - "fields": [ + }, { - "name": "alignment", + "name": "type", "description": null, "args": [], "type": { @@ -16816,7 +17407,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "LegendAlignment", + "name": "LabelSetTemplateType", "ofType": null } }, @@ -16824,15 +17415,15 @@ "deprecationReason": null }, { - "name": "position", + "name": "updatedAt", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LegendPosition", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16846,130 +17437,130 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "LegendAlignment", + "kind": "OBJECT", + "name": "LabelSetTemplateItem", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CENTER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "END", + "name": "activationConditionLogic", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "START", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LegendPosition", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BOTTOM", + "name": "bindToColumn", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "IN", + "name": "createdAt", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LEFT", + "name": "defaultValue", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "NONE", + "name": "description", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "RIGHT", + "name": "format", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LoginInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "betaKey", + "name": "hint", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "invitationKey", + "name": "index", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "password", + "name": "labelSetTemplateId", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -16979,155 +17570,83 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "recaptcha", + "name": "max", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect", + "name": "maxLength", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LoginSuccess", - "description": null, - "fields": [ + }, { - "name": "redirect", + "name": "min", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", + "name": "minLength", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MLModelKind", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "DOCUMENT_BASED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ROW_BASED", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "TOKEN_BASED", + "name": "multiline", "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MediaDisplayStrategy", - "description": "Determines how media displayed in editor.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "FULL", - "description": "Media will be rendered with its original size.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NONE", - "description": "Media will be not rendered.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "THUMBNAIL", - "description": "Media will be rendered as thumbnail.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MlModel", - "description": null, - "fields": [ - { - "name": "createdAt", + "name": "multipleChoice", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "name", "description": null, "args": [], "type": { @@ -17135,7 +17654,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -17143,80 +17662,112 @@ "deprecationReason": null }, { - "name": "kind", - "description": null, + "name": "options", + "description": "For type:\n- `TOKEN`: List of labelset items in the labelset", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MLModelKind", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSetConfigOptions", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mlModelSettingId", + "name": "parentIndex", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "pattern", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "required", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "step", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "theme", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SliderTheme", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LabelSetTemplateItemType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -17226,19 +17777,196 @@ }, { "kind": "INPUT_OBJECT", - "name": "MlModelInput", + "name": "LabelSetTemplateItemInput", "description": null, "fields": null, "inputFields": [ { - "name": "kind", + "name": "bindToColumn", + "description": "Optional. Binds to the specified column", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config", + "description": "Required. Configures the labelset items.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelSetConfigInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "Message shown to Labeler.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Optional. Column name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": "This marks whether the question is required to answer or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Optional. Type of the question", + "type": { + "kind": "ENUM", + "name": "LabelSetTemplateItemType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LabelSetTemplateItemType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CHECKBOX", + "description": "This type provides a checkbox.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DATE", + "description": "This type provides a date picker.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DROPDOWN", + "description": "This type provides a dropdown with multiple options.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HIERARCHICAL_DROPDOWN", + "description": "This type provides a dropdown with hierarchical options.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NESTED", + "description": "You can create nested questions. Questions inside a question by using this type.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SLIDER", + "description": "This type provides a slider with customizeable minimum value and maximum value.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TEXT", + "description": "This type provides a text area.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TIME", + "description": "This type provides a time picker.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOKEN", + "description": "This type provides a token field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "URL", + "description": "This type provides a URL field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LabelSetTemplateType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUESTION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOKEN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelSetTextProjectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MLModelKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17247,7 +17975,42 @@ "deprecationReason": null }, { - "name": "meta", + "name": "options", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelSetTextProjectOptionInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelSetTextProjectOptionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "color", "description": null, "type": { "kind": "SCALAR", @@ -17259,14 +18022,14 @@ "deprecationReason": null }, { - "name": "mlModelSettingId", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -17275,14 +18038,14 @@ "deprecationReason": null }, { - "name": "teamId", + "name": "label", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -17291,16 +18054,12 @@ "deprecationReason": null }, { - "name": "version", + "name": "parentId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -17313,43 +18072,35 @@ }, { "kind": "OBJECT", - "name": "MlModelPaginatedResponse", + "name": "LabelerStatistic", "description": null, "fields": [ { - "name": "nodes", + "name": "numberOfAcceptedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MlModel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "numberOfRejectedLabels", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -17357,7 +18108,7 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "userId", "description": null, "args": [], "type": { @@ -17365,7 +18116,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -17374,23 +18125,17 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "MlModelSetting", + "name": "LabelingFunction", "description": null, "fields": [ { - "name": "createdAt", + "name": "active", "description": null, "args": [], "type": { @@ -17398,7 +18143,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -17406,7 +18151,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "content", "description": null, "args": [], "type": { @@ -17414,7 +18159,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -17422,55 +18167,39 @@ "deprecationReason": null }, { - "name": "labelSetSignatures", + "name": "createdAt", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labels", + "name": "dataProgrammingId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "id", "description": null, "args": [], "type": { @@ -17485,6 +18214,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updatedAt", "description": null, @@ -17508,26 +18253,78 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "MlModelSettingInput", + "kind": "OBJECT", + "name": "LabelingStatus", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "isCompleted", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelSetSignatures", + "name": "isStarted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labeler", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statistic", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelingStatusStatistic", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statisticsToShow", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -17538,20 +18335,31 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StatisticItem", "ofType": null } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LabelingStatusStatistic", + "description": null, + "fields": [ { - "name": "labels", + "name": "documentIds", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -17563,19 +18371,19 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -17585,175 +18393,83 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MultipleLabelSetInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "index", + "name": "numberOfAcceptedLabels", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "numberOfDocuments", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagItems", + "name": "numberOfRejectedLabels", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagItemInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "fields": [ + }, { - "name": "acceptBoundingBoxConflict", + "name": "numberOfSentences", "description": null, - "args": [ - { - "name": "boundingBoxLabelIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BoundingBoxLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "acceptInvitation", + "name": "numberOfTouchedDocuments", "description": null, - "args": [ - { - "name": "invitationKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -17761,228 +18477,129 @@ "deprecationReason": null }, { - "name": "acceptTimestampLabelConflicts", + "name": "numberOfTouchedSentences", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimestampLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "activateUser", + "name": "numberOfUnresolvedLabels", "description": null, - "args": [ - { - "name": "activationCode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalLabelsApplied", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "LoginSuccess", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addActiveDuration", + "name": "totalTimeSpent", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddActiveDurationInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LabelingTracker", + "description": null, + "fields": [ + { + "name": "lastLabeledLine", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addFileToDataset", + "name": "textDocumentId", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddFileToDatasetInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LastUsedProject", + "description": null, + "fields": [ { - "name": "addTextDocumentLabels", + "name": "name", "description": null, - "args": [ - { - "name": "inputs", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTextDocumentLabelsInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "textDocumentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17990,75 +18607,36 @@ "deprecationReason": null }, { - "name": "allowIPs", + "name": "projectId", "description": null, - "args": [ - { - "name": "allowedIPs", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LaunchTextProjectInput", + "description": "Configuration parameter for project creation.", + "fields": null, + "inputFields": [ { - "name": "appendLabelSetTagItems", - "description": "Adds new labelset item to the specified labelset.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AppendLabelSetTagItemsInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "assignees", + "description": "Deprecated. Please use field `documentAssignments` instead.", "type": { "kind": "LIST", "name": null, @@ -18066,436 +18644,336 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TagItem", + "kind": "INPUT_OBJECT", + "name": "ProjectAssignmentByNameInput", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "autoLabelReviewTextDocumentBasedOnConsensus", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AutoLabelReviewTextDocumentBasedOnConsensusInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "documentAssignments", + "description": "Optional. Team projects only. Assign specific document to specific team member.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentAssignmentInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "autoLabelTokenBasedProject", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AutoLabelTokenBasedProjectInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "documentSettings", + "description": "Document related configuration, such as token length and custom script.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Job", + "kind": "INPUT_OBJECT", + "name": "TextDocumentSettingsInput", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "awsMarketplaceReportMeteredRecords", - "description": null, - "args": [ - { - "name": "timestamp", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "documents", + "description": "Required. The documents associated to the project. Please ensure all the documents uploaded are of the same type.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTextDocumentInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "awsMarketplaceSubscription", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AwsMarketplaceSubscriptionInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "externalObjectStorageId", + "description": "Optional. Set the external object storage to use. Null means default object storage", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "guidelineId", + "description": "Optional. Sets the labeling guideline for the project.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kinds", + "description": "Required. Sets the project kinds.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextDocumentKind", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bulkSetPasswordsExpiredAt", - "description": null, - "args": [ - { - "name": "passwordExpiredAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "labelSetIDs", + "description": "Optional. LabelSetId for Token Based Labeling. You can provide labelSetId when creating project or you can create LabelSet after the project is created.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "calculateAgreementTables", - "description": null, - "args": [ - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "labelSetId", + "description": "Deprecated. Please use field `labelSets` instead.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelSets", + "description": "Optional. LabelSets for token based labeling. No need to create them separately, just pass these data when launching the project.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Job", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelSetTextProjectInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "calculatePairKappas", - "description": null, - "args": [ - { - "name": "projectIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "labelerExtensions", + "description": "Optional. Sets the default Datasaur extensions for labelers.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "ExtensionID", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clearAllLabelsOnTextDocument", - "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "name", + "description": "Required. Sets the project name.", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ClearAllLabelsOnTextDocumentResult", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clearAllSpanAndArrowLabels", - "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "projectCreationId", + "description": "Used as unique identifier for the project creation.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSettings", + "description": "Sets the new project settings", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectSettingsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "purpose", + "description": "Optional. Defaults to `LABELING`", + "type": { + "kind": "ENUM", + "name": "ProjectPurpose", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewerExtensions", + "description": "Optional. Sets the default Datasaur extensions for reviewers.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ClearAllLabelsOnTextDocumentResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtensionID", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectDataset", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CollectDatasetInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "splitDocumentOption", + "description": "Optional. Sets the document splitting behavior. Assign `null` to skip document splitting", + "type": { + "kind": "INPUT_OBJECT", + "name": "SplitDocumentOptionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tagNames", + "description": "The tag names associated with the project", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": "Optional. Defaults to `null`, which creates a personal project.", "type": { - "kind": "OBJECT", - "name": "Job", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createComment", + "name": "type", + "description": "Use DOC when you want to create Doc Based Labeling or [any project template](https://datasaurai.gitbook.io/datasaur/basics/creating-a-project/project-templates)", + "type": { + "kind": "ENUM", + "name": "TextDocumentType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Legend", + "description": null, + "fields": [ + { + "name": "alignment", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hashCode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Comment", + "kind": "ENUM", + "name": "LegendAlignment", "ofType": null } }, @@ -18503,327 +18981,318 @@ "deprecationReason": null }, { - "name": "createCustomAPI", + "name": "position", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCustomAPIInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomAPI", + "kind": "ENUM", + "name": "LegendPosition", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LegendAlignment", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "createFileTransformer", + "name": "CENTER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "END", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "START", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LegendPosition", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BOTTOM", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LEFT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NONE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "RIGHT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOP", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LoginInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "betaKey", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateFileTransformerInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileTransformer", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createGuideline", + "name": "email", "description": null, - "args": [ - { - "name": "content", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Guideline", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createLabelSet", - "description": "Creates a new labelset.\nThe created labelset will not appear in `getLabelSets` or `getPaginatedLabelSets` until it is used in at least one project.\nTo use it in a project, use the returned `LabelSet.id` to create a new project via `launchTextProjectAsync`. Put the ID in the `labelSetIDs` field.\nTo add the labelset to an existing project document, use the `updateTextDocument` mutation.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateLabelSetInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "invitationKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelSet", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createLabelSetTemplate", - "description": "Creates a new labelset template.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateLabelSetTemplateInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "recaptcha", + "description": null, "type": { - "kind": "OBJECT", - "name": "LabelSetTemplate", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createMultipleLabelSet", - "description": "Creates multiple labelsets at once.\nThe created labelsets will not appear in `getLabelSets` or `getPaginatedLabelSets` until they are used in at least one project.\nTo use it in a project, use the returned `LabelSet.id` to create a new project via `launchTextProjectAsync`. Put the ID in the `labelSetIDs` field.\nTo add the labelset to an existing project document, use the `updateTextDocument` mutation.", - "args": [ - { - "name": "labelSets", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MultipleLabelSetInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "redirect", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LoginSuccess", + "description": null, + "fields": [ + { + "name": "redirect", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createPersonalTag", + "name": "user", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreatePersonalTagInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "User", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "MLModelKind", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DOCUMENT_BASED", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createProjectTemplate", + "name": "ROW_BASED", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectTemplateInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOKEN_BASED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "MediaDisplayStrategy", + "description": "Determines how media displayed in editor.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "FULL", + "description": "Media will be rendered with its original size.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NONE", + "description": "Media will be not rendered.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "THUMBNAIL", + "description": "Media will be rendered as thumbnail.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MlModel", + "description": null, + "fields": [ + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectTemplate", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -18831,44 +19300,15 @@ "deprecationReason": null }, { - "name": "createQuestionSetTemplate", + "name": "kind", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "QuestionSetTemplateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "QuestionSetTemplate", + "kind": "ENUM", + "name": "MLModelKind", "ofType": null } }, @@ -18876,32 +19316,15 @@ "deprecationReason": null }, { - "name": "createTag", + "name": "mlModelSettingId", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTagInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Tag", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -18909,124 +19332,151 @@ "deprecationReason": null }, { - "name": "createTagsIfNotExist", + "name": "teamId", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTagsIfNotExistInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MlModelInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "kind", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MLModelKind", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createTeam", + "name": "meta", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTeamInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mlModelSettingId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteBoundingBox", + "name": "version", "description": null, - "args": [ - { - "name": "boundingBoxLabelIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MlModelPaginatedResponse", + "description": null, + "fields": [ + { + "name": "nodes", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -19038,7 +19488,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BoundingBoxLabel", + "name": "MlModel", "ofType": null } } @@ -19048,32 +19498,15 @@ "deprecationReason": null }, { - "name": "deleteComment", + "name": "pageInfo", "description": null, - "args": [ - { - "name": "commentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -19081,65 +19514,48 @@ "deprecationReason": null }, { - "name": "deleteCustomAPI", + "name": "totalCount", "description": null, - "args": [ - { - "name": "customAPIId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomAPI", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "deleteDataset", + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MlModelSetting", + "description": null, + "fields": [ + { + "name": "createdAt", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -19147,32 +19563,15 @@ "deprecationReason": null }, { - "name": "deleteDocumentBoundLabels", + "name": "id", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -19180,55 +19579,33 @@ "deprecationReason": null }, { - "name": "deleteExtensionElement", + "name": "labelSetSignatures", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteExtensionElementInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteLabelSet", - "description": "Deletes a labelset.\nIf the labelset is used in a project, any labelset item from the labelset that has been applied will be removed.", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "labels", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -19240,7 +19617,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -19250,209 +19627,204 @@ "deprecationReason": null }, { - "name": "deleteLabelSetTagItem", - "description": "Deletes a specific labelset item from a labelset.\nIf the specified item is used in a project, they will be removed.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelSetTagItemInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "teamId", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "TagItem", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteLabelSetTagItems", - "description": "Deletes multiple labelset items from a labelset.\nIf any of the specified item is used in a project, they will be removed.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelSetTagItemsInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updatedAt", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelSet", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MlModelSettingInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleteLabelSetTemplates", - "description": "Deletes the specified labelset templates. Returns true if the templates are deleted successfully.", - "args": [ - { - "name": "ids", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteLabelsOnTextDocument", + "name": "labelSetSignatures", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelsOnTextDocumentInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteLabelsOnTextDocumentResult", - "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteMlModel", + "name": "labels", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MultipleLabelSetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "index", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteProject", + "name": "name", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteProjectTemplates", + "name": "tagItems", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagItemInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "acceptBoundingBoxConflict", "description": null, "args": [ { - "name": "ids", + "name": "boundingBoxLabelIds", "description": null, "type": { "kind": "NON_NULL", @@ -19474,38 +19846,17 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProjects", - "description": null, - "args": [ + }, { - "name": "projectIds", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, @@ -19524,7 +19875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "BoundingBoxLabel", "ofType": null } } @@ -19534,43 +19885,11 @@ "deprecationReason": null }, { - "name": "deleteSentence", + "name": "acceptInvitation", "description": null, "args": [ { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sentenceId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signature", + "name": "invitationKey", "description": null, "type": { "kind": "NON_NULL", @@ -19591,7 +19910,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DeleteSentenceResult", + "name": "Team", "ofType": null } }, @@ -19599,36 +19918,7 @@ "deprecationReason": null }, { - "name": "deleteTextDocument", - "description": null, - "args": [ - { - "name": "textDocumentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteTextDocumentResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTimestampLabels", + "name": "acceptTimestampLabelConflicts", "description": null, "args": [ { @@ -19693,18 +19983,34 @@ "deprecationReason": null }, { - "name": "editSentence", + "name": "activateUser", "description": null, "args": [ { - "name": "input", + "name": "activationCode", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EditSentenceInput", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -19714,19 +20020,15 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EditSentenceResult", - "ofType": null - } + "kind": "OBJECT", + "name": "LoginSuccess", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableProjectExtensionElements", + "name": "addActiveDuration", "description": null, "args": [ { @@ -19737,7 +20039,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EnableProjectExtensionElementsInput", + "name": "AddActiveDurationInput", "ofType": null } }, @@ -19747,15 +20049,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "ProjectExtension", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "importTextDocument", + "name": "addFileToDataset", "description": null, "args": [ { @@ -19766,7 +20068,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ImportTextDocumentInput", + "name": "AddFileToDatasetInput", "ofType": null } }, @@ -19779,8 +20081,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -19788,51 +20090,60 @@ "deprecationReason": null }, { - "name": "insertSentence", + "name": "addLabelingFunction", "description": null, "args": [ { - "name": "content", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "documentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AddLabelingFunctionInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelingFunction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addTextDocumentLabels", + "description": null, + "args": [ { - "name": "insertTarget", + "name": "inputs", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "InsertTargetInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTextDocumentLabelsInput", + "ofType": null + } + } } }, "defaultValue": null, @@ -19840,7 +20151,7 @@ "deprecationReason": null }, { - "name": "signature", + "name": "textDocumentId", "description": null, "type": { "kind": "NON_NULL", @@ -19854,26 +20165,14 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "tokenizationMethod", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenizationMethod", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TextDocument", "ofType": null } }, @@ -19881,19 +20180,27 @@ "deprecationReason": null }, { - "name": "inviteTeamMembers", + "name": "allowIPs", "description": null, "args": [ { - "name": "input", + "name": "allowedIPs", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "InviteTeamMembersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "defaultValue": null, @@ -19911,8 +20218,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamMember", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -19922,8 +20229,8 @@ "deprecationReason": null }, { - "name": "launchTextProject", - "description": "Deprecated. Please use `launchTextProjectAsync`.", + "name": "appendLabelSetTagItems", + "description": "Adds new labelset item to the specified labelset.", "args": [ { "name": "input", @@ -19933,7 +20240,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LaunchTextProjectInput", + "name": "AppendLabelSetTagItemsInput", "ofType": null } }, @@ -19943,20 +20250,24 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TagItem", + "ofType": null + } } }, - "isDeprecated": true, - "deprecationReason": "Please use `launchTextProjectAsync`." + "isDeprecated": false, + "deprecationReason": null }, { - "name": "launchTextProjectAsync", - "description": "Creates a new project based on the specified configuration.\n For sample clients, see [here](https://datasaurai.gitbook.io/datasaur/advanced/apis-docs/script-usage-for-project-creation-via-api).\n Always returns a `ProjectLaunchJob` with a `Job.id` to check the status of the launch. See `getJob`.\n\n Minimal example `curl` call for creating a token-based project (this will result in a lot of default settings, use with caution):\n ```bash\n curl --location --request POST 'https://BASE_URL/graphql?operation=LaunchTextProjectAsyncMutation' \\\n --header 'Authorization: Bearer ACCESS_TOKEN' \\\n --form 'operations=\"{\n \\\"operationName\\\": \\\"LaunchTextProjectAsyncMutation\\\",\n \\\"variables\\\": {\n \\\"input\\\": {\n \\\"documentSettings\\\": {\n \\\"kind\\\": \\\"TOKEN_BASED\\\"\n },\n \\\"name\\\": \\\"project-name\\\",\n \\\"projectCreationId\\\": \\\"unique-project-creation-id\\\",\n \\\"purpose\\\": \\\"LABELING\\\",\n \\\"documentAssignments\\\": [\n {\n \\\"teamMemberId\\\": \\\"1\\\",\n \\\"documents\\\": [{ \\\"fileName\\\": \\\"filename.txt\\\", \\\"part\\\": 0 }],\n \\\"role\\\": \\\"LABELER_AND_REVIEWER\\\"\n }\n ],\n \\\"splitDocumentOption\\\": null,\n \\\"projectSettings\\\": {},\n \\\"teamId\\\": \\\"1\\\",\n \\\"documents\\\": [\n {\n \\\"file\\\": null,\n \\\"fileName\\\": \\\"filename.txt\\\",\n \\\"name\\\": \\\"project-name\\\",\n \\\"settings\\\": {},\n \\\"docFileOptions\\\": {\n \\\"firstRowAsHeader\\\": false\n }\n }\n ],\n \\\"labelSetIDs\\\": [\\\"1\\\"]\n }\n },\n \\\"query\\\": \\\"mutation LaunchTextProjectAsyncMutation($input: LaunchTextProjectInput!) { launchTextProjectAsync(input: $input) { job { ...JobFragment __typename } name __typename }} fragment JobFragment on Job { id status progress errors { id stack args __typename } resultId __typename}\\\"\n }\"' \\\n --form 'map=\"{\\\"1\\\":[\\\"variables.input.documents.0.file\\\"]}\"' \\\n --form '1=@\"filename.txt\"'\n ```", + "name": "autoLabelReviewTextDocumentBasedOnConsensus", + "description": null, "args": [ { "name": "input", @@ -19966,7 +20277,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LaunchTextProjectInput", + "name": "AutoLabelReviewTextDocumentBasedOnConsensusInput", "ofType": null } }, @@ -19980,7 +20291,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectLaunchJob", + "name": "TextDocument", "ofType": null } }, @@ -19988,18 +20299,18 @@ "deprecationReason": null }, { - "name": "login", + "name": "autoLabelTokenBasedProject", "description": null, "args": [ { - "name": "loginInput", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LoginInput", + "name": "AutoLabelTokenBasedProjectInput", "ofType": null } }, @@ -20009,38 +20320,30 @@ } ], "type": { - "kind": "OBJECT", - "name": "LoginSuccess", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logout", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "overrideSentences", + "name": "awsMarketplaceReportMeteredRecords", "description": null, "args": [ { - "name": "input", + "name": "timestamp", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "OverrideSentencesInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -20053,8 +20356,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UpdateSentenceResult", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -20062,8 +20365,8 @@ "deprecationReason": null }, { - "name": "redactCells", - "description": "Redact Cells' content and tokens. The content and tokens will be replaced by asterisks (*).", + "name": "awsMarketplaceSubscription", + "description": null, "args": [ { "name": "input", @@ -20073,23 +20376,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RedactCellsInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + "name": "AwsMarketplaceSubscriptionInput", "ofType": null } }, @@ -20111,11 +20398,23 @@ "deprecationReason": null }, { - "name": "redactTextDocuments", - "description": "Redact data related to Text Document:\n* Cells\n* File that is stored in Datasaur's file storage", + "name": "bulkSetPasswordsExpiredAt", + "description": null, "args": [ { - "name": "originDocumentIds", + "name": "passwordExpiredAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userIds", "description": null, "type": { "kind": "NON_NULL", @@ -20128,7 +20427,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -20137,7 +20436,24 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "calculateAgreementTables", + "description": null, + "args": [ { "name": "projectId", "description": null, @@ -20159,8 +20475,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Job", "ofType": null } }, @@ -20168,11 +20484,11 @@ "deprecationReason": null }, { - "name": "rejectBoundingBoxConflict", + "name": "calculatePairKappas", "description": null, "args": [ { - "name": "boundingBoxLabelIds", + "name": "projectIds", "description": null, "type": { "kind": "NON_NULL", @@ -20194,22 +20510,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -20222,8 +20522,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BoundingBoxLabel", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -20233,7 +20533,7 @@ "deprecationReason": null }, { - "name": "rejectTimestampLabelConflicts", + "name": "clearAllLabelsOnTextDocument", "description": null, "args": [ { @@ -20251,58 +20551,26 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "labelIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimestampLabel", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ClearAllLabelsOnTextDocumentResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeFileTransformer", + "name": "clearAllSpanAndArrowLabels", "description": null, "args": [ { - "name": "fileTransformerId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -20323,7 +20591,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FileTransformer", + "name": "ClearAllLabelsOnTextDocumentResult", "ofType": null } }, @@ -20331,7 +20599,7 @@ "deprecationReason": null }, { - "name": "removePersonalTags", + "name": "collectDataset", "description": null, "args": [ { @@ -20342,7 +20610,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RemovePersonalTagsInput", + "name": "CollectDatasetInput", "ofType": null } }, @@ -20352,31 +20620,19 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RemoveTagsResult", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "Job", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeQuestionSetTemplate", + "name": "createComment", "description": null, "args": [ { - "name": "id", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -20392,40 +20648,23 @@ "deprecationReason": null }, { - "name": "teamId", + "name": "hashCode", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeSearchKeyword", - "description": null, - "args": [ + }, { - "name": "keyword", + "name": "message", "description": null, "type": { "kind": "NON_NULL", @@ -20446,7 +20685,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SearchHistoryKeyword", + "name": "Comment", "ofType": null } }, @@ -20454,7 +20693,7 @@ "deprecationReason": null }, { - "name": "removeTags", + "name": "createCustomAPI", "description": null, "args": [ { @@ -20465,48 +20704,23 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RemoveTagsInput", + "name": "CreateCustomAPIInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RemoveTagsResult", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeTeamMember", - "description": null, - "args": [ + }, { - "name": "input", + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveTeamMemberInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -20516,50 +20730,30 @@ } ], "type": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomAPI", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeTextDocumentLabels", + "name": "createExternalObjectStorage", "description": null, "args": [ { - "name": "inputs", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTextDocumentLabelsInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "textDocumentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CreateExternalObjectStorageInput", "ofType": null } }, @@ -20573,7 +20767,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TextDocument", + "name": "ExternalObjectStorage", "ofType": null } }, @@ -20581,7 +20775,7 @@ "deprecationReason": null }, { - "name": "replaceProjectAssignees", + "name": "createFileTransformer", "description": null, "args": [ { @@ -20592,7 +20786,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssignProjectInput", + "name": "CreateFileTransformerInput", "ofType": null } }, @@ -20606,7 +20800,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "FileTransformer", "ofType": null } }, @@ -20614,18 +20808,18 @@ "deprecationReason": null }, { - "name": "replyComment", + "name": "createGuideline", "description": null, "args": [ { - "name": "commentId", + "name": "content", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -20634,7 +20828,7 @@ "deprecationReason": null }, { - "name": "message", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -20648,6 +20842,18 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -20655,7 +20861,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Guideline", "ofType": null } }, @@ -20663,24 +20869,36 @@ "deprecationReason": null }, { - "name": "requestDemo", - "description": null, + "name": "createLabelSet", + "description": "Creates a new labelset.\nThe created labelset will not appear in `getLabelSets` or `getPaginatedLabelSets` until it is used in at least one project.\nTo use it in a project, use the returned `LabelSet.id` to create a new project via `launchTextProjectAsync`. Put the ID in the `labelSetIDs` field.\nTo add the labelset to an existing project document, use the `updateTextDocument` mutation.", "args": [ { - "name": "requestDemoInput", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestDemoInput", + "name": "CreateLabelSetInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -20688,7 +20906,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RequestDemo", + "name": "LabelSet", "ofType": null } }, @@ -20696,8 +20914,8 @@ "deprecationReason": null }, { - "name": "requestResetPasswordLink", - "description": null, + "name": "createLabelSetTemplate", + "description": "Creates a new labelset template.", "args": [ { "name": "input", @@ -20707,7 +20925,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestResetPasswordInput", + "name": "CreateLabelSetTemplateInput", "ofType": null } }, @@ -20717,27 +20935,35 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LabelSetTemplate", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resetPassword", - "description": null, + "name": "createMultipleLabelSet", + "description": "Creates multiple labelsets at once.\nThe created labelsets will not appear in `getLabelSets` or `getPaginatedLabelSets` until they are used in at least one project.\nTo use it in a project, use the returned `LabelSet.id` to create a new project via `launchTextProjectAsync`. Put the ID in the `labelSetIDs` field.\nTo add the labelset to an existing project document, use the `updateTextDocument` mutation.", "args": [ { - "name": "resetPasswordInput", + "name": "labelSets", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MultipleLabelSetInput", + "ofType": null + } + } } }, "defaultValue": null, @@ -20746,27 +20972,23 @@ } ], "type": { - "kind": "OBJECT", - "name": "LoginSuccess", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "runDataIngestion", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "saveDataset", + "name": "createPersonalTag", "description": null, "args": [ { @@ -20777,7 +20999,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DatasetInput", + "name": "CreatePersonalTagInput", "ofType": null } }, @@ -20791,7 +21013,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Dataset", + "name": "Tag", "ofType": null } }, @@ -20799,7 +21021,7 @@ "deprecationReason": null }, { - "name": "saveGeneralWorkspaceSettings", + "name": "createProjectTemplate", "description": null, "args": [ { @@ -20810,7 +21032,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SaveGeneralWorkspaceSettingsInput", + "name": "CreateProjectTemplateInput", "ofType": null } }, @@ -20824,7 +21046,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GeneralWorkspaceSettings", + "name": "ProjectTemplate", "ofType": null } }, @@ -20832,7 +21054,7 @@ "deprecationReason": null }, { - "name": "saveMlModel", + "name": "createQuestionSet", "description": null, "args": [ { @@ -20843,7 +21065,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MlModelInput", + "name": "CreateQuestionSetInput", "ofType": null } }, @@ -20857,7 +21079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MlModel", + "name": "QuestionSet", "ofType": null } }, @@ -20865,27 +21087,31 @@ "deprecationReason": null }, { - "name": "saveMlModelSettings", + "name": "createQuestionSetTemplate", "description": null, "args": [ { "name": "input", "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QuestionSetTemplateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MlModelSettingInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, @@ -20897,24 +21123,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MlModelSetting", - "ofType": null - } - } + "kind": "OBJECT", + "name": "QuestionSetTemplate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "saveProjectWorkspaceSettings", + "name": "createTag", "description": null, "args": [ { @@ -20925,7 +21143,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SaveProjectWorkspaceSettingsInput", + "name": "CreateTagInput", "ofType": null } }, @@ -20939,7 +21157,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TextDocumentSettings", + "name": "Tag", "ofType": null } }, @@ -20947,18 +21165,18 @@ "deprecationReason": null }, { - "name": "saveSearchKeyword", + "name": "createTagsIfNotExist", "description": null, "args": [ { - "name": "keyword", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CreateTagsIfNotExistInput", "ofType": null } }, @@ -20971,36 +21189,61 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SearchHistoryKeyword", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scheduleDeleteProjects", + "name": "createTeam", "description": null, "args": [ { - "name": "dueInDays", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CreateTeamInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteBoundingBox", + "description": null, + "args": [ { - "name": "projectIds", + "name": "boundingBoxLabelIds", "description": null, "type": { "kind": "NON_NULL", @@ -21013,7 +21256,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -21022,6 +21265,22 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -21035,7 +21294,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "BoundingBoxLabel", "ofType": null } } @@ -21045,7 +21304,7 @@ "deprecationReason": null }, { - "name": "setCommentResolved", + "name": "deleteComment", "description": null, "args": [ { @@ -21063,16 +21322,33 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAPI", + "description": null, + "args": [ { - "name": "resolved", + "name": "customAPIId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -21086,7 +21362,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "CustomAPI", "ofType": null } }, @@ -21094,18 +21370,18 @@ "deprecationReason": null }, { - "name": "signUp", + "name": "deleteDataset", "description": null, "args": [ { - "name": "createUserInput", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -21115,26 +21391,30 @@ } ], "type": { - "kind": "OBJECT", - "name": "LoginSuccess", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "submitEmail", + "name": "deleteDocumentAnswers", "description": null, "args": [ { - "name": "welcomeEmailInput", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WelcomeEmailInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -21147,8 +21427,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WelcomeEmail", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -21156,11 +21436,11 @@ "deprecationReason": null }, { - "name": "toggleCabinetStatus", + "name": "deleteDocumentBoundLabels", "description": null, "args": [ { - "name": "projectId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -21174,30 +21454,35 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Role", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteExtensionElement", + "description": null, + "args": [ { - "name": "skipValidation", + "name": "input", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteExtensionElementInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -21205,28 +21490,28 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cabinet", - "ofType": null - } + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "triggerSaveMlModel", + "name": "deleteExternalObjectStorage", "description": null, "args": [ { - "name": "input", + "name": "externalObjectStorageId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MlModelInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -21237,8 +21522,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ExternalObjectStorage", "ofType": null } }, @@ -21246,18 +21531,18 @@ "deprecationReason": null }, { - "name": "triggerTaskCompleted", - "description": null, + "name": "deleteLabelSet", + "description": "Deletes a labelset.\nIf the labelset is used in a project, any labelset item from the labelset that has been applied will be removed.", "args": [ { - "name": "input", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCompletedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -21267,16 +21552,28 @@ } ], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateConflicts", - "description": null, + "name": "deleteLabelSetTagItem", + "description": "Deletes a specific labelset item from a labelset.\nIf the specified item is used in a project, they will be removed.", "args": [ { "name": "input", @@ -21285,32 +21582,37 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateConflictsInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "DeleteLabelSetTagItemInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "TagItem", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteLabelSetTagItems", + "description": "Deletes multiple labelset items from a labelset.\nIf any of the specified item is used in a project, they will be removed.", + "args": [ { - "name": "textDocumentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "DeleteLabelSetTagItemsInput", "ofType": null } }, @@ -21324,7 +21626,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateConflictsResult", + "name": "LabelSet", "ofType": null } }, @@ -21332,34 +21634,55 @@ "deprecationReason": null }, { - "name": "updateCustomAPI", - "description": null, + "name": "deleteLabelSetTemplates", + "description": "Deletes the specified labelset templates. Returns true if the templates are deleted successfully.", "args": [ { - "name": "customAPIId", + "name": "ids", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteLabelingFunction", + "description": null, + "args": [ { - "name": "input", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomAPIInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -21373,7 +21696,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CustomAPI", + "name": "LabelingFunction", "ofType": null } }, @@ -21381,7 +21704,7 @@ "deprecationReason": null }, { - "name": "updateDataset", + "name": "deleteLabelsOnTextDocument", "description": null, "args": [ { @@ -21392,7 +21715,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDatasetInput", + "name": "DeleteLabelsOnTextDocumentInput", "ofType": null } }, @@ -21406,7 +21729,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Dataset", + "name": "DeleteLabelsOnTextDocumentResult", "ofType": null } }, @@ -21414,34 +21737,51 @@ "deprecationReason": null }, { - "name": "updateDocumentAnswers", + "name": "deleteMlModel", "description": null, "args": [ { - "name": "answers", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "AnswerScalar", + "name": "ID", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProject", + "description": null, + "args": [ { - "name": "documentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", "ofType": null } }, @@ -21455,7 +21795,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateDocumentAnswersResult", + "name": "Project", "ofType": null } }, @@ -21463,27 +21803,48 @@ "deprecationReason": null }, { - "name": "updateDocumentBoundLabels", - "description": "Deprecated. Please use `updateDocumentAnswers`.", + "name": "deleteProjectTemplates", + "description": null, "args": [ { - "name": "documentId", + "name": "ids", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProjects", + "description": null, + "args": [ { - "name": "labels", + "name": "projectIds", "description": null, "type": { "kind": "NON_NULL", @@ -21495,8 +21856,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DocumentBoundLabelInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -21518,45 +21879,21 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DocumentBoundLabel", + "name": "Project", "ofType": null } } } }, - "isDeprecated": true, - "deprecationReason": "Deprecated. Please use `updateDocumentAnswers`." + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateDocumentMeta", + "name": "deleteQuestionSet", "description": null, "args": [ { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DocumentMetaInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -21576,51 +21913,68 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocumentMeta", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateDocumentMetaDisplayed", + "name": "deleteQuestionSets", "description": null, "args": [ { - "name": "cabinetId", + "name": "ids", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteRowAnswers", + "description": null, + "args": [ { - "name": "displayed", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -21629,7 +21983,7 @@ "deprecationReason": null }, { - "name": "metaId", + "name": "line", "description": null, "type": { "kind": "NON_NULL", @@ -21649,8 +22003,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DocumentMeta", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -21658,18 +22012,18 @@ "deprecationReason": null }, { - "name": "updateDocumentMetaLabelerRestricted", + "name": "deleteSentence", "description": null, "args": [ { - "name": "labelerRestricted", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -21678,7 +22032,7 @@ "deprecationReason": null }, { - "name": "metaId", + "name": "sentenceId", "description": null, "type": { "kind": "NON_NULL", @@ -21694,14 +22048,14 @@ "deprecationReason": null }, { - "name": "projectId", + "name": "signature", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -21715,7 +22069,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DocumentMeta", + "name": "DeleteSentenceResult", "ofType": null } }, @@ -21723,16 +22077,20 @@ "deprecationReason": null }, { - "name": "updateDocumentMetas", + "name": "deleteTextDocument", "description": null, "args": [ { - "name": "input", + "name": "textDocumentId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateDocumentMetasInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -21740,72 +22098,51 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocumentMeta", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "DeleteTextDocumentResult", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateFileTransformer", + "name": "deleteTimestampLabels", "description": null, "args": [ { - "name": "input", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateFileTransformerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileTransformer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateLabelSet", - "description": "Updates a labelset details.", - "args": [ + }, { - "name": "input", + "name": "labelIds", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, "defaultValue": null, @@ -21817,17 +22154,25 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimestampLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateLabelSetTagItem", - "description": "Updates a labelset item's details in a labelset.", + "name": "editSentence", + "description": null, "args": [ { "name": "input", @@ -21837,7 +22182,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetTagItemInput", + "name": "EditSentenceInput", "ofType": null } }, @@ -21847,16 +22192,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "TagItem", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EditSentenceResult", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateLabelSetTemplate", - "description": "Updates the specified labelset template.", + "name": "enableProjectExtensionElements", + "description": null, "args": [ { "name": "input", @@ -21866,7 +22215,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetTemplateInput", + "name": "EnableProjectExtensionElementsInput", "ofType": null } }, @@ -21877,14 +22226,14 @@ ], "type": { "kind": "OBJECT", - "name": "LabelSetTemplate", + "name": "ProjectExtension", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateLabels", + "name": "importTextDocument", "description": null, "args": [ { @@ -21895,7 +22244,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTokenLabelsInput", + "name": "ImportTextDocumentInput", "ofType": null } }, @@ -21909,7 +22258,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateLabelsResult", + "name": "TextDocument", "ofType": null } }, @@ -21917,18 +22266,18 @@ "deprecationReason": null }, { - "name": "updateLastOpenedDocument", + "name": "insertSentence", "description": null, "args": [ { - "name": "cabinetId", + "name": "content", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -21944,99 +22293,65 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cabinet", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateMultipleLabelSet", - "description": "Updates multiple labelset details at once.", - "args": [ + }, { - "name": "labelSets", + "name": "insertTarget", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "InsertTargetInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProject", - "description": null, - "args": [ + }, { - "name": "input", + "name": "signature", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "tokenizationMethod", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenizationMethod", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -22044,7 +22359,7 @@ "deprecationReason": null }, { - "name": "updateProjectExtension", + "name": "inviteTeamMembers", "description": null, "args": [ { @@ -22055,7 +22370,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateProjectExtensionInput", + "name": "InviteTeamMembersInput", "ofType": null } }, @@ -22065,16 +22380,28 @@ } ], "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateProjectExtensionElementSetting", - "description": null, + "name": "launchTextProject", + "description": "Deprecated. Please use `launchTextProjectAsync`.", "args": [ { "name": "input", @@ -22084,7 +22411,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateProjectExtensionElementSettingInput", + "name": "LaunchTextProjectInput", "ofType": null } }, @@ -22094,24 +22421,32 @@ } ], "type": { - "kind": "OBJECT", - "name": "ExtensionElement", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use `launchTextProjectAsync`." }, { - "name": "updateProjectGuideline", - "description": null, + "name": "launchTextProjectAsync", + "description": "Creates a new project based on the specified configuration.\n For sample clients, see [here](https://datasaurai.gitbook.io/datasaur/advanced/apis-docs/script-usage-for-project-creation-via-api).\n Always returns a `ProjectLaunchJob` with a `Job.id` to check the status of the launch. See `getJob`.\n\n Minimal example `curl` call for creating a token-based project (this will result in a lot of default settings, use with caution):\n ```bash\n curl --location --request POST 'https://BASE_URL/graphql?operation=LaunchTextProjectAsyncMutation' \\\n --header 'Authorization: Bearer ACCESS_TOKEN' \\\n --form 'operations=\"{\n \\\"operationName\\\": \\\"LaunchTextProjectAsyncMutation\\\",\n \\\"variables\\\": {\n \\\"input\\\": {\n \\\"documentSettings\\\": {\n \\\"kind\\\": \\\"TOKEN_BASED\\\"\n },\n \\\"name\\\": \\\"project-name\\\",\n \\\"projectCreationId\\\": \\\"unique-project-creation-id\\\",\n \\\"purpose\\\": \\\"LABELING\\\",\n \\\"documentAssignments\\\": [\n {\n \\\"teamMemberId\\\": \\\"1\\\",\n \\\"documents\\\": [{ \\\"fileName\\\": \\\"filename.txt\\\", \\\"part\\\": 0 }],\n \\\"role\\\": \\\"LABELER_AND_REVIEWER\\\"\n }\n ],\n \\\"splitDocumentOption\\\": null,\n \\\"projectSettings\\\": {},\n \\\"teamId\\\": \\\"1\\\",\n \\\"documents\\\": [\n {\n \\\"file\\\": null,\n \\\"fileName\\\": \\\"filename.txt\\\",\n \\\"name\\\": \\\"project-name\\\",\n \\\"settings\\\": {},\n \\\"docFileOptions\\\": {\n \\\"firstRowAsHeader\\\": false\n }\n }\n ],\n \\\"labelSetIDs\\\": [\\\"1\\\"]\n }\n },\n \\\"query\\\": \\\"mutation LaunchTextProjectAsyncMutation($input: LaunchTextProjectInput!) { launchTextProjectAsync(input: $input) { job { ...JobFragment __typename } name __typename }} fragment JobFragment on Job { id status progress errors { id stack args __typename } resultId __typename}\\\"\n }\"' \\\n --form 'map=\"{\\\"1\\\":[\\\"variables.input.documents.0.file\\\"]}\"' \\\n --form '1=@\"filename.txt\"'\n ```", "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectGuidelineInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LaunchTextProjectInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -22123,7 +22458,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectLaunchJob", "ofType": null } }, @@ -22131,18 +22466,18 @@ "deprecationReason": null }, { - "name": "updateProjectLabelSet", - "description": "Updates a specific project's labelset.", + "name": "login", + "description": null, "args": [ { - "name": "input", + "name": "loginInput", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateProjectLabelSetInput", + "name": "LoginInput", "ofType": null } }, @@ -22152,20 +22487,28 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - } + "kind": "OBJECT", + "name": "LoginSuccess", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateProjectLabelSetByLabelSetTemplate", - "description": "Update a project labelset to use labelset template.", + "name": "logout", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "overrideSentences", + "description": null, "args": [ { "name": "input", @@ -22175,7 +22518,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateProjectLabelSetByLabelSetTemplateInput", + "name": "OverrideSentencesInput", "ofType": null } }, @@ -22189,7 +22532,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LabelSet", + "name": "UpdateSentenceResult", "ofType": null } }, @@ -22197,8 +22540,8 @@ "deprecationReason": null }, { - "name": "updateProjectSettings", - "description": null, + "name": "redactCells", + "description": "Redact Cells' content and tokens. The content and tokens will be replaced by asterisks (*).", "args": [ { "name": "input", @@ -22208,7 +22551,23 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateProjectSettingsInput", + "name": "RedactCellsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -22221,8 +22580,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -22230,18 +22589,42 @@ "deprecationReason": null }, { - "name": "updateProjectTemplate", - "description": null, + "name": "redactTextDocuments", + "description": "Redact data related to Text Document:\n* Cells\n* File that is stored in Datasaur's file storage", "args": [ { - "name": "input", + "name": "originDocumentIds", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectTemplateInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -22254,8 +22637,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectTemplate", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -22263,11 +22646,11 @@ "deprecationReason": null }, { - "name": "updateProjectTemplatesOrdering", + "name": "rejectBoundingBoxConflict", "description": null, "args": [ { - "name": "ids", + "name": "boundingBoxLabelIds", "description": null, "type": { "kind": "NON_NULL", @@ -22289,6 +22672,22 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -22302,7 +22701,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTemplate", + "name": "BoundingBoxLabel", "ofType": null } } @@ -22312,11 +22711,11 @@ "deprecationReason": null }, { - "name": "updateQuestionSetTemplate", + "name": "rejectTimestampLabelConflicts", "description": null, "args": [ { - "name": "id", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -22332,27 +22731,23 @@ "deprecationReason": null }, { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "QuestionSetTemplateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", + "name": "labelIds", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, "defaultValue": null, @@ -22364,44 +22759,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "QuestionSetTemplate", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimestampLabel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateQuestions", + "name": "removeFileTransformer", "description": null, "args": [ { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", + "name": "fileTransformerId", "description": null, "type": { "kind": "NON_NULL", @@ -22421,33 +22800,29 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Question", - "ofType": null - } - } + "kind": "OBJECT", + "name": "FileTransformer", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateReviewDocumentMetas", + "name": "removePersonalTags", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateReviewDocumentMetasInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemovePersonalTagsInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -22465,7 +22840,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DocumentMeta", + "name": "RemoveTagsResult", "ofType": null } } @@ -22475,18 +22850,18 @@ "deprecationReason": null }, { - "name": "updateRowAnswers", + "name": "removeQuestionSetTemplate", "description": null, "args": [ { - "name": "answers", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "AnswerScalar", + "name": "ID", "ofType": null } }, @@ -22495,7 +22870,7 @@ "deprecationReason": null }, { - "name": "documentId", + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", @@ -22509,16 +22884,33 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeSearchKeyword", + "description": null, + "args": [ { - "name": "line", + "name": "keyword", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -22532,7 +22924,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateRowAnswersResult", + "name": "SearchHistoryKeyword", "ofType": null } }, @@ -22540,63 +22932,97 @@ "deprecationReason": null }, { - "name": "updateSentenceConflict", + "name": "removeTags", "description": null, "args": [ { - "name": "labelerId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resolved", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "RemoveTagsInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RemoveTagsResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeTeamMember", + "description": null, + "args": [ { - "name": "sentenceId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RemoveTeamMemberInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeTextDocumentLabels", + "description": null, + "args": [ { - "name": "signature", + "name": "inputs", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTextDocumentLabelsInput", + "ofType": null + } + } } }, "defaultValue": null, @@ -22611,7 +23037,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -22625,7 +23051,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateSentenceConflictResult", + "name": "TextDocument", "ofType": null } }, @@ -22633,34 +23059,51 @@ "deprecationReason": null }, { - "name": "updateSentenceDocLabels", - "description": "Deprecated. Please use `updateRowAnswers`.", + "name": "replaceProjectAssignees", + "description": null, "args": [ { - "name": "docLabelsString", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AssignProjectInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replyComment", + "description": null, + "args": [ { - "name": "sentenceId", + "name": "commentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -22669,7 +23112,7 @@ "deprecationReason": null }, { - "name": "textDocumentId", + "name": "message", "description": null, "type": { "kind": "NON_NULL", @@ -22690,26 +23133,26 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateSentenceDocLabelsResult", + "name": "Comment", "ofType": null } }, - "isDeprecated": true, - "deprecationReason": "Deprecated. Please use `updateRowAnswers`." + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateTag", + "name": "requestDemo", "description": null, "args": [ { - "name": "input", + "name": "requestDemoInput", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTagInput", + "name": "RequestDemoInput", "ofType": null } }, @@ -22723,7 +23166,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "RequestDemo", "ofType": null } }, @@ -22731,7 +23174,7 @@ "deprecationReason": null }, { - "name": "updateTeam", + "name": "requestResetPasswordLink", "description": null, "args": [ { @@ -22742,7 +23185,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTeamInput", + "name": "RequestResetPasswordInput", "ofType": null } }, @@ -22752,30 +23195,26 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateTeamMemberTeamRole", + "name": "resetPassword", "description": null, "args": [ { - "name": "input", + "name": "resetPasswordInput", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTeamMemberTeamRoleInput", + "name": "ResetPasswordInput", "ofType": null } }, @@ -22786,14 +23225,26 @@ ], "type": { "kind": "OBJECT", - "name": "TeamMember", + "name": "LoginSuccess", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateTeamSetting", + "name": "runDataIngestion", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "saveDataset", "description": null, "args": [ { @@ -22804,7 +23255,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTeamSettingInput", + "name": "DatasetInput", "ofType": null } }, @@ -22818,7 +23269,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "Dataset", "ofType": null } }, @@ -22826,8 +23277,8 @@ "deprecationReason": null }, { - "name": "updateTextDocument", - "description": "Updates a specific document.", + "name": "saveGeneralWorkspaceSettings", + "description": null, "args": [ { "name": "input", @@ -22837,7 +23288,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateTextDocumentInput", + "name": "SaveGeneralWorkspaceSettingsInput", "ofType": null } }, @@ -22851,7 +23302,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TextDocument", + "name": "GeneralWorkspaceSettings", "ofType": null } }, @@ -22859,43 +23310,60 @@ "deprecationReason": null }, { - "name": "updateTextDocumentLabels", + "name": "saveMlModel", "description": null, "args": [ { - "name": "inputs", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTextDocumentLabelsInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "MlModelInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MlModel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "saveMlModelSettings", + "description": null, + "args": [ { - "name": "textDocumentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MlModelSettingInput", + "ofType": null + } + } } }, "defaultValue": null, @@ -22907,25 +23375,37 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MlModelSetting", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateTextDocumentSettings", + "name": "saveProjectWorkspaceSettings", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateTextDocumentSettingsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SaveProjectWorkspaceSettingsInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -22945,18 +23425,18 @@ "deprecationReason": null }, { - "name": "updateTokenLabels", + "name": "saveSearchKeyword", "description": null, "args": [ { - "name": "input", + "name": "keyword", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTokenLabelsInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -22970,7 +23450,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TextDocument", + "name": "SearchHistoryKeyword", "ofType": null } }, @@ -22978,18 +23458,18 @@ "deprecationReason": null }, { - "name": "upsertBoundingBox", + "name": "scheduleDeleteProjects", "description": null, "args": [ { - "name": "documentId", + "name": "dueInDays", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -22998,7 +23478,7 @@ "deprecationReason": null }, { - "name": "labels", + "name": "projectIds", "description": null, "type": { "kind": "NON_NULL", @@ -23010,8 +23490,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BoundingBoxLabelInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -23033,7 +23513,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BoundingBoxLabel", + "name": "Project", "ofType": null } } @@ -23043,23 +23523,11 @@ "deprecationReason": null }, { - "name": "upsertOauthClient", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UpsertOauthClientResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upsertTimestampLabels", + "name": "setCommentResolved", "description": null, "args": [ { - "name": "documentId", + "name": "commentId", "description": null, "type": { "kind": "NON_NULL", @@ -23075,23 +23543,15 @@ "deprecationReason": null }, { - "name": "labels", + "name": "resolved", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimestampLabelInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "defaultValue": null, @@ -23103,35 +23563,56 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signUp", + "description": null, + "args": [ + { + "name": "createUserInput", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TimestampLabel", + "kind": "INPUT_OBJECT", + "name": "CreateUserInput", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "LoginSuccess", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wipeProject", + "name": "submitEmail", "description": null, "args": [ { - "name": "input", + "name": "welcomeEmailInput", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WipeProjectInput", + "name": "WelcomeEmailInput", "ofType": null } }, @@ -23144,8 +23625,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "WelcomeEmail", "ofType": null } }, @@ -23153,7 +23634,7 @@ "deprecationReason": null }, { - "name": "wipeProjects", + "name": "toggleArchiveProjects", "description": null, "args": [ { @@ -23191,8 +23672,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null } } @@ -23200,135 +23681,107 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OCRProvider", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "AMAZON_TEXTRACT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "APACHE_TIKA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CUSTOM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GOOGLE_CLOUD_VISION", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "KONVERGEN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "skip", + "name": "toggleCabinetStatus", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Role", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skipValidation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "take", - "description": null, + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Cabinet", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrderType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ASC", - "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OverallProjectPerformance", - "description": null, - "fields": [ - { - "name": "completed", + "name": "toggleDocumentStatus", "description": null, - "args": [], + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skipValidation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TextDocument", "ofType": null } }, @@ -23336,15 +23789,28 @@ "deprecationReason": null }, { - "name": "created", + "name": "triggerSaveMlModel", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MlModelInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -23352,31 +23818,85 @@ "deprecationReason": null }, { - "name": "inProgress", + "name": "triggerTaskCompleted", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TaskCompletedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inReview", + "name": "updateConflicts", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateConflictsInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textDocumentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "UpdateConflictsResult", "ofType": null } }, @@ -23384,108 +23904,181 @@ "deprecationReason": null }, { - "name": "reviewReady", + "name": "updateCustomAPI", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], + "args": [ + { + "name": "customAPIId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCustomAPIInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CustomAPI", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OverrideSentencesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "documentId", + "name": "updateDataset", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDatasetInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Dataset", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labelsToAdd", + "name": "updateDocumentAnswers", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GqlConflictableInput", - "ofType": null - } + "args": [ + { + "name": "answers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "AnswerScalar", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsToDelete", - "description": null, + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GqlConflictableInput", - "ofType": null - } + "kind": "OBJECT", + "name": "UpdateDocumentAnswersResult", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sentences", + "name": "updateDocumentMeta", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentMetaInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -23496,245 +24089,277 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TextSentenceInput", + "kind": "OBJECT", + "name": "DocumentMeta", "ofType": null } } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Package", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ENTERPRISE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FREE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GROWTH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": null, - "fields": [ - { - "name": "nextCursor", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prevCursor", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PaginatedAnalyticsDashboardFilterInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "calendarDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "chartId", + "name": "updateDocumentMetaDisplayed", "description": null, + "args": [ + { + "name": "cabinetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayed", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "DocumentMeta", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "updateDocumentMetaLabelerRestricted", "description": null, + "args": [ + { + "name": "labelerRestricted", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "DocumentMeta", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PaginatedAnalyticsDashboardQueryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "cursor", + "name": "updateDocumentMetas", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateDocumentMetasInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentMeta", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "updateDocumentQuestion", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PaginatedAnalyticsDashboardFilterInput", + "kind": "OBJECT", + "name": "Question", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "page", + "name": "updateDocumentQuestions", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "OffsetPageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortInput", - "ofType": null - } + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PaginatedChartDataResponse", - "description": null, - "fields": [ - { - "name": "nodes", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, @@ -23746,7 +24371,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChartDataRow", + "name": "Question", "ofType": null } } @@ -23756,15 +24381,32 @@ "deprecationReason": null }, { - "name": "pageInfo", + "name": "updateFileTransformer", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFileTransformerInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "FileTransformer", "ofType": null } }, @@ -23772,48 +24414,94 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": null, - "args": [], + "name": "updateLabelSet", + "description": "Updates a labelset details.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelSetInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "LabelSet", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "description": null, - "fields": [ + "name": "updateLabelSetTemplate", + "description": "Updates the specified labelset template.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelSetTemplateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelSetTemplate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "pageInfo", + "name": "updateLabelingFunction", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelingFunctionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "LabelingFunction", "ofType": null } }, @@ -23821,118 +24509,81 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "updateLabels", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTokenLabelsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "UpdateLabelsResult", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "DatasetPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetCellPositionsByMetadataPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetCellsPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetCommentsResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetLabelSetTemplatesResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetLabelsPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetRowAnswersPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetSpanAndArrowConflictsPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetTeamMembersPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GetTeamTimelineEventsResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LabelSetPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "MlModelPaginatedResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "PaginatedChartDataResponse", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProjectPaginatedResponse", - "ofType": null }, { - "kind": "OBJECT", - "name": "RowAnalyticEventPaginatedResponse", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "PairKappa", - "description": null, - "fields": [ - { - "name": "kappa", + "name": "updateLastOpenedDocument", "description": null, - "args": [], + "args": [ + { + "name": "cabinetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "Cabinet", "ofType": null } }, @@ -23940,53 +24591,76 @@ "deprecationReason": null }, { - "name": "userId1", + "name": "updateMultiRowAnswers", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMultiRowAnswersInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateMultiRowAnswersResult", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId2", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Project", - "description": null, - "fields": [ - { - "name": "assignees", - "description": null, - "args": [], + "name": "updateMultipleLabelSet", + "description": "Updates multiple labelset details at once.", + "args": [ + { + "name": "labelSets", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelSetInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAssignment", + "name": "LabelSet", "ofType": null } } @@ -23995,27 +24669,32 @@ "deprecationReason": null }, { - "name": "completedDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdDate", + "name": "updateProject", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null } }, @@ -24023,55 +24702,86 @@ "deprecationReason": null }, { - "name": "exportedDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "guideline", + "name": "updateProjectExtension", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectExtensionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "Guideline", + "name": "ProjectExtension", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "updateProjectExtensionElementSetting", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectExtensionElementSettingInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "ExtensionElement", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isOwnerMe", + "name": "updateProjectGuideline", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectGuidelineInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Project", "ofType": null } }, @@ -24079,15 +24789,32 @@ "deprecationReason": null }, { - "name": "isReviewByMeAllowed", - "description": null, - "args": [], + "name": "updateProjectLabelSet", + "description": "Updates a specific project's labelset.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectLabelSetInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "LabelSet", "ofType": null } }, @@ -24095,59 +24822,65 @@ "deprecationReason": null }, { - "name": "labelerCabinets", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "updateProjectLabelSetByLabelSetTemplate", + "description": "Update a project labelset to use labelset template.", + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Cabinet", + "kind": "INPUT_OBJECT", + "name": "UpdateProjectLabelSetByLabelSetTemplateInput", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelingStatus", - "description": null, - "args": [], + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelingStatus", - "ofType": null - } + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "updateProjectSettings", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectSettingsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null } }, @@ -24155,27 +24888,32 @@ "deprecationReason": null }, { - "name": "performance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectPerformance", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "purpose", + "name": "updateProjectTemplate", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectTemplateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ProjectPurpose", + "kind": "OBJECT", + "name": "ProjectTemplate", "ofType": null } }, @@ -24183,27 +24921,81 @@ "deprecationReason": null }, { - "name": "reviewCabinet", + "name": "updateProjectTemplatesOrdering", "description": null, - "args": [], + "args": [ + { + "name": "ids", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "Cabinet", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTemplate", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewingStatus", + "name": "updateQuestionSet", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateQuestionSetInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ReviewingStatus", + "name": "QuestionSet", "ofType": null } }, @@ -24211,15 +25003,60 @@ "deprecationReason": null }, { - "name": "rootCabinet", + "name": "updateQuestionSetTemplate", "description": null, - "args": [], + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QuestionSetTemplateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Cabinet", + "name": "QuestionSetTemplate", "ofType": null } }, @@ -24227,47 +25064,166 @@ "deprecationReason": null }, { - "name": "rootDocumentId", + "name": "updateQuestions", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Question", + "ofType": null + } + } } }, - "isDeprecated": true, - "deprecationReason": "No longer supported" + "isDeprecated": false, + "deprecationReason": null }, { - "name": "selfLabelingStatus", + "name": "updateReviewDocumentMetas", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateReviewDocumentMetasInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlLabelingStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentMeta", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "settings", + "name": "updateRowAnswers", "description": null, - "args": [], + "args": [ + { + "name": "answers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "AnswerScalar", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectSettings", + "name": "UpdateRowAnswersResult", "ofType": null } }, @@ -24275,15 +25231,48 @@ "deprecationReason": null }, { - "name": "status", + "name": "updateRowQuestion", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "GqlProjectStatus", + "kind": "OBJECT", + "name": "Question", "ofType": null } }, @@ -24291,146 +25280,350 @@ "deprecationReason": null }, { - "name": "tags", + "name": "updateRowQuestions", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Question", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "updateSentenceConflict", "description": null, - "args": [], + "args": [ + { + "name": "labelerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resolved", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentenceId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textDocumentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateSentenceConflictResult", "ofType": null } }, - "isDeprecated": true, - "deprecationReason": "No longer supported" + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedDate", - "description": null, - "args": [], + "name": "updateSentenceDocLabels", + "description": "Deprecated. Please use `updateRowAnswers`.", + "args": [ + { + "name": "docLabelsString", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentenceId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textDocumentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateSentenceDocLabelsResult", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Deprecated. Please use `updateRowAnswers`." }, { - "name": "workspaceSettings", + "name": "updateTag", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTagInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "WorkspaceSettings", + "name": "Tag", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAssignment", - "description": null, - "fields": [ + }, { - "name": "documentIds", + "name": "updateTeam", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Team", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "documents", + "name": "updateTeamMemberTeamRole", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextDocument", - "ofType": null - } + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamMemberTeamRoleInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "updateTeamSetting", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamSettingInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ProjectAssignmentRole", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -24438,103 +25631,202 @@ "deprecationReason": null }, { - "name": "teamMember", - "description": null, - "args": [], + "name": "updateTextDocument", + "description": "Updates a specific document.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTextDocumentInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "TeamMember", + "name": "TextDocument", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAssignmentByNameInput", - "description": "Deprecated. See `LaunchTextProjectInput` and use field `documentAssignments` of type `DocumentAssignmentInput` instead.", - "fields": null, - "inputFields": [ + }, { - "name": "documentNames", - "description": "Document's name to be assigned.", + "name": "updateTextDocumentLabels", + "description": null, + "args": [ + { + "name": "inputs", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTextDocumentLabelsInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textDocumentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", - "description": "We only require one between teamMemberId and email. Use email for simplicity.", + "name": "updateTextDocumentSettings", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateTextDocumentSettingsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocumentSettings", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "updateTokenLabels", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTokenLabelsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "ProjectAssignmentRole", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamMemberId", - "description": "We only require one between teamMemberId and email. Use teamMember query to retrieve the teamMemberId.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAssignmentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "documentIds", + "name": "upsertBoundingBox", "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BoundingBoxLabelInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -24545,84 +25837,215 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BoundingBoxLabel", "ofType": null } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "upsertOauthClient", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectAssignmentRole", + "kind": "OBJECT", + "name": "UpsertOauthClientResult", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamMemberId", + "name": "upsertTimestampLabels", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimestampLabelInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimestampLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wipeProject", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WipeProjectInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "transferTeamMemberId", + "name": "wipeProjects", "description": null, + "args": [ + { + "name": "projectIds", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ProjectAssignmentRole", + "name": "OCRProvider", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "LABELER", + "name": "AMAZON_TEXTRACT", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "LABELER_AND_REVIEWER", + "name": "APACHE_TIKA", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "REVIEWER", + "name": "CUSTOM", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GOOGLE_CLOUD_VISION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "KONVERGEN", "description": null, "isDeprecated": false, "deprecationReason": null @@ -24632,27 +26055,23 @@ }, { "kind": "OBJECT", - "name": "ProjectConflictListItem", + "name": "ObjectMeta", "description": null, "fields": [ { - "name": "documentId", + "name": "createdAt", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "args": [], "type": { @@ -24668,92 +26087,81 @@ "deprecationReason": null }, { - "name": "labelerIds", + "name": "sizeInBytes", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ObjectStorageClientName", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "AWS_S3", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "resolved", + "name": "AZURE_BLOB_STORAGE", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "GOOGLE_CLOUD_STORAGE", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LabelEntityType", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ProjectConflictsCountItem", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "documentId", + "name": "skip", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfConflicts", + "name": "take", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -24763,37 +26171,31 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ProjectDynamicReviewMethod", + "name": "OrderType", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "ANY_OTHER_TEAM_MEMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ANY_REVIEWER", + "name": "ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DEDICATED_MEMBER", + "name": "DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -24803,11 +26205,11 @@ }, { "kind": "OBJECT", - "name": "ProjectExtension", + "name": "OverallProjectPerformance", "description": null, "fields": [ { - "name": "cabinetId", + "name": "completed", "description": null, "args": [], "type": { @@ -24815,7 +26217,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -24823,27 +26225,23 @@ "deprecationReason": null }, { - "name": "elements", + "name": "created", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtensionElement", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "inProgress", "description": null, "args": [], "type": { @@ -24851,7 +26249,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -24859,7 +26257,7 @@ "deprecationReason": null }, { - "name": "width", + "name": "inReview", "description": null, "args": [], "type": { @@ -24873,28 +26271,17 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectLaunchJob", - "description": null, - "fields": [ + }, { - "name": "job", + "name": "reviewReady", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Job", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -24902,7 +26289,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "total", "description": null, "args": [], "type": { @@ -24910,7 +26297,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -24924,292 +26311,398 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ProjectOrder", + "kind": "INPUT_OBJECT", + "name": "OverrideSentencesInput", "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "UPDATED_ASC", + "name": "documentId", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "UPDATED_DESC", + "name": "labelsToAdd", "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectPaginatedResponse", - "description": "Paginated list of projects.", - "fields": [ - { - "name": "nodes", - "description": "List of projects. See type `Project`.", - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GqlConflictableInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "labelsToDelete", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GqlConflictableInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", - "description": "Total number of projects that matches the applied filter", - "args": [], + "name": "sentences", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TextSentenceInput", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Package", + "description": null, + "fields": null, "inputFields": null, - "interfaces": [ + "interfaces": null, + "enumValues": [ { - "kind": "INTERFACE", - "name": "PaginatedResponse", - "ofType": null + "name": "ENTERPRISE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FREE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GROWTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ProjectPerformance", + "name": "PageInfo", "description": null, "fields": [ { - "name": "conflicts", + "name": "nextCursor", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "effectiveTotalTimeSpent", + "name": "prevCursor", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaginatedAnalyticsDashboardFilterInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "numberOfAcceptedLabels", + "name": "calendarDate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfDocuments", + "name": "chartId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfLines", + "name": "projectId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "numberOfTokens", + "name": "teamId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "userId", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaginatedAnalyticsDashboardQueryInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectId", + "name": "cursor", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalLabelApplied", + "name": "filter", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PaginatedAnalyticsDashboardFilterInput", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalTimeSpent", + "name": "page", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "OffsetPageInput", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortInput", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ProjectPurpose", + "kind": "OBJECT", + "name": "PaginatedChartDataResponse", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "LABELER_TEST", + "name": "nodes", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChartDataRow", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LABELING", + "name": "pageInfo", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "VALIDATION", + "name": "totalCount", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ProjectSample", + "kind": "INTERFACE", + "name": "PaginatedResponse", "description": null, "fields": [ { - "name": "displayName", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -25217,7 +26710,7 @@ "deprecationReason": null }, { - "name": "exportableJSON", + "name": "totalCount", "description": null, "args": [], "type": { @@ -25225,15 +26718,112 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DatasetPaginatedResponse", + "ofType": null }, { - "name": "id", + "kind": "OBJECT", + "name": "GetCellPositionsByMetadataPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetCellsPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetCommentsResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetLabelSetTemplatesResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetLabelsPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetPaginatedQuestionSetResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetRowAnswersPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetSpanAndArrowConflictsPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetSpanAndArrowRejectedLabelsPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetTeamMembersPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GetTeamTimelineEventsResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LabelSetPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MlModelPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PaginatedChartDataResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectPaginatedResponse", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RowAnalyticEventPaginatedResponse", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "PairKappa", + "description": null, + "fields": [ + { + "name": "kappa", "description": null, "args": [], "type": { @@ -25241,12 +26831,36 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "userId1", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId2", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -25256,67 +26870,83 @@ }, { "kind": "OBJECT", - "name": "ProjectSettings", + "name": "Project", "description": null, "fields": [ { - "name": "consensus", + "name": "assignees", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAssignment", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicReviewMemberId", + "name": "completedDate", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicReviewMethod", + "name": "createdDate", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "ProjectDynamicReviewMethod", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exportedDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableDeleteSentence", + "name": "guideline", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "Guideline", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableEditLabelSet", + "name": "id", "description": null, "args": [], "type": { @@ -25324,7 +26954,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -25332,23 +26962,19 @@ "deprecationReason": null }, { - "name": "enableEditSentence", + "name": "isArchived", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableInsertSentence", + "name": "isOwnerMe", "description": null, "args": [], "type": { @@ -25364,7 +26990,7 @@ "deprecationReason": null }, { - "name": "hideLabelerNamesDuringReview", + "name": "isReviewByMeAllowed", "description": null, "args": [], "type": { @@ -25380,39 +27006,51 @@ "deprecationReason": null }, { - "name": "hideLabelsFromInactiveLabelSetDuringReview", + "name": "labelerCabinets", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cabinet", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideOriginalSentencesDuringReview", + "name": "labelingStatus", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelingStatus", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideRejectedLabelsDuringReview", + "name": "name", "description": null, "args": [], "type": { @@ -25420,169 +27058,183 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectSettingsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "consensus", - "description": "Peer review / labeler consensus. It determines how many consensus so that the label will be automatically accepted.", + "name": "performance", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ProjectPerformance", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicReviewMemberId", + "name": "purpose", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectPurpose", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicReviewMethod", + "name": "reviewCabinet", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectDynamicReviewMethod", + "kind": "OBJECT", + "name": "Cabinet", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableDeleteSentence", - "description": "Labelers will be able to delete sentences from labeler mode. ", + "name": "reviewingStatus", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReviewingStatus", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableEditLabelSet", - "description": "Labelers will be restricted from adding or removing labels from the label set while labeling.", + "name": "rootCabinet", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cabinet", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableEditSentence", - "description": "Labelers will be able to edit the original text while labeling.\nSetting only this will populate enableInsertSentence & enableDeleteSentence with the same value.", + "name": "rootDocumentId", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "No longer supported" }, { - "name": "enableInsertSentence", - "description": "Labelers will be able to add new sentences from labeler mode.", + "name": "selfLabelingStatus", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GqlLabelingStatus", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideLabelerNamesDuringReview", + "name": "settings", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSettings", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideLabelsFromInactiveLabelSetDuringReview", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GqlProjectStatus", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideOriginalSentencesDuringReview", + "name": "tags", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideRejectedLabelsDuringReview", + "name": "team", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectTemplate", - "description": null, - "fields": [ + }, { - "name": "createdAt", + "name": "type", "description": null, "args": [], "type": { @@ -25594,50 +27246,65 @@ "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "No longer supported" }, { - "name": "creatorId", + "name": "updatedDate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "workspaceSettings", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "WorkspaceSettings", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAssignment", + "description": null, + "fields": [ { - "name": "labelSetTemplates", + "name": "documentIds", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelSetTemplate", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -25646,27 +27313,35 @@ "deprecationReason": null }, { - "name": "logoURL", + "name": "documents", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "role", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProjectAssignmentRole", "ofType": null } }, @@ -25674,7 +27349,7 @@ "deprecationReason": null }, { - "name": "projectTemplateProjectSetting", + "name": "teamMember", "description": null, "args": [], "type": { @@ -25682,97 +27357,131 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTemplateProjectSetting", + "name": "TeamMember", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAssignmentByNameInput", + "description": "Deprecated. See `LaunchTextProjectInput` and use field `documentAssignments` of type `DocumentAssignmentInput` instead.", + "fields": null, + "inputFields": [ { - "name": "projectTemplateProjectSettingId", - "description": null, - "args": [], + "name": "documentNames", + "description": "Document's name to be assigned.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectTemplateTextDocumentSetting", - "description": null, - "args": [], + "name": "email", + "description": "We only require one between teamMemberId and email. Use email for simplicity.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectTemplateTextDocumentSetting", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectTemplateTextDocumentSettingId", + "name": "role", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "ProjectAssignmentRole", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "purpose", + "name": "teamMemberId", + "description": "We only require one between teamMemberId and email. Use teamMember query to retrieve the teamMemberId.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAssignmentInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "documentIds", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ProjectPurpose", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "role", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } + "kind": "ENUM", + "name": "ProjectAssignmentRole", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamId", + "name": "teamMemberId", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -25782,54 +27491,63 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "transferTeamMemberId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ProjectTemplateProjectSetting", + "kind": "ENUM", + "name": "ProjectAssignmentRole", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "enableEditLabelSet", + "name": "LABELER", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableEditSentence", + "name": "LABELER_AND_REVIEWER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REVIEWER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConflictListItem", + "description": null, + "fields": [ + { + "name": "documentId", "description": null, "args": [], "type": { @@ -25837,7 +27555,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -25845,7 +27563,7 @@ "deprecationReason": null }, { - "name": "hideLabelerNamesDuringReview", + "name": "id", "description": null, "args": [], "type": { @@ -25853,7 +27571,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -25861,23 +27579,31 @@ "deprecationReason": null }, { - "name": "hideLabelsFromInactiveLabelSetDuringReview", + "name": "labelerIds", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideOriginalSentencesDuringReview", + "name": "resolved", "description": null, "args": [], "type": { @@ -25893,15 +27619,15 @@ "deprecationReason": null }, { - "name": "hideRejectedLabelsDuringReview", + "name": "type", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "LabelEntityType", "ofType": null } }, @@ -25916,11 +27642,11 @@ }, { "kind": "OBJECT", - "name": "ProjectTemplateTextDocumentSetting", + "name": "ProjectConflictsCountItem", "description": null, "fields": [ { - "name": "allTokensMustBeLabeled", + "name": "documentId", "description": null, "args": [], "type": { @@ -25928,7 +27654,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -25936,7 +27662,7 @@ "deprecationReason": null }, { - "name": "allowArcDrawing", + "name": "numberOfConflicts", "description": null, "args": [], "type": { @@ -25944,31 +27670,55 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectDynamicReviewMethod", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ANY_OTHER_TEAM_MEMBER", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "allowCharacterBasedLabeling", + "name": "ANY_REVIEWER", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allowMultiLabels", + "name": "DEDICATED_MEMBER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectExtension", + "description": null, + "fields": [ + { + "name": "cabinetId", "description": null, "args": [], "type": { @@ -25976,7 +27726,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -25984,7 +27734,7 @@ "deprecationReason": null }, { - "name": "anonymizationEntityTypes", + "name": "elements", "description": null, "args": [], "type": { @@ -25994,8 +27744,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ExtensionElement", "ofType": null } } @@ -26004,47 +27754,58 @@ "deprecationReason": null }, { - "name": "anonymizationMaskingMethod", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "anonymizationRegExps", + "name": "width", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RegularExpression", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectLaunchJob", + "description": null, + "fields": [ { - "name": "autoScrollWhenLabeling", + "name": "job", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Job", "ofType": null } }, @@ -26052,31 +27813,7 @@ "deprecationReason": null }, { - "name": "customScriptId", - "description": "Deprecated. Please use field `fileTransformerId` instead.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "No longer supported" - }, - { - "name": "customTextExtractionAPIId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayedRows", + "name": "name", "description": null, "args": [], "type": { @@ -26084,39 +27821,81 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "UPDATED_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "editSentenceTokenizer", + "name": "UPDATED_DESC", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPaginatedResponse", + "description": "Paginated list of projects.", + "fields": [ + { + "name": "nodes", + "description": "List of projects. See type `Project`.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableAnonymization", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -26124,47 +27903,64 @@ "deprecationReason": null }, { - "name": "enableTabularMarkdownParsing", - "description": null, + "name": "totalCount", + "description": "Total number of projects that matches the applied filter", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "fileTransformerId", + "kind": "INTERFACE", + "name": "PaginatedResponse", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPerformance", + "description": null, + "fields": [ + { + "name": "conflicts", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "firstRowAsHeader", + "name": "effectiveTotalTimeSpent", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hideBoundingBoxIfNoSpanOrArrowLabel", + "name": "numberOfAcceptedLabels", "description": null, "args": [], "type": { @@ -26172,7 +27968,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -26180,15 +27976,15 @@ "deprecationReason": null }, { - "name": "kind", + "name": "numberOfDocuments", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "TextDocumentKind", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -26196,35 +27992,31 @@ "deprecationReason": null }, { - "name": "kinds", + "name": "numberOfLines", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TextDocumentKind", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mediaDisplayStrategy", + "name": "numberOfTokens", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MediaDisplayStrategy", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -26232,31 +28024,95 @@ "deprecationReason": null }, { - "name": "ocrMethod", + "name": "project", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "TranscriptMethod", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "isDeprecated": true, - "deprecationReason": "Please use field `transcriptMethod` instead." + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ocrProvider", + "name": "projectId", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "OCRProvider", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sentenceSeparator", + "name": "totalLabelApplied", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalTimeSpent", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectPurpose", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "LABELER_TEST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LABELING", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VALIDATION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSample", + "description": null, + "fields": [ + { + "name": "displayName", "description": null, "args": [], "type": { @@ -26272,7 +28128,7 @@ "deprecationReason": null }, { - "name": "textLabelMaxTokenLength", + "name": "exportableJSON", "description": null, "args": [], "type": { @@ -26280,7 +28136,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -26288,7 +28144,7 @@ "deprecationReason": null }, { - "name": "tokenizer", + "name": "id", "description": null, "args": [], "type": { @@ -26296,7 +28152,34 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSettings", + "description": null, + "fields": [ + { + "name": "conflictResolution", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ConflictResolution", "ofType": null } }, @@ -26304,91 +28187,67 @@ "deprecationReason": null }, { - "name": "transcriptMethod", + "name": "consensus", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "TranscriptMethod", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Moved under `conflictResolution.consensus`" + }, + { + "name": "dynamicReviewMemberId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "viewer", + "name": "dynamicReviewMethod", "description": null, "args": [], "type": { "kind": "ENUM", - "name": "TextDocumentViewer", + "name": "ProjectDynamicReviewMethod", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "viewerConfig", + "name": "enableDeleteSentence", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "TextDocumentViewerConfig", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ + }, { - "name": "dictionaryLookup", + "name": "enableEditLabelSet", "description": null, - "args": [ - { - "name": "lang", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "word", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DictionaryResult", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -26396,121 +28255,47 @@ "deprecationReason": null }, { - "name": "dictionaryLookupBatch", + "name": "enableEditSentence", "description": null, - "args": [ - { - "name": "lang", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "words", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DictionaryResult", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "executeExportFileTransformer", - "description": "Simulates what an export file transformer will do to a document in a project, or to a project sample\nOne of documentId or projectSampleId is required", - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileTransformerId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectSampleId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "enableInsertSentence", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideLabelerNamesDuringReview", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ExportFileTransformerExecuteResult", + "name": "Boolean", "ofType": null } }, @@ -26518,48 +28303,31 @@ "deprecationReason": null }, { - "name": "executeImportFileTransformer", - "description": "Simulates what an import file transformer will do to an input", - "args": [ - { - "name": "content", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileTransformerId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "hideLabelsFromInactiveLabelSetDuringReview", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideOriginalSentencesDuringReview", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ImportFileTransformerExecuteResult", + "name": "Boolean", "ofType": null } }, @@ -26567,125 +28335,185 @@ "deprecationReason": null }, { - "name": "exportChart", + "name": "hideRejectedLabelsDuringReview", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AnalyticsDashboardQueryInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "type": { - "kind": "ENUM", - "name": "ExportChartMethod", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ExportRequestResult", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "conflictResolution", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ConflictResolutionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "exportTeamIAA", + "name": "dynamicReviewMemberId", "description": null, - "args": [ - { - "name": "labelSetSignature", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dynamicReviewMethod", + "description": null, + "type": { + "kind": "ENUM", + "name": "ProjectDynamicReviewMethod", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableDeleteSentence", + "description": "Labelers will be able to delete sentences from labeler mode. ", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableEditLabelSet", + "description": "Labelers will be restricted from adding or removing labels from the label set while labeling.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableEditSentence", + "description": "Labelers will be able to edit the original text while labeling.\nSetting only this will populate enableInsertSentence & enableDeleteSentence with the same value.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableInsertSentence", + "description": "Labelers will be able to add new sentences from labeler mode.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideLabelerNamesDuringReview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideLabelsFromInactiveLabelSetDuringReview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideOriginalSentencesDuringReview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideRejectedLabelsDuringReview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectTemplate", + "description": null, + "fields": [ + { + "name": "createdAt", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ExportRequestResult", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -26693,32 +28521,27 @@ "deprecationReason": null }, { - "name": "exportTeamOverview", - "description": "Exports team overview.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExportTeamOverviewInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "creatorId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ExportRequestResult", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -26726,65 +28549,47 @@ "deprecationReason": null }, { - "name": "exportTestProjectResult", - "description": "Exports test project result.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExportTestProjectResultInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "labelSetTemplates", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ExportRequestResult", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSetTemplate", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "exportTextProject", - "description": "Exports all files in a project.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExportTextProjectInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "logoURL", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ExportRequestResult", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -26792,32 +28597,15 @@ "deprecationReason": null }, { - "name": "exportTextProjectDocument", - "description": "Exports a single document / file.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExportTextProjectDocumentInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "projectTemplateProjectSetting", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ExportRequestResult", + "name": "ProjectTemplateProjectSetting", "ofType": null } }, @@ -26825,55 +28613,39 @@ "deprecationReason": null }, { - "name": "getAllTeams", + "name": "projectTemplateProjectSettingId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getAllowedIPs", + "name": "projectTemplateTextDocumentSetting", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ProjectTemplateTextDocumentSetting", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getAnalyticsLastUpdatedAt", + "name": "projectTemplateTextDocumentSettingId", "description": null, "args": [], "type": { @@ -26881,7 +28653,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -26889,63 +28661,25 @@ "deprecationReason": null }, { - "name": "getAutoLabel", + "name": "purpose", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AutoLabelTokenBasedInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AutoLabelTokenBasedOutput", - "ofType": null - } - } + "kind": "ENUM", + "name": "ProjectPurpose", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getAutoLabelModels", + "name": "questionSets", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AutoLabelModelsInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -26957,7 +28691,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AutoLabelModel", + "name": "QuestionSet", "ofType": null } } @@ -26967,69 +28701,31 @@ "deprecationReason": null }, { - "name": "getAutoLabelRowBased", + "name": "team", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AutoLabelRowBasedInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AutoLabelRowBasedOutput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Team", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getBoundingBoxConflictList", + "name": "teamId", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetBoundingBoxConflictListResult", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -27037,154 +28733,58 @@ "deprecationReason": null }, { - "name": "getBoundingBoxLabels", + "name": "updatedAt", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endCellLine", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startCellLine", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BoundingBoxLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectTemplateProjectSetting", + "description": null, + "fields": [ { - "name": "getBoundingBoxPages", + "name": "enableEditLabelSet", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BoundingBoxPage", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getCabinet", - "description": "Returns the specified project's cabinet. Contains list of documents. To get a project's ID, see `getProjects`.", - "args": [ - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Role", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "enableEditSentence", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Cabinet", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -27192,130 +28792,47 @@ "deprecationReason": null }, { - "name": "getCabinetEditSentenceConflicts", + "name": "hideLabelerNamesDuringReview", "description": null, - "args": [ - { - "name": "cabinetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EditSentenceConflict", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getCabinetLabelSetsById", + "name": "hideLabelsFromInactiveLabelSetDuringReview", "description": null, - "args": [ - { - "name": "cabinetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getCellPositionsByMetadata", - "description": "Returns a paginated list of Cell positions along with its origin document ID.", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetCellPositionsByMetadataPaginatedInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "hideOriginalSentencesDuringReview", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetCellPositionsByMetadataPaginatedResponse", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -27323,207 +28840,74 @@ "deprecationReason": null }, { - "name": "getCells", + "name": "hideRejectedLabelsDuringReview", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetCellsPaginatedInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signature", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetCellsPaginatedResponse", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectTemplateTextDocumentSetting", + "description": null, + "fields": [ { - "name": "getChartData", + "name": "allTokensMustBeLabeled", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AnalyticsDashboardQueryInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChartDataRow", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getCharts", + "name": "allowArcDrawing", "description": null, - "args": [ - { - "name": "level", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChartLevel", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Chart", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getComments", + "name": "allowCharacterBasedLabeling", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetCommentsInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetCommentsResponse", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -27531,73 +28915,83 @@ "deprecationReason": null }, { - "name": "getConflictAnswers", + "name": "allowMultiLabels", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetConflictAnswersInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConflictAnswerSentence", - "ofType": null - } - } - } - }, + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getCurrentUserTeamMember", + "name": "anonymizationEntityTypes", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetCurrentUserTeamMemberInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymizationMaskingMethod", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymizationRegExps", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RegularExpression", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoScrollWhenLabeling", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamMember", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -27605,32 +28999,55 @@ "deprecationReason": null }, { - "name": "getCustomAPI", + "name": "customScriptId", + "description": "Deprecated. Please use field `fileTransformerId` instead.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "No longer supported" + }, + { + "name": "customTextExtractionAPIId", "description": null, - "args": [ - { - "name": "customAPIId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayedRows", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editSentenceTokenizer", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomAPI", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -27638,52 +29055,107 @@ "deprecationReason": null }, { - "name": "getCustomAPIs", + "name": "enableAnonymization", "description": null, - "args": [ - { - "name": "purpose", - "description": null, - "type": { - "kind": "ENUM", - "name": "CustomAPIPurpose", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableTabularMarkdownParsing", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileTransformerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstRowAsHeader", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hideBoundingBoxIfNoSpanOrArrowLabel", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextDocumentKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kinds", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CustomAPI", - "ofType": null - } + "kind": "ENUM", + "name": "TextDocumentKind", + "ofType": null } } }, @@ -27691,36 +29163,142 @@ "deprecationReason": null }, { - "name": "getDataset", + "name": "mediaDisplayStrategy", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MediaDisplayStrategy", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ocrMethod", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Dataset", + "kind": "ENUM", + "name": "TranscriptMethod", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use field `transcriptMethod` instead." + }, + { + "name": "ocrProvider", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "OCRProvider", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getDatasets", + "name": "sentenceSeparator", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textLabelMaxTokenLength", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenizer", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transcriptMethod", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "TranscriptMethod", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewer", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "TextDocumentViewer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewerConfig", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TextDocumentViewerConfig", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "checkExternalObjectStorageConnection", "description": null, "args": [ { @@ -27731,7 +29309,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetDatasetsPaginatedInput", + "name": "CreateExternalObjectStorageInput", "ofType": null } }, @@ -27744,8 +29322,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DatasetPaginatedResponse", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -27753,18 +29331,18 @@ "deprecationReason": null }, { - "name": "getDocumentAnswers", + "name": "countProjectsByExternalObjectStorageId", "description": null, "args": [ { - "name": "documentId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -27777,8 +29355,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DocumentAnswer", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -27786,18 +29364,30 @@ "deprecationReason": null }, { - "name": "getDocumentLabelConflicts", + "name": "dictionaryLookup", "description": null, "args": [ { - "name": "documentId", + "name": "lang", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "word", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -27810,41 +29400,57 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConflictAnswer", - "ofType": null - } - } + "kind": "OBJECT", + "name": "DictionaryResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getDocumentLabelSets", - "description": "Returns labelsets associated with the specified document.\nTo get `documentId`, see `getCabinet`.", + "name": "dictionaryLookupBatch", + "description": null, "args": [ { - "name": "documentId", + "name": "lang", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "words", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -27858,7 +29464,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LabelSet", + "name": "DictionaryResult", "ofType": null } } @@ -27868,22 +29474,46 @@ "deprecationReason": null }, { - "name": "getDocumentLabels", - "description": "Deprecated. Please use `getDocumentAnswers`.", + "name": "executeExportFileTransformer", + "description": "Simulates what an export file transformer will do to a document in a project, or to a project sample\nOne of documentId or projectSampleId is required", "args": [ { "name": "documentId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileTransformerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSampleId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } @@ -27892,28 +29522,36 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocumentBoundLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ExportFileTransformerExecuteResult", + "ofType": null } }, - "isDeprecated": true, - "deprecationReason": "Deprecated. Please use `getDocumentAnswers`." + "isDeprecated": false, + "deprecationReason": null }, { - "name": "getDocumentMetasByCabinetId", - "description": null, + "name": "executeImportFileTransformer", + "description": "Simulates what an import file transformer will do to an input", "args": [ { - "name": "cabinetId", + "name": "content", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileTransformerId", "description": null, "type": { "kind": "NON_NULL", @@ -27933,28 +29571,20 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocumentMeta", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ImportFileTransformerExecuteResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getEditSentenceConflicts", + "name": "exportChart", "description": null, "args": [ { - "name": "documentId", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -27968,6 +29598,34 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AnalyticsDashboardQueryInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "method", + "description": null, + "type": { + "kind": "ENUM", + "name": "ExportChartMethod", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -27975,7 +29633,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EditSentenceConflict", + "name": "ExportRequestResult", "ofType": null } }, @@ -27983,18 +29641,34 @@ "deprecationReason": null }, { - "name": "getExportDeliveryStatus", - "description": null, + "name": "exportCustomReport", + "description": "Exports custom report.", "args": [ { - "name": "exportId", + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomReportBuilderInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -28008,7 +29682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GetExportDeliveryStatusResult", + "name": "ExportRequestResult", "ofType": null } }, @@ -28016,15 +29690,47 @@ "deprecationReason": null }, { - "name": "getExportable", + "name": "exportLabelAccuracyChart", "description": null, "args": [ { - "name": "documentId", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AnalyticsDashboardQueryInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "method", + "description": null, + "type": { + "kind": "ENUM", + "name": "ExportChartMethod", "ofType": null }, "defaultValue": null, @@ -28036,8 +29742,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ExportableJSON", + "kind": "OBJECT", + "name": "ExportRequestResult", "ofType": null } }, @@ -28045,18 +29751,58 @@ "deprecationReason": null }, { - "name": "getExtensions", - "description": null, + "name": "exportTeamIAA", + "description": "Exports team IAA.", "args": [ { - "name": "cabinetId", + "name": "labelSetSignatures", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -28066,24 +29812,20 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Extension", - "ofType": null - } + "kind": "OBJECT", + "name": "ExportRequestResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getExternalFilesByApi", - "description": null, + "name": "exportTeamOverview", + "description": "Exports team overview.", "args": [ { "name": "input", @@ -28093,7 +29835,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetExternalFilesByApiInput", + "name": "ExportTeamOverviewInput", "ofType": null } }, @@ -28106,35 +29848,27 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExternalFile", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ExportRequestResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getFileTransformer", - "description": null, + "name": "exportTestProjectResult", + "description": "Exports test project result.", "args": [ { - "name": "fileTransformerId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ExportTestProjectResultInput", "ofType": null } }, @@ -28148,7 +29882,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FileTransformer", + "name": "ExportRequestResult", "ofType": null } }, @@ -28156,30 +29890,51 @@ "deprecationReason": null }, { - "name": "getFileTransformers", - "description": null, + "name": "exportTextProject", + "description": "Exports all files in a project.", "args": [ { - "name": "purpose", + "name": "input", "description": null, "type": { - "kind": "ENUM", - "name": "FileTransformerPurpose", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExportTextProjectInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExportRequestResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exportTextProjectDocument", + "description": "Exports a single document / file.", + "args": [ { - "name": "teamId", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ExportTextProjectDocumentInput", "ofType": null } }, @@ -28188,6 +29943,22 @@ "deprecationReason": null } ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExportRequestResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getAllTeams", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -28199,7 +29970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FileTransformer", + "name": "Team", "ofType": null } } @@ -28209,32 +29980,39 @@ "deprecationReason": null }, { - "name": "getGeneralWorkspaceSettings", + "name": "getAllowedIPs", "description": null, - "args": [ - { - "name": "projectId", - "description": null, - "type": { + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getAnalyticsLastUpdatedAt", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GeneralWorkspaceSettings", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -28242,9 +30020,22 @@ "deprecationReason": null }, { - "name": "getGrammarCheckerServiceProviders", + "name": "getAutoLabel", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AutoLabelTokenBasedInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -28256,7 +30047,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GrammarCheckerServiceProvider", + "name": "AutoLabelTokenBasedOutput", "ofType": null } } @@ -28266,7 +30057,7 @@ "deprecationReason": null }, { - "name": "getGrammarMistakes", + "name": "getAutoLabelModels", "description": null, "args": [ { @@ -28277,7 +30068,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GrammarCheckerInput", + "name": "AutoLabelModelsInput", "ofType": null } }, @@ -28297,7 +30088,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GrammarMistake", + "name": "AutoLabelModel", "ofType": null } } @@ -28307,15 +30098,15 @@ "deprecationReason": null }, { - "name": "getGuidelines", + "name": "getAutoLabelRowBased", "description": null, "args": [ { - "name": "teamId", + "name": "input", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "AutoLabelRowBasedInput", "ofType": null }, "defaultValue": null, @@ -28334,7 +30125,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Guideline", + "name": "AutoLabelRowBasedOutput", "ofType": null } } @@ -28344,11 +30135,11 @@ "deprecationReason": null }, { - "name": "getInvalidAnswerInfos", + "name": "getBoundingBoxConflictList", "description": null, "args": [ { - "name": "cabinetId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -28368,73 +30159,93 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InvalidAnswerInfo", - "ofType": null - } - } + "kind": "OBJECT", + "name": "GetBoundingBoxConflictListResult", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getJob", - "description": "Get a specific Job by its ID.\nCan be used to check the status of a `ProjectLaunchJob`.", + "name": "getBoundingBoxLabels", + "description": null, "args": [ { - "name": "jobId", - "description": "Job ID.", + "name": "documentId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "endCellLine", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startCellLine", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "Job", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxLabel", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getJobs", + "name": "getBoundingBoxPages", "description": null, "args": [ { - "name": "jobIds", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, @@ -28449,9 +30260,13 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Job", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxPage", + "ofType": null + } } } }, @@ -28459,11 +30274,11 @@ "deprecationReason": null }, { - "name": "getLabelSetTemplate", - "description": "Returns a single labelset template.", + "name": "getCabinet", + "description": "Returns the specified project's cabinet. Contains list of documents. To get a project's ID, see `getProjects`.", "args": [ { - "name": "id", + "name": "projectId", "description": null, "type": { "kind": "NON_NULL", @@ -28477,29 +30292,16 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelSetTemplate", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getLabelSetTemplates", - "description": "Returns a list of labelset templates.", - "args": [ + }, { - "name": "input", + "name": "role", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetLabelSetTemplatesPaginatedInput", + "kind": "ENUM", + "name": "Role", "ofType": null } }, @@ -28513,7 +30315,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GetLabelSetTemplatesResponse", + "name": "Cabinet", "ofType": null } }, @@ -28521,9 +30323,26 @@ "deprecationReason": null }, { - "name": "getLabelSets", - "description": "Returns a list of labelset.", - "args": [], + "name": "getCabinetEditSentenceConflicts", + "description": null, + "args": [ + { + "name": "cabinetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -28535,7 +30354,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LabelSet", + "name": "EditSentenceConflict", "ofType": null } } @@ -28545,11 +30364,11 @@ "deprecationReason": null }, { - "name": "getLabelsPaginated", + "name": "getCabinetLabelSetsById", "description": null, "args": [ { - "name": "documentId", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", @@ -28563,7 +30382,32 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getCellPositionsByMetadata", + "description": "Returns a paginated list of Cell positions along with its origin document ID.", + "args": [ { "name": "input", "description": null, @@ -28572,7 +30416,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetLabelsPaginatedInput", + "name": "GetCellPositionsByMetadataPaginatedInput", "ofType": null } }, @@ -28581,12 +30425,16 @@ "deprecationReason": null }, { - "name": "signature", + "name": "projectId", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -28598,7 +30446,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GetLabelsPaginatedResponse", + "name": "GetCellPositionsByMetadataPaginatedResponse", "ofType": null } }, @@ -28606,11 +30454,11 @@ "deprecationReason": null }, { - "name": "getMlModel", + "name": "getCells", "description": null, "args": [ { - "name": "id", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -28624,20 +30472,7 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "MlModel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getMlModels", - "description": null, - "args": [ + }, { "name": "input", "description": null, @@ -28646,37 +30481,20 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetMlModelsPaginatedInput", + "name": "GetCellsPaginatedInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MlModelPaginatedResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getOverallProjectPerformance", - "description": null, - "args": [ + }, { - "name": "teamId", + "name": "signature", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -28689,7 +30507,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OverallProjectPerformance", + "name": "GetCellsPaginatedResponse", "ofType": null } }, @@ -28697,42 +30515,25 @@ "deprecationReason": null }, { - "name": "getPaginatedChartData", + "name": "getChartData", "description": null, "args": [ { - "name": "input", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PaginatedAnalyticsDashboardQueryInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PaginatedChartDataResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPaginatedLabelSets", - "description": "Returns a paginated list of labelsets.", - "args": [ + }, { "name": "input", "description": null, @@ -28741,7 +30542,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetLabelSetsPaginatedInput", + "name": "AnalyticsDashboardQueryInput", "ofType": null } }, @@ -28754,44 +30555,36 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LabelSetPaginatedResponse", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChartDataRow", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getPairKappas", + "name": "getCharts", "description": null, "args": [ { - "name": "labelSetSignature", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectIds", + "name": "level", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "ChartLevel", + "ofType": null } }, "defaultValue": null, @@ -28826,7 +30619,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PairKappa", + "name": "Chart", "ofType": null } } @@ -28836,16 +30629,20 @@ "deprecationReason": null }, { - "name": "getPersonalTags", - "description": "Returns a list of personal tags.", + "name": "getComments", + "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetPersonalTagsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetCommentsInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -28856,24 +30653,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - } + "kind": "OBJECT", + "name": "GetCommentsResponse", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getPredictedLabels", + "name": "getConflictAnswers", "description": null, "args": [ { @@ -28884,7 +30673,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetPredictedLabelsInput", + "name": "GetConflictAnswersInput", "ofType": null } }, @@ -28904,7 +30693,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TextLabel", + "name": "ConflictAnswerSentence", "ofType": null } } @@ -28914,8 +30703,8 @@ "deprecationReason": null }, { - "name": "getProject", - "description": "Returns a single project identified by its ID.", + "name": "getCurrentUserTeamMember", + "description": null, "args": [ { "name": "input", @@ -28925,7 +30714,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetProjectInput", + "name": "GetCurrentUserTeamMemberInput", "ofType": null } }, @@ -28939,7 +30728,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "TeamMember", "ofType": null } }, @@ -28947,11 +30736,11 @@ "deprecationReason": null }, { - "name": "getProjectCabinets", - "description": "Returns all of the project's cabinets.", + "name": "getCustomAPI", + "description": null, "args": [ { - "name": "projectId", + "name": "customAPIId", "description": null, "type": { "kind": "NON_NULL", @@ -28971,28 +30760,32 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cabinet", - "ofType": null - } - } + "kind": "OBJECT", + "name": "CustomAPI", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getProjectConflictList", + "name": "getCustomAPIs", "description": null, "args": [ { - "name": "projectId", + "name": "purpose", + "description": null, + "type": { + "kind": "ENUM", + "name": "CustomAPIPurpose", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", @@ -29012,47 +30805,26 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetProjectConflictListResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getProjectConflictsCount", - "description": "Total Project Conflict Count. Returns total label conflicts plus edit sentence conflicts", - "args": [ - { - "name": "projectId", - "description": null, - "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CustomAPI", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "Role", - "ofType": null - }, - "defaultValue": "REVIEWER", - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getCustomReportMetricsGroupTables", + "description": "Returns custom report metrics group tables.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -29064,7 +30836,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectConflictsCountItem", + "name": "CustomReportMetricsGroupTable", "ofType": null } } @@ -29074,11 +30846,36 @@ "deprecationReason": null }, { - "name": "getProjectExtension", + "name": "getDataProgramming", "description": null, "args": [ { - "name": "cabinetId", + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetDataProgrammingInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DataProgramming", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getDataset", + "description": null, + "args": [ + { + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -29096,25 +30893,25 @@ ], "type": { "kind": "OBJECT", - "name": "ProjectExtension", + "name": "Dataset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getProjectSample", - "description": "Returns a single project identified by its ID.", + "name": "getDatasets", + "description": null, "args": [ { - "name": "id", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "GetDatasetsPaginatedInput", "ofType": null } }, @@ -29128,7 +30925,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectSample", + "name": "DatasetPaginatedResponse", "ofType": null } }, @@ -29136,16 +30933,20 @@ "deprecationReason": null }, { - "name": "getProjectSamples", - "description": "Returns a list of ProjectSample matching the given name", + "name": "getDocumentAnswerConflicts", + "description": null, "args": [ { - "name": "displayName", + "name": "documentId", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -29163,7 +30964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectSample", + "name": "ConflictAnswer", "ofType": null } } @@ -29173,11 +30974,11 @@ "deprecationReason": null }, { - "name": "getProjectTemplate", + "name": "getDocumentAnswers", "description": null, "args": [ { - "name": "id", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -29198,7 +30999,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTemplate", + "name": "DocumentAnswer", "ofType": null } }, @@ -29206,11 +31007,11 @@ "deprecationReason": null }, { - "name": "getProjectTemplates", + "name": "getDocumentLabelConflicts", "description": null, "args": [ { - "name": "teamId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -29237,7 +31038,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTemplate", + "name": "ConflictAnswer", "ofType": null } } @@ -29247,18 +31048,18 @@ "deprecationReason": null }, { - "name": "getProjects", - "description": "Returns a paginated list of projects.", + "name": "getDocumentLabelSets", + "description": "Returns labelsets associated with the specified document.\nTo get `documentId`, see `getCabinet`.", "args": [ { - "name": "input", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetProjectsPaginatedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -29271,36 +31072,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectPaginatedResponse", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getQuestionSetTemplate", + "name": "getDocumentMetasByCabinetId", "description": null, "args": [ { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", @@ -29320,20 +31113,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "QuestionSetTemplate", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentMeta", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getQuestionSetTemplates", + "name": "getDocumentQuestions", "description": null, "args": [ { - "name": "teamId", + "name": "projectId", "description": null, "type": { "kind": "NON_NULL", @@ -29360,7 +31161,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "QuestionSetTemplate", + "name": "Question", "ofType": null } } @@ -29370,11 +31171,11 @@ "deprecationReason": null }, { - "name": "getQuestionsByCabinetId", + "name": "getEditSentenceConflicts", "description": null, "args": [ { - "name": "cabinetId", + "name": "documentId", "description": null, "type": { "kind": "NON_NULL", @@ -29394,35 +31195,27 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Question", - "ofType": null - } - } + "kind": "OBJECT", + "name": "EditSentenceConflict", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getRowAnalyticEvents", + "name": "getExportDeliveryStatus", "description": null, "args": [ { - "name": "input", + "name": "exportId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RowAnalyticEventInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -29436,7 +31229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RowAnalyticEventPaginatedResponse", + "name": "GetExportDeliveryStatusResult", "ofType": null } }, @@ -29444,44 +31237,49 @@ "deprecationReason": null }, { - "name": "getRowAnswersPaginated", + "name": "getExportable", "description": null, "args": [ { "name": "documentId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GetRowAnswersPaginatedInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ExportableJSON", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getExtensions", + "description": null, + "args": [ { - "name": "signature", + "name": "cabinetId", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -29489,21 +31287,42 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetRowAnswersPaginatedResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getSearchHistoryKeywords", + "name": "getExternalFilesByApi", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetExternalFilesByApiInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -29515,7 +31334,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SearchHistoryKeyword", + "name": "ExternalFile", "ofType": null } } @@ -29525,11 +31344,11 @@ "deprecationReason": null }, { - "name": "getSpanAndArrowConflictContributorIds", + "name": "getExternalObjectMeta", "description": null, "args": [ { - "name": "documentId", + "name": "externalObjectStorageId", "description": null, "type": { "kind": "NON_NULL", @@ -29545,7 +31364,7 @@ "deprecationReason": null }, { - "name": "labelHashCodes", + "name": "objectKeys", "description": null, "type": { "kind": "NON_NULL", @@ -29580,7 +31399,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ConflictContributorIds", + "name": "ObjectMeta", "ofType": null } } @@ -29590,11 +31409,11 @@ "deprecationReason": null }, { - "name": "getSpanAndArrowConflicts", + "name": "getExternalObjectStorages", "description": null, "args": [ { - "name": "documentId", + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", @@ -29608,34 +31427,129 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalObjectStorage", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getFileTransformer", + "description": null, + "args": [ { - "name": "input", + "name": "fileTransformerId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetSpanAndArrowConflictsPaginatedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileTransformer", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getFileTransformers", + "description": null, + "args": [ { - "name": "signature", + "name": "purpose", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "FileTransformerPurpose", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileTransformer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getGeneralWorkspaceSettings", + "description": null, + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { @@ -29643,7 +31557,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GetSpanAndArrowConflictsPaginatedResponse", + "name": "GeneralWorkspaceSettings", "ofType": null } }, @@ -29651,8 +31565,32 @@ "deprecationReason": null }, { - "name": "getTags", - "description": "Returns a list of team-owned tags.", + "name": "getGrammarCheckerServiceProviders", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GrammarCheckerServiceProvider", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getGrammarMistakes", + "description": null, "args": [ { "name": "input", @@ -29662,7 +31600,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "GetTagsInput", + "name": "GrammarCheckerInput", "ofType": null } }, @@ -29682,7 +31620,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "GrammarMistake", "ofType": null } } @@ -29692,15 +31630,15 @@ "deprecationReason": null }, { - "name": "getTeamDetail", + "name": "getGuidelines", "description": null, "args": [ { - "name": "input", + "name": "teamId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetTeamDetailInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -29712,20 +31650,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Guideline", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTeamMemberDetail", + "name": "getInvalidAnswerInfos", "description": null, "args": [ { - "name": "memberId", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", @@ -29739,9 +31685,34 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InvalidAnswerInfo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getInvalidDocumentAnswerInfos", + "description": null, + "args": [ { - "name": "teamId", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", @@ -29761,20 +31732,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InvalidAnswerInfo", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTeamMembers", - "description": "Returns the specified team's members.\n`teamId` can be seen in web UI, visible in the URL (https://datasaur.ai/teams/{teamId}/...)\n, or obtained via `getAllTeams`.", + "name": "getInvalidRowAnswerInfos", + "description": null, "args": [ { - "name": "teamId", + "name": "cabinetId", "description": null, "type": { "kind": "NON_NULL", @@ -29801,7 +31780,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TeamMember", + "name": "InvalidAnswerInfo", "ofType": null } } @@ -29811,19 +31790,56 @@ "deprecationReason": null }, { - "name": "getTeamMembersPaginated", + "name": "getJob", + "description": "Get a specific Job by its ID.\nCan be used to check the status of a `ProjectLaunchJob`.", + "args": [ + { + "name": "jobId", + "description": "Job ID.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getJobs", "description": null, "args": [ { - "name": "input", + "name": "jobIds", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetTeamMembersPaginatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "defaultValue": null, @@ -29835,27 +31851,31 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetTeamMembersPaginatedResponse", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTeamProjectAssignees", + "name": "getLabelAccuracyChart", "description": null, "args": [ { - "name": "input", + "name": "teamId", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetTeamProjectAssigneesInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -29875,7 +31895,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAssignment", + "name": "Chart", "ofType": null } } @@ -29885,19 +31905,40 @@ "deprecationReason": null }, { - "name": "getTeamRoles", + "name": "getLabelAccuracyData", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AnalyticsDashboardQueryInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamRole", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChartDataRow", + "ofType": null + } } } }, @@ -29905,11 +31946,11 @@ "deprecationReason": null }, { - "name": "getTeamTimelineEvent", - "description": null, + "name": "getLabelSetTemplate", + "description": "Returns a single labelset template.", "args": [ { - "name": "teamId", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -29925,6 +31966,51 @@ "deprecationReason": null } ], + "type": { + "kind": "OBJECT", + "name": "LabelSetTemplate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getLabelSetTemplates", + "description": "Returns a list of labelset templates.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetLabelSetTemplatesPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetLabelSetTemplatesResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getLabelSets", + "description": "Returns a list of labelset.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -29936,7 +32022,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TimelineEvent", + "name": "LabelSet", "ofType": null } } @@ -29946,16 +32032,20 @@ "deprecationReason": null }, { - "name": "getTeamTimelineEvents", + "name": "getLabelSetsByTeamId", "description": null, "args": [ { - "name": "input", + "name": "teamId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GetTeamTimelineEventsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -29966,20 +32056,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GetTeamTimelineEventsResponse", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSet", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTextDocument", + "name": "getLabelingFunction", "description": null, "args": [ { - "name": "fileId", + "name": "labelingFunctionId", "description": null, "type": { "kind": "NON_NULL", @@ -29993,14 +32091,35 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelingFunction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getLabelingFunctions", + "description": null, + "args": [ { - "name": "signature", + "name": "input", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetLabelingFunctionsInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -30008,134 +32127,2742 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocument", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelingFunction", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getLabelsPaginated", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetLabelsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetLabelsPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getMlModel", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MlModel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getMlModels", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetMlModelsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MlModelPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getOverallProjectPerformance", + "description": null, + "args": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OverallProjectPerformance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPaginatedChartData", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PaginatedAnalyticsDashboardQueryInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaginatedChartDataResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPaginatedLabelSets", + "description": "Returns a paginated list of labelsets.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetLabelSetsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LabelSetPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPaginatedQuestionSets", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetPaginatedQuestionSetInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetPaginatedQuestionSetResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPairKappas", + "description": null, + "args": [ + { + "name": "labelSetSignatures", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairKappa", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPersonalTags", + "description": "Returns a list of personal tags.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetPersonalTagsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getPredictedLabels", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetPredictedLabelsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProject", + "description": "Returns a single project identified by its ID.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetProjectInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectCabinets", + "description": "Returns all of the project's cabinets.", + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cabinet", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectConflictList", + "description": null, + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetProjectConflictListResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectConflictsCount", + "description": "Total Project Conflict Count. Returns total label conflicts plus edit sentence conflicts", + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "ENUM", + "name": "Role", + "ofType": null + }, + "defaultValue": "REVIEWER", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConflictsCountItem", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectExtension", + "description": null, + "args": [ + { + "name": "cabinetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectSample", + "description": "Returns a single project identified by its ID.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSample", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectSamples", + "description": "Returns a list of ProjectSample matching the given name", + "args": [ + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSample", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectTemplate", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTemplate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjectTemplates", + "description": null, + "args": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTemplate", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getProjects", + "description": "Returns a paginated list of projects.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetProjectsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getQuestionSet", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getQuestionSetTemplate", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionSetTemplate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getQuestionSetTemplates", + "description": null, + "args": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionSetTemplate", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getQuestionsByCabinetId", + "description": null, + "args": [ + { + "name": "cabinetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Question", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getRowAnalyticEvents", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RowAnalyticEventInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RowAnalyticEventPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getRowAnswerConflicts", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetRowAnswerConflictsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RowAnswerConflicts", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getRowAnswersPaginated", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetRowAnswersPaginatedInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetRowAnswersPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getRowQuestions", + "description": null, + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Question", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSearchHistoryKeywords", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SearchHistoryKeyword", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSpanAndArrowConflictContributorIds", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelHashCodes", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ConflictContributorIds", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSpanAndArrowConflicts", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetSpanAndArrowConflictsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetSpanAndArrowConflictsPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSpanAndArrowRejectedLabels", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetSpanAndArrowRejectedLabelsPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetSpanAndArrowRejectedLabelsPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTags", + "description": "Returns a list of team-owned tags.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetTagsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamDetail", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetTeamDetailInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamMemberDetail", + "description": null, + "args": [ + { + "name": "memberId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamMembers", + "description": "Returns the specified team's members.\n`teamId` can be seen in web UI, visible in the URL (https://datasaur.ai/teams/{teamId}/...)\n, or obtained via `getAllTeams`.", + "args": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMember", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamMembersPaginated", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetTeamMembersPaginatedInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetTeamMembersPaginatedResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamProjectAssignees", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetTeamProjectAssigneesInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAssignment", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamRoles", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamRole", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamTimelineEvent", + "description": null, + "args": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimelineEvent", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTeamTimelineEvents", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GetTeamTimelineEventsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GetTeamTimelineEventsResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTextDocument", + "description": null, + "args": [ + { + "name": "fileId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTextDocumentOriginIdsByDocumentName", + "description": "Filter Text Document whose name matches the given regular expression. Returns the Text Document origin ID.", + "args": [ + { + "name": "nameRegexString", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTextDocumentSettings", + "description": null, + "args": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocumentSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTextDocumentStatistic", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocumentStatistic", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTimestampLabels", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromTimestampMillis", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimestampLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTimestampLabelsAtTimestamp", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestampMillis", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimestampLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTrainingJobs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TrainingJob", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUnusedLabelSetItemInfos", + "description": null, + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnusedLabelSetItemInfo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUsage", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GetUsageInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Usage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getWaveformPeaks", + "description": "Generate audiowaveform data for an audio project. Waveform data generated by using https://github.com/bbc/audiowaveform", + "args": [ + { + "name": "documentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pixelPerSecond", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WaveformPeaks", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "me", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyBetaKey", + "description": null, + "args": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyInvitationLink", + "description": null, + "args": [ + { + "name": "invitationKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InvitationVerificationResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyResetPasswordSignature", + "description": null, + "args": [ + { + "name": "signature", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Question", + "description": null, + "fields": [ + { + "name": "activationConditionLogic", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bindToColumn", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionConfig", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "QuestionType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QuestionConfig", + "description": null, + "fields": [ + { + "name": "defaultValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hint", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxLength", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minLength", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multiline", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multiple", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionConfigOptions", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pattern", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Question", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "step", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "theme", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SliderTheme", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QuestionConfigInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "Applies for DATE, TIME. Possible value `NOW`", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": "Applies for DATE, TIME. Possible values for DATE are `DD-MM-YYYY`, `MM-DD-YYYY`, `YYYY-MM-DD` `DD/MM/YYYY`, `MM/DD/YYYY` and `YYYY/MM/DD`. Possible values for TIME are `HH:mm:ss`, `HH:mm`, `HH.mm.ss`, and `HH.mm`", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hint", + "description": "Applies for CHECKBOX.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": "Applies for SLIDER.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxLength", + "description": "Applies for TEXT.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": "Applies for SLIDER.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minLength", + "description": "Applies for TEXT.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multiline", + "description": "Applies for TEXT. Set it as true if you want to enter long text.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multiple", + "description": "Applies for TEXT, NESTED, DROPDOWN, HIERARCHICAL_DROPDOWN. Set it as true if you want to have multiple answers for this question.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": "Applies for Dropdown, HIERARCHICAL_DROPDOWN.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionConfigOptionsInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pattern", + "description": "Applies for TEXT. This field could have contain a regex string, which the browser natively uses for validation. E.g. `[0-9]*`", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "getTextDocumentOriginIdsByDocumentName", - "description": "Filter Text Document whose name matches the given regular expression. Returns the Text Document origin ID.", - "args": [ - { - "name": "nameRegexString", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "questions", + "description": "Applies for NESTED.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTextDocumentSettings", - "description": null, - "args": [ - { - "name": "projectId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "step", + "description": "Applies for SLIDER.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextDocumentSettings", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTextDocumentStatistic", + "name": "theme", + "description": "Applies for SLIDER.", + "type": { + "kind": "ENUM", + "name": "SliderTheme", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QuestionConfigOptions", + "description": null, + "fields": [ + { + "name": "id", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TextDocumentStatistic", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -30143,377 +34870,244 @@ "deprecationReason": null }, { - "name": "getTimestampLabels", + "name": "label", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fromTimestampMillis", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimestampLabel", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTimestampLabelsAtTimestamp", + "name": "parentId", "description": null, - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestampMillis", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimestampLabel", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "getTrainingJobs", + "name": "questionId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TrainingJob", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QuestionConfigOptionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "getUsage", + "name": "id", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GetUsageInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Usage", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "getWaveformPeaks", - "description": "Generate audiowaveform data for an audio project. Waveform data generated by using https://github.com/bbc/audiowaveform", - "args": [ - { - "name": "documentId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pixelPerSecond", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "label", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WaveformPeaks", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "me", - "description": null, - "args": [], + "name": "parentId", + "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", "type": { - "kind": "OBJECT", - "name": "User", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QuestionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "activationConditionLogic", + "description": "Custom activation logic", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifyBetaKey", + "name": "bindToColumn", "description": null, - "args": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifyInvitationLink", + "name": "config", "description": null, - "args": [ - { - "name": "invitationKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InvitationVerificationResult", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "QuestionConfigInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifyResetPasswordSignature", - "description": null, - "args": [ - { - "name": "signature", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "delete", + "description": "Set to true to delete the question when updating the document.", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Question", - "description": null, - "fields": [ + }, { - "name": "activationConditionLogic", - "description": null, - "args": [], + "name": "id", + "description": "Only for update.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "Message shown to Labeler.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bindToColumn", - "description": null, - "args": [], + "name": "name", + "description": "Column name.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": "This marks whether the question is required to answer or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "config", + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "QuestionType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QuestionSet", + "description": null, + "fields": [ + { + "name": "createdAt", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "QuestionConfig", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -30521,23 +35115,19 @@ "deprecationReason": null }, { - "name": "id", + "name": "creator", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "User", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", + "name": "id", "description": null, "args": [], "type": { @@ -30545,7 +35135,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -30553,23 +35143,31 @@ "deprecationReason": null }, { - "name": "name", + "name": "items", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionSetItem", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "required", + "name": "name", "description": null, "args": [], "type": { @@ -30577,7 +35175,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -30585,15 +35183,15 @@ "deprecationReason": null }, { - "name": "type", + "name": "updatedAt", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "QuestionType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -30608,23 +35206,11 @@ }, { "kind": "OBJECT", - "name": "QuestionConfig", + "name": "QuestionSetItem", "description": null, "fields": [ { - "name": "defaultValue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "format", + "name": "activationConditionLogic", "description": null, "args": [], "type": { @@ -30636,7 +35222,7 @@ "deprecationReason": null }, { - "name": "hint", + "name": "bindToColumn", "description": null, "args": [], "type": { @@ -30648,131 +35234,107 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maxLength", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", + "name": "createdAt", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "minLength", + "name": "defaultValue", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "DateTimeDefaultValue", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiline", + "name": "format", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiple", + "name": "hint", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", + "name": "id", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "QuestionConfigOptions", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pattern", + "name": "index", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "questions", + "name": "label", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Question", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "step", + "name": "max", "description": null, "args": [], "type": { @@ -30784,140 +35346,69 @@ "deprecationReason": null }, { - "name": "theme", + "name": "maxLength", "description": null, "args": [], - "type": { - "kind": "ENUM", - "name": "SliderTheme", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "QuestionConfigInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "defaultValue", - "description": "Applies for DATE, TIME. Possible value `NOW`", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "format", - "description": "Applies for DATE, TIME. Possible values for DATE are `DD-MM-YYYY`, `MM-DD-YYYY`, `YYYY-MM-DD` `DD/MM/YYYY`, `MM/DD/YYYY` and `YYYY/MM/DD`. Possible values for TIME are `HH:mm:ss`, `HH:mm`, `HH.mm.ss`, and `HH.mm`", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hint", - "description": "Applies for CHECKBOX.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Applies for SLIDER.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maxLength", - "description": "Applies for TEXT.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "min", - "description": "Applies for SLIDER.", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "minLength", - "description": "Applies for TEXT.", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "multiline", - "description": "Applies for TEXT. Set it as true if you want to enter long text.", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "multiple", - "description": "Applies for TEXT, NESTED, DROPDOWN, HIERARCHICAL_DROPDOWN. Set it as true if you want to have multiple answers for this question.", + "name": "multipleAnswer", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", - "description": "Applies for Dropdown, HIERARCHICAL_DROPDOWN.", + "name": "nestedQuestions", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -30925,31 +35416,19 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionConfigOptionsInput", + "kind": "OBJECT", + "name": "QuestionSetItem", "ofType": null } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pattern", - "description": "Applies for TEXT. This field could have contain a regex string, which the browser natively uses for validation. E.g. `[0-9]*`", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "questions", - "description": "Applies for NESTED.", + "name": "options", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -30957,52 +35436,41 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionInput", + "kind": "OBJECT", + "name": "DropdownConfigOptions", "ofType": null } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "step", - "description": "Applies for SLIDER.", + "name": "parentId", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "theme", - "description": "Applies for SLIDER.", + "name": "pattern", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "SliderTheme", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "QuestionConfigOptions", - "description": null, - "fields": [ + }, { - "name": "id", + "name": "questionSetId", "description": null, "args": [], "type": { @@ -31010,7 +35478,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -31018,7 +35486,7 @@ "deprecationReason": null }, { - "name": "label", + "name": "required", "description": null, "args": [], "type": { @@ -31026,7 +35494,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -31034,19 +35502,47 @@ "deprecationReason": null }, { - "name": "parentId", + "name": "step", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "questionId", + "name": "theme", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SliderTheme", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "QuestionType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", "description": null, "args": [], "type": { @@ -31054,7 +35550,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -31069,19 +35565,31 @@ }, { "kind": "INPUT_OBJECT", - "name": "QuestionConfigOptionsInput", + "name": "QuestionSetItemInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "activationConditionLogic", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "QuestionSetItemInputConfig", "ofType": null } }, @@ -31106,16 +35614,32 @@ "deprecationReason": null }, { - "name": "parentId", - "description": "Optional. Use this field if you want to create hierarchical options. Use another option's id to make it as a parent option.", + "name": "required", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "QuestionType", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -31124,13 +35648,25 @@ }, { "kind": "INPUT_OBJECT", - "name": "QuestionInput", + "name": "QuestionSetItemInputConfig", "description": null, "fields": null, "inputFields": [ { - "name": "activationConditionLogic", - "description": "Custom activation logic", + "name": "defaultValue", + "description": null, + "type": { + "kind": "ENUM", + "name": "DateTimeDefaultValue", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -31141,7 +35677,7 @@ "deprecationReason": null }, { - "name": "bindToColumn", + "name": "hint", "description": null, "type": { "kind": "SCALAR", @@ -31153,11 +35689,11 @@ "deprecationReason": null }, { - "name": "config", + "name": "max", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "QuestionConfigInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -31165,11 +35701,11 @@ "deprecationReason": null }, { - "name": "delete", - "description": "Set to true to delete the question when updating the document.", + "name": "maxLength", + "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -31177,8 +35713,8 @@ "deprecationReason": null }, { - "name": "id", - "description": "Only for update.", + "name": "min", + "description": null, "type": { "kind": "SCALAR", "name": "Int", @@ -31189,11 +35725,11 @@ "deprecationReason": null }, { - "name": "label", - "description": "Message shown to Labeler.", + "name": "minLength", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -31201,11 +35737,11 @@ "deprecationReason": null }, { - "name": "name", - "description": "Column name.", + "name": "multiline", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -31213,8 +35749,8 @@ "deprecationReason": null }, { - "name": "required", - "description": "This marks whether the question is required to answer or not.", + "name": "multiple", + "description": null, "type": { "kind": "SCALAR", "name": "Boolean", @@ -31225,11 +35761,75 @@ "deprecationReason": null }, { - "name": "type", + "name": "options", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DropdownConfigOptionsInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pattern", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionSetItemInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "step", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "theme", "description": null, "type": { "kind": "ENUM", - "name": "QuestionType", + "name": "SliderTheme", "ofType": null }, "defaultValue": null, @@ -31952,7 +36552,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "givenName", "description": null, "args": [], "type": { @@ -31967,6 +36567,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use givenName and surname instead." + }, { "name": "numberOfLabelers", "description": null, @@ -31983,6 +36595,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "surname", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "utmSource", "description": null, @@ -32076,7 +36704,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "givenName", "description": null, "type": { "kind": "NON_NULL", @@ -32119,6 +36747,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "surname", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "utmSource", "description": null, @@ -32979,6 +37623,100 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "RowAnswerConflicts", + "description": null, + "fields": [ + { + "name": "conflicts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ConflictAnswer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RowAnswersInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "answers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "AnswerScalar", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "SaveGeneralWorkspaceSettingsInput", @@ -34592,6 +39330,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "defaultExternalObjectStorageId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "enableArdisAutoLabel", "description": null, @@ -35100,6 +39850,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "lastLabeledLine", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "lastSavedAt", "description": null, @@ -37895,6 +42657,73 @@ ], "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "UnusedLabelSetItemInfo", + "description": null, + "fields": [ + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TagItem", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelSetId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelSetName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "UpdateConflictsInput", @@ -38487,13 +43316,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetTagItemInput", + "name": "UpdateLabelSetTemplateInput", "description": null, "fields": null, "inputFields": [ { - "name": "labelSetId", - "description": "Required. The labelset where the labelset item is owned.", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -38508,8 +43337,8 @@ "deprecationReason": null }, { - "name": "labelSetSignature", - "description": "Optional. The labelset signature.", + "name": "name", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -38520,15 +43349,19 @@ "deprecationReason": null }, { - "name": "tagItem", - "description": "Required. The labelset item to be updated.", + "name": "questions", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagItemInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelSetTemplateItemInput", + "ofType": null + } } }, "defaultValue": null, @@ -38542,28 +43375,24 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateLabelSetTemplateInput", + "name": "UpdateLabelingFunctionInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "active", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "content", "description": null, "type": { "kind": "SCALAR", @@ -38575,24 +43404,32 @@ "deprecationReason": null }, { - "name": "questions", + "name": "labelingFunctionId", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LabelSetTemplateItemInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -38746,6 +43583,168 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateMultiRowAnswersInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "labeledBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ConflictTextLabelResolutionStrategy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rowAnswers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RowAnswersInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textDocumentId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UpdateMultiRowAnswersResult", + "description": null, + "fields": [ + { + "name": "document", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextDocument", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousAnswers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RowAnswer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAnswers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RowAnswer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedLabels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "UpdateProjectExtensionElementSettingInput", @@ -39103,11 +44102,11 @@ "fields": null, "inputFields": [ { - "name": "consensus", + "name": "conflictResolution", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ConflictResolutionInput", "ofType": null }, "defaultValue": null, @@ -39306,6 +44305,65 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateQuestionSetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionSetItemInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "UpdateReviewDocumentMetasInput", @@ -39393,6 +44451,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "updatedAnswers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RowAnswer", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -39603,6 +44677,30 @@ "name": "UpdateSentenceResult", "description": null, "fields": [ + { + "name": "addedBoundingBoxLabels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "addedLabels", "description": null, @@ -39627,6 +44725,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "deletedBoundingBoxLabels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BoundingBoxLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "deletedLabels", "description": null, @@ -39960,6 +45082,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "defaultExternalObjectStorageId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "enableAssistedLabeling", "description": null, diff --git a/quickstart/doc-based/config/config.json b/quickstart/doc-based/config/config.json index 59e7aef..a745cc2 100644 --- a/quickstart/doc-based/config/config.json +++ b/quickstart/doc-based/config/config.json @@ -36,7 +36,10 @@ "pcwAssignmentStrategy": "AUTO", "pcwPayload": { "projectSettings": { - "consensus": 1, + "conflictResolution": { + "mode": "PEER_REVIEW", + "consensus": 1 + }, "enableEditLabelSet": false, "enableEditSentence": false, "hideLabelerNamesDuringReview": false, diff --git a/quickstart/row-based/config/config.json b/quickstart/row-based/config/config.json index 70ca957..ef15046 100644 --- a/quickstart/row-based/config/config.json +++ b/quickstart/row-based/config/config.json @@ -36,7 +36,10 @@ "pcwAssignmentStrategy": "AUTO", "pcwPayload": { "projectSettings": { - "consensus": 1, + "conflictResolution": { + "mode": "PEER_REVIEW", + "consensus": 1 + }, "enableEditLabelSet": false, "enableEditSentence": false, "hideLabelerNamesDuringReview": false, diff --git a/quickstart/token-based/config/config.json b/quickstart/token-based/config/config.json index 3bd5acc..eee602a 100644 --- a/quickstart/token-based/config/config.json +++ b/quickstart/token-based/config/config.json @@ -36,7 +36,10 @@ "pcwAssignmentStrategy": "AUTO", "pcwPayload": { "projectSettings": { - "consensus": 1, + "conflictResolution": { + "mode": "PEER_REVIEW", + "consensus": 1 + }, "enableEditLabelSet": false, "enableEditSentence": false, "hideLabelerNamesDuringReview": false, diff --git a/sample/pcwPayload/config.json b/sample/pcwPayload/config.json index db409c0..b4bcb1f 100644 --- a/sample/pcwPayload/config.json +++ b/sample/pcwPayload/config.json @@ -110,7 +110,10 @@ "hideLabelsFromInactiveLabelSetDuringReview": false, "hideOriginalSentencesDuringReview": true, "hideRejectedLabelsDuringReview": true, - "consensus": 1 + "conflictResolution": { + "mode": "PEER_REVIEW", + "consensus": 1 + } }, "teamId": "", "documents": [ diff --git a/src/assignment/assign-auto-documents.ts b/src/assignment/assign-auto-documents.ts index 9a18362..da93329 100644 --- a/src/assignment/assign-auto-documents.ts +++ b/src/assignment/assign-auto-documents.ts @@ -16,7 +16,10 @@ export function assignAutoDocuments(assignmentPool: AssignmentConfig, documents: members[reviewer] = { isLabeler: false || members[reviewer]?.isLabeler, isReviewer: true }; }); - const consensus = getConfig()?.create?.projectSettings?.consensus ?? 1; + const consensus = + getConfig()?.create?.projectSettings?.conflictResolution?.consensus ?? + getConfig()?.create?.projectSettings?.consensus ?? + 1; const labelerAssignmentMap = new Map>(); const labelerIdentifiers: string[] = []; @@ -38,9 +41,7 @@ export function assignAutoDocuments(assignmentPool: AssignmentConfig, documents: } let labelerIndex = 0; - for (let index = 0; index < allDocuments.length; index++) { - const document = allDocuments[index]; - + for (const document of allDocuments) { let numberOfAssignments = 0; while (numberOfAssignments < consensus) { const currentLabeler = labelerIdentifiers[labelerIndex]; diff --git a/src/config/interfaces.ts b/src/config/interfaces.ts index 6ca3ec3..2e89df9 100644 --- a/src/config/interfaces.ts +++ b/src/config/interfaces.ts @@ -1,7 +1,7 @@ import { ExportFormat, ProjectStatus } from '../datasaur/interfaces'; import { PCWPayload, PCWWrapper } from '../transformer/pcw-transformer/interfaces'; import { AssignmentConfig as ParsedAssignment } from '../assignment/interfaces'; -import { TextDocumentType, TokenizationMethod, TranscriptMethod } from '../generated/graphql'; +import { ConflictResolutionMode, TextDocumentType, TokenizationMethod, TranscriptMethod } from '../generated/graphql'; export enum StorageSources { AMAZONS3 = 's3', @@ -93,7 +93,14 @@ export interface CreateConfig { * Configuration from the 4th and 5th step of the Creation Wizard UI. */ projectSettings: { - consensus: number; + /** + * @deprecated Moved to conflictResolution.consensus + */ + consensus?: number; + conflictResolution?: { + consensus: number; + mode: ConflictResolutionMode; + }; enableEditLabelSet: boolean; enableEditSentence: boolean; hideLabelerNamesDuringReview: boolean; diff --git a/src/generated/graphql.ts b/src/generated/graphql.ts index c191c72..8cce48e 100644 --- a/src/generated/graphql.ts +++ b/src/generated/graphql.ts @@ -11,66 +11,62 @@ export type Scalars = { Int: number; Float: number; /** - * Answer is in the form of a JSON object. - * The schema of said object is generated by AJV library using the question set. - * One AnswerScalar object is for one row (in row labeling project). - * The property name is the question name, while the value of each property is the answer itself. - * See issue #10427 for more information. + * Example of RowAnswer for one line * - * Example: - * Given a question set with 13 root questions of varying types, on a row labeling project with 4 columns of data: - * Q1 -> text, single answer. - * Q2 -> text, multiple answer. - * Q3 -> multiline text, single answer. - * Q4 -> multiline text, multiple answer. - * Q5 -> dropdown, multiple answer. - * Q6 -> dropdown, single answer. - * Q7 -> hierarchical dropdown, multiple answer. - * Q8 -> date. - * Q9 -> time. - * Q10 -> checkbox. - * Q11 -> slider. - * Q12 -> url. - * Q13 -> grouped attributes with 2 subfields (Q13.1 and Q13.2). - * Q13.1 -> text, single answer. - * Q13.2 -> checkbox. + * Given a question set with 13 root questions, on a row labeling project with 4 columns of data: + * meta.id=4 -> text, single answer. + * meta.id=5 -> text, multiple answer. + * meta.id=6 -> multiline text, single answer. + * meta.id=7 -> multiline text, multiple answer. + * meta.id=8 -> dropdown, multiple answer. + * meta.id=9 -> dropdown, single answer. + * meta.id=10 -> hierarchical dropdown, multiple answer. + * meta.id=11 -> date. + * meta.id=12 -> time. + * meta.id=13 -> checkbox. + * meta.id=14 -> slider. + * meta.id=15 -> url. + * meta.id=16 -> grouped attributes with 2 subfields (meta.id=17 and meta.id=18). + * meta.id=17 -> text, single answer. + * meta.id=18 -> checkbox. * - * With such question set, the JSON object for one row of answer would look like this: + * With such question set, the JSON object for one row of answer would look like this + * The key for a RowAnswer object is ('Q' + question.meta.id) * { - * "Q1": "asd", - * "Q2": [ - * "asd", - * "fgh", - * "jkl" - * ], - * "Q3": "asdasdasd\nzxczxczxc", - * "Q4": [ - * "asdasdasd\nzxczxczxc", - * "asdasdasd", - * "qweqweqwe" - * ], + * "Q4": "Short text", * "Q5": [ - * "a", - * "s" + * "Short text 1", + * "Short text 2", + * "Short text 3" * ], - * "Q6": "d", + * "Q6": "Longer text at line 1\nMore text at line 2", * "Q7": [ + * "Longer text at line 1\nMore text at line 2", + * "Second longer text", + * "Third longer text" + * ], + * "Q8": [ + * "Option 1", + * "Option 2" + * ], + * "Q9": "Option 1", + * "Q10": [ * "1.2", * "3" * ], - * "Q8": "2022-03-08", - * "Q9": "11:02:50.896", - * "Q10": true, - * "Q11": "6", - * "Q12": "https://google.com", - * "Q13": [ + * "Q11": "2022-03-08", + * "Q12": "11:02:50.896", + * "Q13": true, + * "Q14": "6", + * "Q15": "https://datasaur.ai", + * "Q16": [ * { - * "Q13.1": "asdasd", - * "Q13.2": true + * "Q17": "Nested short text, group 1", + * "Q18": true * }, * { - * "Q13.1": "123123", - * "Q13.2": false + * "Q17": "Nested short text, group 2", + * "Q18": false * } * ] * } @@ -122,8 +118,15 @@ export type AddFileToDatasetInput = { file: Scalars['Upload']; }; +export type AddLabelingFunctionInput = { + content: Scalars['String']; + dataProgrammingId: Scalars['ID']; + name: Scalars['String']; +}; + export type AnalyticsDashboardQueryInput = { calendarDate?: InputMaybe; + labelSetFilter?: InputMaybe>; labelType?: InputMaybe; projectId?: InputMaybe; teamId: Scalars['ID']; @@ -524,6 +527,28 @@ export type ConflictContributorIds = { labelHashCode: Scalars['String']; }; +export type ConflictResolution = { + __typename?: 'ConflictResolution'; + consensus: Scalars['Int']; + mode: ConflictResolutionMode; +}; + +export type ConflictResolutionInput = { + /** Peer review / labeler consensus. It determines how many consensus so that the label will be automatically accepted. */ + consensus?: InputMaybe; + /** + * Defaults to PEER_REVIEW when not provided. + * MANUAL: all labels must be manually accepted / rejected by REVIEWERs + * PEER_REVIEW: labels that have met the minimum consensus value are automatically accepted. + */ + mode?: InputMaybe; +}; + +export enum ConflictResolutionMode { + Manual = 'MANUAL', + PeerReview = 'PEER_REVIEW' +} + export type ConflictTextLabel = { __typename?: 'ConflictTextLabel'; documentId?: Maybe; @@ -567,6 +592,13 @@ export type CreateCustomApiInput = { secret: Scalars['String']; }; +export type CreateExternalObjectStorageInput = { + bucketName: Scalars['String']; + cloudService: ObjectStorageClientName; + credentials: ExternalObjectStorageCredentialsInput; + teamId: Scalars['ID']; +}; + export type CreateFileTransformerInput = { name: Scalars['String']; purpose: FileTransformerPurpose; @@ -605,6 +637,7 @@ export type CreatePersonalTagInput = { export type CreateProjectInput = { assignees?: InputMaybe>; document: Scalars['Upload']; + externalObjectStorageId?: InputMaybe; name: Scalars['String']; purpose: ProjectPurpose; tagNames?: InputMaybe>; @@ -618,6 +651,12 @@ export type CreateProjectTemplateInput = { projectId: Scalars['ID']; }; +export type CreateQuestionSetInput = { + items: Array; + name: Scalars['String']; + teamId?: InputMaybe; +}; + export type CreateTagInput = { name: Scalars['String']; teamId?: InputMaybe; @@ -642,6 +681,10 @@ export type CreateTextDocumentInput = { /** Only used in Row Based Labeling and Document Based Labeling. */ docFileOptions?: InputMaybe; externalImportableUrl?: InputMaybe; + /** Specify this if you want to select a pre-labeled file directly from your own object storage */ + externalObjectStorageAnswerFileKey?: InputMaybe; + /** Specify this if you want to select a file directly from your own object storage */ + externalObjectStorageFileKey?: InputMaybe; extraFiles?: InputMaybe>; /** Specify `file` if you want to upload file. Datasaur only process one between `file` and `fileUrl`s. */ file?: InputMaybe; @@ -693,6 +736,96 @@ export enum CustomApiPurpose { OcrApi = 'OCR_API' } +export type CustomReportBuilderInput = { + /** Optional. The filters. See `CustomReportFilter`. */ + filters?: InputMaybe>; + /** Required. The metrics group table ID to export. */ + metricsGroupId: Scalars['ID']; + /** Required. The metrics to export. See `CustomReportMetric`. */ + selectedMetrics: Array; + /** Required. The segments to export. See `CustomReportClientSegment`. */ + selectedSegments: Array; +}; + +export enum CustomReportClientSegment { + Date = 'DATE', + Document = 'DOCUMENT', + DocumentCreatedAt = 'DOCUMENT_CREATED_AT', + DocumentOrigin = 'DOCUMENT_ORIGIN', + DocumentUpdatedAt = 'DOCUMENT_UPDATED_AT', + Label = 'LABEL', + LabelType = 'LABEL_TYPE', + OwnerUser = 'OWNER_USER', + Project = 'PROJECT', + ProjectRole = 'PROJECT_ROLE', + User = 'USER' +} + +export type CustomReportFilter = { + field: CustomReportFilterColumn; + strategy: CustomReportFilterStrategy; + value: Scalars['String']; +}; + +export enum CustomReportFilterColumn { + Date = 'DATE', + DocumentCreatedAt = 'DOCUMENT_CREATED_AT', + DocumentName = 'DOCUMENT_NAME', + DocumentOriginName = 'DOCUMENT_ORIGIN_NAME', + DocumentUpdatedAt = 'DOCUMENT_UPDATED_AT', + Label = 'LABEL', + LabeledByUserDisplayName = 'LABELED_BY_USER_DISPLAY_NAME', + LabelType = 'LABEL_TYPE', + OwnerUserName = 'OWNER_USER_NAME', + ProjectName = 'PROJECT_NAME', + ProjectRole = 'PROJECT_ROLE', + UserName = 'USER_NAME' +} + +export enum CustomReportFilterStrategy { + Contains = 'CONTAINS', + Date = 'DATE', + Is = 'IS', + IsNot = 'IS_NOT', + NotContains = 'NOT_CONTAINS' +} + +export enum CustomReportMetric { + ActiveDuration = 'ACTIVE_DURATION', + LabelsAccuracy = 'LABELS_ACCURACY', + TotalConflicts = 'TOTAL_CONFLICTS', + TotalConflictsResolved = 'TOTAL_CONFLICTS_RESOLVED', + TotalLabelsAccepted = 'TOTAL_LABELS_ACCEPTED', + TotalLabelsApplied = 'TOTAL_LABELS_APPLIED', + TotalLabelsRejected = 'TOTAL_LABELS_REJECTED' +} + +export type CustomReportMetricsGroupTable = { + __typename?: 'CustomReportMetricsGroupTable'; + clientSegments: Array; + description?: Maybe; + filterStrategies: Array; + id: Scalars['ID']; + metrics: Array; + name: Scalars['String']; +}; + +export type DataProgramming = { + __typename?: 'DataProgramming'; + createdAt: Scalars['String']; + id: Scalars['ID']; + labels: Array; + labelsSignature: Scalars['String']; + projectId: Scalars['ID']; + updatedAt: Scalars['String']; +}; + +export type DataProgrammingLabel = { + __typename?: 'DataProgrammingLabel'; + id: Scalars['Int']; + label: Scalars['String']; +}; + export type Dataset = { __typename?: 'Dataset'; cabinetIds?: Maybe>; @@ -727,6 +860,10 @@ export type DatasetPaginatedResponse = PaginatedResponse & { totalCount: Scalars['Int']; }; +export enum DateTimeDefaultValue { + Now = 'NOW' +} + export type DaysCreatedInput = { /** Required. Date string, in `yyyy-mm-dd`. */ newestDate: Scalars['String']; @@ -826,6 +963,66 @@ export type DocLabelObjectInput = { subLabels?: InputMaybe>; }; +/** + * Example of DocumentAnswer for one document + * + * Given a question set with 13 root questions, on a row labeling project with 4 columns of data: + * question.index=0 -> text, single answer. + * question.index=1 -> text, multiple answer. + * question.index=2 -> multiline text, single answer. + * question.index=3 -> multiline text, multiple answer. + * question.index=4 -> dropdown, multiple answer. + * question.index=5 -> dropdown, single answer. + * question.index=6 -> hierarchical dropdown, multiple answer. + * question.index=7 -> date. + * question.index=8 -> time. + * question.index=9 -> checkbox. + * question.index=10 -> slider. + * question.index=11 -> url. + * question.index=12 -> grouped attributes with 2 subfields (question.index=13 and question.index=14). + * question.index=13 -> text, single answer. + * question.index=14 -> checkbox. + * + * The key for a DocumentAnswer object is ('Q' + question.index) + * { + * "Q0": "Short text", + * "Q1": [ + * "Short text 1", + * "Short text 2", + * "Short text 3" + * ], + * "Q2": "Longer text at line 1\nMore text at line 2", + * "Q3": [ + * "Longer text at line 1\nMore text at line 2", + * "Second longer text", + * "Third longer text" + * ], + * "Q4": [ + * "Option 1", + * "Option 2" + * ], + * "Q5": "Option 1", + * "Q6": [ + * "1.2", + * "3" + * ], + * "Q7": "2022-03-08", + * "Q8": "11:02:50.896", + * "Q9": true, + * "Q10": "6", + * "Q11": "https://datasaur.ai", + * "Q12": [ + * { + * "Q13": "Nested short text, group 1", + * "Q14": true + * }, + * { + * "Q13": "Nested short text, group 2", + * "Q14": false + * } + * ] + * } + */ export type DocumentAnswer = { __typename?: 'DocumentAnswer'; answers: Scalars['AnswerScalar']; @@ -925,6 +1122,19 @@ export type DocumentMetaOptionInput = { parentId?: InputMaybe; }; +export type DropdownConfigOptions = { + __typename?: 'DropdownConfigOptions'; + id: Scalars['ID']; + label: Scalars['String']; + parentId?: Maybe; +}; + +export type DropdownConfigOptionsInput = { + id: Scalars['ID']; + label: Scalars['String']; + parentId?: InputMaybe; +}; + export type EditSentenceConflict = { __typename?: 'EditSentenceConflict'; documentId: Scalars['String']; @@ -942,7 +1152,9 @@ export type EditSentenceInput = { export type EditSentenceResult = { __typename?: 'EditSentenceResult'; + addedBoundingBoxLabels: Array; addedLabels: Array; + deletedBoundingBoxLabels: Array; deletedLabels: Array; document: TextDocument; previousSentences: Array; @@ -1147,6 +1359,33 @@ export type ExternalFileStorageInput = { secretAccessKey: Scalars['String']; }; +export type ExternalObjectStorage = { + __typename?: 'ExternalObjectStorage'; + bucketName: Scalars['String']; + cloudService: ObjectStorageClientName; + createdAt: Scalars['DateTime']; + credentials: ExternalObjectStorageCredentials; + id: Scalars['ID']; + projects?: Maybe>>; + team: Team; + updatedAt: Scalars['DateTime']; +}; + +export type ExternalObjectStorageCredentials = { + __typename?: 'ExternalObjectStorageCredentials'; + connectionString?: Maybe; + externalId?: Maybe; + roleArn?: Maybe; + serviceAccount?: Maybe; +}; + +export type ExternalObjectStorageCredentialsInput = { + connectionString?: InputMaybe; + externalId?: InputMaybe; + roleArn?: InputMaybe; + serviceAccount?: InputMaybe; +}; + export type FileTransformer = { __typename?: 'FileTransformer'; content: Scalars['String']; @@ -1297,6 +1536,11 @@ export type GetCurrentUserTeamMemberInput = { teamId: Scalars['ID']; }; +export type GetDataProgrammingInput = { + labels: Array; + projectId: Scalars['ID']; +}; + export type GetDatasetFilterInput = { kinds?: InputMaybe>; mlModelSettingId?: InputMaybe; @@ -1323,7 +1567,7 @@ export type GetExternalFilesByApiInput = { export type GetLabelSetTemplatesFilterInput = { keyword?: InputMaybe; - ownerIds?: InputMaybe>; + ownerIds?: InputMaybe>>; teamId?: InputMaybe; types?: InputMaybe>; }; @@ -1370,6 +1614,11 @@ export type GetLabelSetsPaginatedInput = { sort?: InputMaybe>; }; +export type GetLabelingFunctionsInput = { + dataProgrammingId: Scalars['ID']; + labelingFunctionIds?: InputMaybe>; +}; + export type GetLabelsFilterInput = { phase?: InputMaybe; }; @@ -1398,6 +1647,26 @@ export type GetMlModelsPaginatedInput = { page?: InputMaybe; }; +export type GetPaginatedQuestionSetFilter = { + creatorIds?: InputMaybe>>; + keyword?: InputMaybe; + teamId?: InputMaybe; +}; + +export type GetPaginatedQuestionSetInput = { + cursor?: InputMaybe; + filter?: InputMaybe; + page?: InputMaybe; + sort?: InputMaybe>; +}; + +export type GetPaginatedQuestionSetResponse = PaginatedResponse & { + __typename?: 'GetPaginatedQuestionSetResponse'; + nodes: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; + export type GetPersonalTagsInput = { filter?: InputMaybe; }; @@ -1421,12 +1690,14 @@ export type GetProjectInput = { export type GetProjectsFilterInput = { /** Optional. Filters projects by its creation date. */ daysCreatedRange?: InputMaybe; + /** Optional. Filters projects by archived state. */ + isArchived?: InputMaybe; /** Optional. Filters projects by keyword, searches project name and tags. By default shows all projects. */ keyword?: InputMaybe; /** Optional. Filters projects by its kind. */ kinds?: InputMaybe>; /** Optional. Filters projects by its LabelSet. See `LabelSet.signature`. */ - labelSetSignature?: InputMaybe; + labelSetSignatures?: InputMaybe>; /** Optional. Filters projects by its labeler. */ labelerTeamMemberIds?: InputMaybe>; /** Optional. Filters projects by its reviewer. */ @@ -1461,6 +1732,12 @@ export type GetProjectsPaginatedInput = { sort?: InputMaybe>; }; +export type GetRowAnswerConflictsInput = { + documentId: Scalars['ID']; + end: Scalars['Int']; + start: Scalars['Int']; +}; + export type GetRowAnswersPaginatedInput = { cursor?: InputMaybe; page?: InputMaybe; @@ -1485,6 +1762,18 @@ export type GetSpanAndArrowConflictsPaginatedResponse = PaginatedResponse & { totalCount: Scalars['Int']; }; +export type GetSpanAndArrowRejectedLabelsPaginatedInput = { + cursor?: InputMaybe; + page?: InputMaybe; +}; + +export type GetSpanAndArrowRejectedLabelsPaginatedResponse = PaginatedResponse & { + __typename?: 'GetSpanAndArrowRejectedLabelsPaginatedResponse'; + nodes: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; + export type GetTagsFilterInput = { includeGlobalTag: Scalars['Boolean']; }; @@ -1774,12 +2063,14 @@ export type InviteTeamMembersInput = { export type Job = { __typename?: 'Job'; + createdAt: Scalars['String']; errors: Array; id: Scalars['String']; progress: Scalars['Int']; result?: Maybe; resultId?: Maybe; status: JobStatus; + updatedAt: Scalars['String']; }; export type JobError = { @@ -2029,6 +2320,17 @@ export type LabelerStatistic = { userId: Scalars['ID']; }; +export type LabelingFunction = { + __typename?: 'LabelingFunction'; + active: Scalars['Boolean']; + content: Scalars['String']; + createdAt: Scalars['String']; + dataProgrammingId: Scalars['ID']; + id: Scalars['ID']; + name: Scalars['String']; + updatedAt: Scalars['String']; +}; + export type LabelingStatus = { __typename?: 'LabelingStatus'; isCompleted: Scalars['Boolean']; @@ -2053,6 +2355,12 @@ export type LabelingStatusStatistic = { totalTimeSpent: Scalars['Int']; }; +export type LabelingTracker = { + __typename?: 'LabelingTracker'; + lastLabeledLine?: Maybe; + textDocumentId: Scalars['ID']; +}; + export type LastUsedProject = { __typename?: 'LastUsedProject'; name: Scalars['String']; @@ -2065,10 +2373,12 @@ export type LaunchTextProjectInput = { assignees?: InputMaybe>; /** Optional. Team projects only. Assign specific document to specific team member. */ documentAssignments?: InputMaybe>; - /** Document related configuration, such as token length and file transformer. */ + /** Document related configuration, such as token length and custom script. */ documentSettings: TextDocumentSettingsInput; /** Required. The documents associated to the project. Please ensure all the documents uploaded are of the same type. */ documents?: InputMaybe>; + /** Optional. Set the external object storage to use. Null means default object storage */ + externalObjectStorageId?: InputMaybe; /** Optional. Sets the labeling guideline for the project. */ guidelineId?: InputMaybe; /** Required. Sets the project kinds. */ @@ -2210,6 +2520,7 @@ export type Mutation = { activateUser?: Maybe; addActiveDuration?: Maybe; addFileToDataset: Scalars['Boolean']; + addLabelingFunction: LabelingFunction; addTextDocumentLabels: TextDocument; allowIPs: Array; /** Adds new labelset item to the specified labelset. */ @@ -2226,6 +2537,7 @@ export type Mutation = { collectDataset?: Maybe; createComment: Comment; createCustomAPI: CustomApi; + createExternalObjectStorage: ExternalObjectStorage; createFileTransformer: FileTransformer; createGuideline: Guideline; /** @@ -2246,6 +2558,7 @@ export type Mutation = { createMultipleLabelSet: Array>; createPersonalTag: Tag; createProjectTemplate: ProjectTemplate; + createQuestionSet: QuestionSet; createQuestionSetTemplate: QuestionSetTemplate; createTag: Tag; createTagsIfNotExist: Array; @@ -2254,8 +2567,10 @@ export type Mutation = { deleteComment: Scalars['Boolean']; deleteCustomAPI: CustomApi; deleteDataset: Scalars['Boolean']; + deleteDocumentAnswers: Scalars['Boolean']; deleteDocumentBoundLabels: Scalars['Boolean']; deleteExtensionElement?: Maybe; + deleteExternalObjectStorage: ExternalObjectStorage; /** * Deletes a labelset. * If the labelset is used in a project, any labelset item from the labelset that has been applied will be removed. @@ -2273,11 +2588,15 @@ export type Mutation = { deleteLabelSetTagItems: LabelSet; /** Deletes the specified labelset templates. Returns true if the templates are deleted successfully. */ deleteLabelSetTemplates?: Maybe; + deleteLabelingFunction: LabelingFunction; deleteLabelsOnTextDocument: DeleteLabelsOnTextDocumentResult; deleteMlModel: Scalars['Boolean']; deleteProject: Project; deleteProjectTemplates?: Maybe; deleteProjects: Array; + deleteQuestionSet: Scalars['Boolean']; + deleteQuestionSets: Scalars['Boolean']; + deleteRowAnswers: Scalars['Boolean']; deleteSentence: DeleteSentenceResult; deleteTextDocument?: Maybe; deleteTimestampLabels: Array; @@ -2377,31 +2696,30 @@ export type Mutation = { setCommentResolved: Comment; signUp?: Maybe; submitEmail: WelcomeEmail; + toggleArchiveProjects: Array; toggleCabinetStatus: Cabinet; + toggleDocumentStatus: TextDocument; triggerSaveMlModel: Scalars['Boolean']; triggerTaskCompleted?: Maybe; updateConflicts: UpdateConflictsResult; updateCustomAPI: CustomApi; updateDataset: Dataset; updateDocumentAnswers: UpdateDocumentAnswersResult; - /** - * Deprecated. Please use `updateDocumentAnswers`. - * @deprecated Deprecated. Please use `updateDocumentAnswers`. - */ - updateDocumentBoundLabels: Array; updateDocumentMeta: Array; updateDocumentMetaDisplayed: DocumentMeta; updateDocumentMetaLabelerRestricted: DocumentMeta; updateDocumentMetas: Array; + updateDocumentQuestion: Question; + updateDocumentQuestions: Array; updateFileTransformer: FileTransformer; /** Updates a labelset details. */ updateLabelSet: LabelSet; - /** Updates a labelset item's details in a labelset. */ - updateLabelSetTagItem?: Maybe; /** Updates the specified labelset template. */ updateLabelSetTemplate?: Maybe; + updateLabelingFunction: LabelingFunction; updateLabels: UpdateLabelsResult; updateLastOpenedDocument: Cabinet; + updateMultiRowAnswers: UpdateMultiRowAnswersResult; /** Updates multiple labelset details at once. */ updateMultipleLabelSet: Array>; updateProject: Project; @@ -2415,10 +2733,13 @@ export type Mutation = { updateProjectSettings: Project; updateProjectTemplate: ProjectTemplate; updateProjectTemplatesOrdering: Array; + updateQuestionSet: QuestionSet; updateQuestionSetTemplate: QuestionSetTemplate; updateQuestions: Array; updateReviewDocumentMetas: Array; updateRowAnswers: UpdateRowAnswersResult; + updateRowQuestion: Question; + updateRowQuestions: Array; updateSentenceConflict: UpdateSentenceConflictResult; /** * Deprecated. Please use `updateRowAnswers`. @@ -2475,6 +2796,11 @@ export type MutationAddFileToDatasetArgs = { }; +export type MutationAddLabelingFunctionArgs = { + input: AddLabelingFunctionInput; +}; + + export type MutationAddTextDocumentLabelsArgs = { inputs: Array; textDocumentId: Scalars['String']; @@ -2555,6 +2881,11 @@ export type MutationCreateCustomApiArgs = { }; +export type MutationCreateExternalObjectStorageArgs = { + input: CreateExternalObjectStorageInput; +}; + + export type MutationCreateFileTransformerArgs = { input: CreateFileTransformerInput; }; @@ -2593,6 +2924,11 @@ export type MutationCreateProjectTemplateArgs = { }; +export type MutationCreateQuestionSetArgs = { + input: CreateQuestionSetInput; +}; + + export type MutationCreateQuestionSetTemplateArgs = { input?: InputMaybe; teamId: Scalars['ID']; @@ -2635,6 +2971,11 @@ export type MutationDeleteDatasetArgs = { }; +export type MutationDeleteDocumentAnswersArgs = { + documentId: Scalars['ID']; +}; + + export type MutationDeleteDocumentBoundLabelsArgs = { documentId: Scalars['ID']; }; @@ -2645,6 +2986,11 @@ export type MutationDeleteExtensionElementArgs = { }; +export type MutationDeleteExternalObjectStorageArgs = { + externalObjectStorageId: Scalars['ID']; +}; + + export type MutationDeleteLabelSetArgs = { id: Scalars['ID']; }; @@ -2665,6 +3011,11 @@ export type MutationDeleteLabelSetTemplatesArgs = { }; +export type MutationDeleteLabelingFunctionArgs = { + id: Scalars['ID']; +}; + + export type MutationDeleteLabelsOnTextDocumentArgs = { input: DeleteLabelsOnTextDocumentInput; }; @@ -2690,6 +3041,22 @@ export type MutationDeleteProjectsArgs = { }; +export type MutationDeleteQuestionSetArgs = { + id: Scalars['ID']; +}; + + +export type MutationDeleteQuestionSetsArgs = { + ids: Array; +}; + + +export type MutationDeleteRowAnswersArgs = { + documentId: Scalars['ID']; + line: Scalars['Int']; +}; + + export type MutationDeleteSentenceArgs = { documentId: Scalars['String']; sentenceId: Scalars['Int']; @@ -2896,6 +3263,11 @@ export type MutationSubmitEmailArgs = { }; +export type MutationToggleArchiveProjectsArgs = { + projectIds: Array; +}; + + export type MutationToggleCabinetStatusArgs = { projectId: Scalars['ID']; role: Role; @@ -2903,6 +3275,12 @@ export type MutationToggleCabinetStatusArgs = { }; +export type MutationToggleDocumentStatusArgs = { + documentId: Scalars['ID']; + skipValidation?: InputMaybe; +}; + + export type MutationTriggerSaveMlModelArgs = { input?: InputMaybe; }; @@ -2936,12 +3314,6 @@ export type MutationUpdateDocumentAnswersArgs = { }; -export type MutationUpdateDocumentBoundLabelsArgs = { - documentId: Scalars['ID']; - labels: Array; -}; - - export type MutationUpdateDocumentMetaArgs = { input: Array; projectId: Scalars['ID']; @@ -2967,6 +3339,18 @@ export type MutationUpdateDocumentMetasArgs = { }; +export type MutationUpdateDocumentQuestionArgs = { + input: QuestionInput; + projectId: Scalars['ID']; +}; + + +export type MutationUpdateDocumentQuestionsArgs = { + input: Array; + projectId: Scalars['ID']; +}; + + export type MutationUpdateFileTransformerArgs = { input: UpdateFileTransformerInput; }; @@ -2977,13 +3361,13 @@ export type MutationUpdateLabelSetArgs = { }; -export type MutationUpdateLabelSetTagItemArgs = { - input: UpdateLabelSetTagItemInput; +export type MutationUpdateLabelSetTemplateArgs = { + input: UpdateLabelSetTemplateInput; }; -export type MutationUpdateLabelSetTemplateArgs = { - input: UpdateLabelSetTemplateInput; +export type MutationUpdateLabelingFunctionArgs = { + input: UpdateLabelingFunctionInput; }; @@ -2998,6 +3382,11 @@ export type MutationUpdateLastOpenedDocumentArgs = { }; +export type MutationUpdateMultiRowAnswersArgs = { + input: UpdateMultiRowAnswersInput; +}; + + export type MutationUpdateMultipleLabelSetArgs = { labelSets: Array; }; @@ -3048,6 +3437,11 @@ export type MutationUpdateProjectTemplatesOrderingArgs = { }; +export type MutationUpdateQuestionSetArgs = { + input: UpdateQuestionSetInput; +}; + + export type MutationUpdateQuestionSetTemplateArgs = { id: Scalars['ID']; input?: InputMaybe; @@ -3073,6 +3467,18 @@ export type MutationUpdateRowAnswersArgs = { }; +export type MutationUpdateRowQuestionArgs = { + input: QuestionInput; + projectId: Scalars['ID']; +}; + + +export type MutationUpdateRowQuestionsArgs = { + input: Array; + projectId: Scalars['ID']; +}; + + export type MutationUpdateSentenceConflictArgs = { labelerId?: InputMaybe; resolved: Scalars['Boolean']; @@ -3159,6 +3565,19 @@ export enum OcrProvider { Konvergen = 'KONVERGEN' } +export type ObjectMeta = { + __typename?: 'ObjectMeta'; + createdAt?: Maybe; + key: Scalars['String']; + sizeInBytes: Scalars['Int']; +}; + +export enum ObjectStorageClientName { + AwsS3 = 'AWS_S3', + AzureBlobStorage = 'AZURE_BLOB_STORAGE', + GoogleCloudStorage = 'GOOGLE_CLOUD_STORAGE' +} + export type OffsetPageInput = { skip: Scalars['Int']; take: Scalars['Int']; @@ -3240,6 +3659,7 @@ export type Project = { exportedDate?: Maybe; guideline?: Maybe; id: Scalars['ID']; + isArchived?: Maybe; isOwnerMe: Scalars['Boolean']; isReviewByMeAllowed: Scalars['Boolean']; labelerCabinets: Array; @@ -3374,7 +3794,9 @@ export type ProjectSample = { export type ProjectSettings = { __typename?: 'ProjectSettings'; - consensus: Scalars['Int']; + conflictResolution: ConflictResolution; + /** @deprecated Moved under `conflictResolution.consensus` */ + consensus?: Maybe; dynamicReviewMemberId?: Maybe; dynamicReviewMethod?: Maybe; enableDeleteSentence: Scalars['Boolean']; @@ -3388,8 +3810,7 @@ export type ProjectSettings = { }; export type ProjectSettingsInput = { - /** Peer review / labeler consensus. It determines how many consensus so that the label will be automatically accepted. */ - consensus?: InputMaybe; + conflictResolution?: InputMaybe; dynamicReviewMemberId?: InputMaybe; dynamicReviewMethod?: InputMaybe; /** Labelers will be able to delete sentences from labeler mode. */ @@ -3422,6 +3843,7 @@ export type ProjectTemplate = { projectTemplateTextDocumentSetting: ProjectTemplateTextDocumentSetting; projectTemplateTextDocumentSettingId: Scalars['ID']; purpose: ProjectPurpose; + questionSets: Array; team: Team; teamId: Scalars['ID']; updatedAt: Scalars['String']; @@ -3476,6 +3898,8 @@ export type ProjectTemplateTextDocumentSetting = { export type Query = { __typename?: 'Query'; + checkExternalObjectStorageConnection: Scalars['Boolean']; + countProjectsByExternalObjectStorageId: Scalars['Int']; dictionaryLookup: DictionaryResult; dictionaryLookupBatch: Array; /** @@ -3486,6 +3910,10 @@ export type Query = { /** Simulates what an import file transformer will do to an input */ executeImportFileTransformer: Scalars['ImportFileTransformerExecuteResult']; exportChart: ExportRequestResult; + /** Exports custom report. */ + exportCustomReport: ExportRequestResult; + exportLabelAccuracyChart: ExportRequestResult; + /** Exports team IAA. */ exportTeamIAA: ExportRequestResult; /** Exports team overview. */ exportTeamOverview: ExportRequestResult; @@ -3518,8 +3946,12 @@ export type Query = { getCurrentUserTeamMember: TeamMember; getCustomAPI: CustomApi; getCustomAPIs: Array; + /** Returns custom report metrics group tables. */ + getCustomReportMetricsGroupTables: Array; + getDataProgramming?: Maybe; getDataset?: Maybe; getDatasets: DatasetPaginatedResponse; + getDocumentAnswerConflicts: Array; getDocumentAnswers: DocumentAnswer; getDocumentLabelConflicts: Array; /** @@ -3527,17 +3959,15 @@ export type Query = { * To get `documentId`, see `getCabinet`. */ getDocumentLabelSets: Array; - /** - * Deprecated. Please use `getDocumentAnswers`. - * @deprecated Deprecated. Please use `getDocumentAnswers`. - */ - getDocumentLabels: Array; getDocumentMetasByCabinetId: Array; + getDocumentQuestions: Array; getEditSentenceConflicts: EditSentenceConflict; getExportDeliveryStatus: GetExportDeliveryStatusResult; getExportable: Scalars['ExportableJSON']; getExtensions?: Maybe>; getExternalFilesByApi: Array; + getExternalObjectMeta: Array; + getExternalObjectStorages?: Maybe>; getFileTransformer: FileTransformer; getFileTransformers: Array; getGeneralWorkspaceSettings: GeneralWorkspaceSettings; @@ -3545,18 +3975,25 @@ export type Query = { getGrammarMistakes: Array; getGuidelines: Array; getInvalidAnswerInfos: Array; + getInvalidDocumentAnswerInfos: Array; + getInvalidRowAnswerInfos: Array; /** * Get a specific Job by its ID. * Can be used to check the status of a `ProjectLaunchJob`. */ getJob?: Maybe; getJobs: Array>; + getLabelAccuracyChart: Array; + getLabelAccuracyData: Array; /** Returns a single labelset template. */ getLabelSetTemplate?: Maybe; /** Returns a list of labelset templates. */ getLabelSetTemplates: GetLabelSetTemplatesResponse; /** Returns a list of labelset. */ getLabelSets: Array; + getLabelSetsByTeamId: Array; + getLabelingFunction: LabelingFunction; + getLabelingFunctions?: Maybe>; getLabelsPaginated: GetLabelsPaginatedResponse; getMlModel?: Maybe; getMlModels: MlModelPaginatedResponse; @@ -3564,6 +4001,7 @@ export type Query = { getPaginatedChartData: PaginatedChartDataResponse; /** Returns a paginated list of labelsets. */ getPaginatedLabelSets: LabelSetPaginatedResponse; + getPaginatedQuestionSets: GetPaginatedQuestionSetResponse; getPairKappas: Array; /** Returns a list of personal tags. */ getPersonalTags: Array; @@ -3584,14 +4022,18 @@ export type Query = { getProjectTemplates: Array; /** Returns a paginated list of projects. */ getProjects: ProjectPaginatedResponse; + getQuestionSet: QuestionSet; getQuestionSetTemplate: QuestionSetTemplate; getQuestionSetTemplates: Array; getQuestionsByCabinetId: Array; getRowAnalyticEvents: RowAnalyticEventPaginatedResponse; + getRowAnswerConflicts: Array; getRowAnswersPaginated: GetRowAnswersPaginatedResponse; + getRowQuestions: Array; getSearchHistoryKeywords: Array; getSpanAndArrowConflictContributorIds: Array; getSpanAndArrowConflicts: GetSpanAndArrowConflictsPaginatedResponse; + getSpanAndArrowRejectedLabels: GetSpanAndArrowRejectedLabelsPaginatedResponse; /** Returns a list of team-owned tags. */ getTags: Array; getTeamDetail: Team; @@ -3615,6 +4057,7 @@ export type Query = { getTimestampLabels: Array; getTimestampLabelsAtTimestamp: Array; getTrainingJobs: Array; + getUnusedLabelSetItemInfos: Array; getUsage: Usage; /** Generate audiowaveform data for an audio project. Waveform data generated by using https://github.com/bbc/audiowaveform */ getWaveformPeaks: WaveformPeaks; @@ -3625,6 +4068,16 @@ export type Query = { }; +export type QueryCheckExternalObjectStorageConnectionArgs = { + input: CreateExternalObjectStorageInput; +}; + + +export type QueryCountProjectsByExternalObjectStorageIdArgs = { + input: Scalars['String']; +}; + + export type QueryDictionaryLookupArgs = { lang?: InputMaybe; word: Scalars['String']; @@ -3657,8 +4110,21 @@ export type QueryExportChartArgs = { }; +export type QueryExportCustomReportArgs = { + input: CustomReportBuilderInput; + teamId: Scalars['String']; +}; + + +export type QueryExportLabelAccuracyChartArgs = { + id: Scalars['ID']; + input: AnalyticsDashboardQueryInput; + method?: InputMaybe; +}; + + export type QueryExportTeamIaaArgs = { - labelSetSignature?: InputMaybe; + labelSetSignatures?: InputMaybe>; projectIds?: InputMaybe>; teamId: Scalars['ID']; }; @@ -3783,6 +4249,11 @@ export type QueryGetCustomApIsArgs = { }; +export type QueryGetDataProgrammingArgs = { + input?: InputMaybe; +}; + + export type QueryGetDatasetArgs = { id: Scalars['ID']; }; @@ -3793,6 +4264,11 @@ export type QueryGetDatasetsArgs = { }; +export type QueryGetDocumentAnswerConflictsArgs = { + documentId: Scalars['ID']; +}; + + export type QueryGetDocumentAnswersArgs = { documentId: Scalars['ID']; }; @@ -3808,13 +4284,13 @@ export type QueryGetDocumentLabelSetsArgs = { }; -export type QueryGetDocumentLabelsArgs = { - documentId: Scalars['String']; +export type QueryGetDocumentMetasByCabinetIdArgs = { + cabinetId: Scalars['ID']; }; -export type QueryGetDocumentMetasByCabinetIdArgs = { - cabinetId: Scalars['ID']; +export type QueryGetDocumentQuestionsArgs = { + projectId: Scalars['ID']; }; @@ -3843,6 +4319,17 @@ export type QueryGetExternalFilesByApiArgs = { }; +export type QueryGetExternalObjectMetaArgs = { + externalObjectStorageId: Scalars['ID']; + objectKeys: Array; +}; + + +export type QueryGetExternalObjectStoragesArgs = { + teamId: Scalars['ID']; +}; + + export type QueryGetFileTransformerArgs = { fileTransformerId: Scalars['ID']; }; @@ -3874,6 +4361,16 @@ export type QueryGetInvalidAnswerInfosArgs = { }; +export type QueryGetInvalidDocumentAnswerInfosArgs = { + cabinetId: Scalars['ID']; +}; + + +export type QueryGetInvalidRowAnswerInfosArgs = { + cabinetId: Scalars['ID']; +}; + + export type QueryGetJobArgs = { jobId: Scalars['String']; }; @@ -3884,6 +4381,16 @@ export type QueryGetJobsArgs = { }; +export type QueryGetLabelAccuracyChartArgs = { + teamId: Scalars['ID']; +}; + + +export type QueryGetLabelAccuracyDataArgs = { + input: AnalyticsDashboardQueryInput; +}; + + export type QueryGetLabelSetTemplateArgs = { id: Scalars['ID']; }; @@ -3894,6 +4401,21 @@ export type QueryGetLabelSetTemplatesArgs = { }; +export type QueryGetLabelSetsByTeamIdArgs = { + teamId: Scalars['ID']; +}; + + +export type QueryGetLabelingFunctionArgs = { + labelingFunctionId: Scalars['ID']; +}; + + +export type QueryGetLabelingFunctionsArgs = { + input: GetLabelingFunctionsInput; +}; + + export type QueryGetLabelsPaginatedArgs = { documentId: Scalars['ID']; input: GetLabelsPaginatedInput; @@ -3926,8 +4448,13 @@ export type QueryGetPaginatedLabelSetsArgs = { }; +export type QueryGetPaginatedQuestionSetsArgs = { + input: GetPaginatedQuestionSetInput; +}; + + export type QueryGetPairKappasArgs = { - labelSetSignature?: InputMaybe; + labelSetSignatures?: InputMaybe>; projectIds?: InputMaybe>; teamId: Scalars['ID']; }; @@ -3994,6 +4521,11 @@ export type QueryGetProjectsArgs = { }; +export type QueryGetQuestionSetArgs = { + id: Scalars['ID']; +}; + + export type QueryGetQuestionSetTemplateArgs = { id: Scalars['ID']; teamId: Scalars['ID']; @@ -4015,6 +4547,11 @@ export type QueryGetRowAnalyticEventsArgs = { }; +export type QueryGetRowAnswerConflictsArgs = { + input?: InputMaybe; +}; + + export type QueryGetRowAnswersPaginatedArgs = { documentId: Scalars['ID']; input?: InputMaybe; @@ -4022,6 +4559,11 @@ export type QueryGetRowAnswersPaginatedArgs = { }; +export type QueryGetRowQuestionsArgs = { + projectId: Scalars['ID']; +}; + + export type QueryGetSpanAndArrowConflictContributorIdsArgs = { documentId: Scalars['ID']; labelHashCodes: Array; @@ -4035,6 +4577,13 @@ export type QueryGetSpanAndArrowConflictsArgs = { }; +export type QueryGetSpanAndArrowRejectedLabelsArgs = { + documentId: Scalars['ID']; + input: GetSpanAndArrowRejectedLabelsPaginatedInput; + signature?: InputMaybe; +}; + + export type QueryGetTagsArgs = { input: GetTagsInput; }; @@ -4110,6 +4659,11 @@ export type QueryGetTimestampLabelsAtTimestampArgs = { }; +export type QueryGetUnusedLabelSetItemInfosArgs = { + documentId: Scalars['ID']; +}; + + export type QueryGetUsageArgs = { input: GetUsageInput; }; @@ -4230,6 +4784,70 @@ export type QuestionInput = { type?: InputMaybe; }; +export type QuestionSet = { + __typename?: 'QuestionSet'; + createdAt: Scalars['String']; + creator?: Maybe; + id: Scalars['ID']; + items: Array; + name: Scalars['String']; + updatedAt: Scalars['String']; +}; + +export type QuestionSetItem = { + __typename?: 'QuestionSetItem'; + activationConditionLogic?: Maybe; + bindToColumn?: Maybe; + createdAt: Scalars['String']; + defaultValue?: Maybe; + format?: Maybe; + hint?: Maybe; + id: Scalars['ID']; + index: Scalars['Int']; + label: Scalars['String']; + max?: Maybe; + maxLength?: Maybe; + min?: Maybe; + minLength?: Maybe; + multiline?: Maybe; + multipleAnswer?: Maybe; + nestedQuestions?: Maybe>; + options?: Maybe>; + parentId?: Maybe; + pattern?: Maybe; + questionSetId: Scalars['String']; + required: Scalars['Boolean']; + step?: Maybe; + theme?: Maybe; + type: QuestionType; + updatedAt: Scalars['String']; +}; + +export type QuestionSetItemInput = { + activationConditionLogic?: InputMaybe; + config: QuestionSetItemInputConfig; + label: Scalars['String']; + required?: InputMaybe; + type: QuestionType; +}; + +export type QuestionSetItemInputConfig = { + defaultValue?: InputMaybe; + format?: InputMaybe; + hint?: InputMaybe; + max?: InputMaybe; + maxLength?: InputMaybe; + min?: InputMaybe; + minLength?: InputMaybe; + multiline?: InputMaybe; + multiple?: InputMaybe; + options?: InputMaybe>; + pattern?: InputMaybe; + questions?: InputMaybe>; + step?: InputMaybe; + theme?: InputMaybe; +}; + export type QuestionSetTemplate = { __typename?: 'QuestionSetTemplate'; createdAt: Scalars['String']; @@ -4330,8 +4948,11 @@ export type RequestDemo = { email: Scalars['String']; fbclid?: Maybe; gclid?: Maybe; - name: Scalars['String']; + givenName: Scalars['String']; + /** @deprecated Please use givenName and surname instead. */ + name?: Maybe; numberOfLabelers: Scalars['Int']; + surname: Scalars['String']; utmSource?: Maybe; }; @@ -4341,9 +4962,10 @@ export type RequestDemoInput = { email: Scalars['String']; fbclid?: InputMaybe; gclid?: InputMaybe; - name: Scalars['String']; + givenName: Scalars['String']; numberOfLabelers: Scalars['Int']; recaptcha?: InputMaybe; + surname: Scalars['String']; utmSource?: InputMaybe; }; @@ -4446,6 +5068,17 @@ export type RowAnswer = { line: Scalars['Int']; }; +export type RowAnswerConflicts = { + __typename?: 'RowAnswerConflicts'; + conflicts: Array; + line: Scalars['Int']; +}; + +export type RowAnswersInput = { + answers: Scalars['AnswerScalar']; + line: Scalars['Int']; +}; + export type SaveGeneralWorkspaceSettingsInput = { projectId: Scalars['ID']; settings: GeneralWorkspaceSettingsInput; @@ -4649,6 +5282,7 @@ export type TeamSetting = { allowedReviewerExportMethods: Array; customAPICreationLimit: Scalars['Int']; defaultCustomTextExtractionAPIId?: Maybe; + defaultExternalObjectStorageId?: Maybe; enableArdisAutoLabel: Scalars['Boolean']; enableAssistedLabeling: Scalars['Boolean']; enableExportTeamOverview: Scalars['Boolean']; @@ -4693,6 +5327,7 @@ export type TextDocument = { fileName: Scalars['String']; id: Scalars['ID']; isCompleted: Scalars['Boolean']; + lastLabeledLine?: Maybe; lastSavedAt: Scalars['String']; mimeType: Scalars['String']; name: Scalars['String']; @@ -5033,6 +5668,13 @@ export enum TranscriptMethod { Transcription = 'TRANSCRIPTION' } +export type UnusedLabelSetItemInfo = { + __typename?: 'UnusedLabelSetItemInfo'; + items: Array; + labelSetId: Scalars['ID']; + labelSetName: Scalars['String']; +}; + export type UpdateConflictsInput = { ref: Scalars['String']; resolved: Scalars['Boolean']; @@ -5104,21 +5746,19 @@ export type UpdateLabelSetSettingsInput = { index: Scalars['Int']; }; -export type UpdateLabelSetTagItemInput = { - /** Required. The labelset where the labelset item is owned. */ - labelSetId: Scalars['ID']; - /** Optional. The labelset signature. */ - labelSetSignature?: InputMaybe; - /** Required. The labelset item to be updated. */ - tagItem: TagItemInput; -}; - export type UpdateLabelSetTemplateInput = { id: Scalars['ID']; name?: InputMaybe; questions?: InputMaybe>; }; +export type UpdateLabelingFunctionInput = { + active?: InputMaybe; + content?: InputMaybe; + labelingFunctionId: Scalars['ID']; + name?: InputMaybe; +}; + export type UpdateLabelsResult = { __typename?: 'UpdateLabelsResult'; document: TextDocument; @@ -5129,6 +5769,20 @@ export type UpdateLabelsResult = { updatedTokenLabels: Array; }; +export type UpdateMultiRowAnswersInput = { + labeledBy?: InputMaybe; + rowAnswers: Array; + textDocumentId: Scalars['String']; +}; + +export type UpdateMultiRowAnswersResult = { + __typename?: 'UpdateMultiRowAnswersResult'; + document: TextDocument; + previousAnswers: Array; + updatedAnswers: Array; + updatedLabels: Array; +}; + export type UpdateProjectExtensionElementSettingInput = { id: Scalars['ID']; setting: ExtensionElementSettingInput; @@ -5174,7 +5828,7 @@ export type UpdateProjectLabelSetInput = { }; export type UpdateProjectSettingsInput = { - consensus?: InputMaybe; + conflictResolution?: InputMaybe; dynamicReviewMemberId?: InputMaybe; dynamicReviewMethod?: InputMaybe; enableDeleteSentence?: InputMaybe; @@ -5194,6 +5848,12 @@ export type UpdateProjectTemplateInput = { name?: InputMaybe; }; +export type UpdateQuestionSetInput = { + id: Scalars['ID']; + items?: InputMaybe>; + name?: InputMaybe; +}; + export type UpdateReviewDocumentMetasInput = { documentMeta: Array; projectId: Scalars['ID']; @@ -5203,6 +5863,7 @@ export type UpdateRowAnswersResult = { __typename?: 'UpdateRowAnswersResult'; document: TextDocument; previousAnswers: RowAnswer; + updatedAnswers: RowAnswer; }; export type UpdateSentenceConflictResult = { @@ -5223,7 +5884,9 @@ export type UpdateSentenceDocLabelsResult = { export type UpdateSentenceResult = { __typename?: 'UpdateSentenceResult'; + addedBoundingBoxLabels: Array; addedLabels: Array; + deletedBoundingBoxLabels: Array; deletedLabels: Array; document: TextDocument; /** @deprecated Use `addedLabels` and `deletedLabels` */ @@ -5255,6 +5918,7 @@ export type UpdateTeamMemberTeamRoleInput = { export type UpdateTeamSettingInput = { allowedLabelerExportMethods?: InputMaybe>; allowedReviewerExportMethods?: InputMaybe>; + defaultExternalObjectStorageId?: InputMaybe; enableAssistedLabeling?: InputMaybe; enableWipeData?: InputMaybe; teamId: Scalars['ID']; diff --git a/src/transformer/pcw-transformer/constants.ts b/src/transformer/pcw-transformer/constants.ts new file mode 100644 index 0000000..c998e44 --- /dev/null +++ b/src/transformer/pcw-transformer/constants.ts @@ -0,0 +1,4 @@ +export enum DatasaurVersion { + LATEST = 'LATEST', + v5_37_0 = '5.37.0', // Last version before consensus breaking change +} diff --git a/src/transformer/pcw-transformer/helper/compareVersion.ts b/src/transformer/pcw-transformer/helper/compareVersion.ts new file mode 100644 index 0000000..37e5c14 --- /dev/null +++ b/src/transformer/pcw-transformer/helper/compareVersion.ts @@ -0,0 +1,17 @@ +import { DatasaurVersion } from '../constants'; + +export function parseVersion(version) { + const versionValues = getVersionValues().sort((v1, v2) => v1.localeCompare(v2, undefined, { numeric: true })); + for (const value of versionValues) { + if (value.localeCompare(version, undefined, { numeric: true }) !== -1) { + return value; + } + } + return DatasaurVersion.LATEST; +} + +export function getVersionValues() { + return Object.values(DatasaurVersion).filter((value) => { + return value != DatasaurVersion.LATEST; + }); +} diff --git a/src/transformer/pcw-transformer/helper/getDatasaurVersion.ts b/src/transformer/pcw-transformer/helper/getDatasaurVersion.ts new file mode 100644 index 0000000..eabd50b --- /dev/null +++ b/src/transformer/pcw-transformer/helper/getDatasaurVersion.ts @@ -0,0 +1,8 @@ +import axios from 'axios'; +import { getConfig } from '../../../config/config'; +import { parseVersion } from './compareVersion'; + +export async function getDatasaurVersion() { + const res = await axios.get(`${getConfig().datasaur.host}/api/health`); + return parseVersion(res.data.version); +} diff --git a/src/transformer/pcw-transformer/helper/project-settings.mapper.spec.ts b/src/transformer/pcw-transformer/helper/project-settings.mapper.spec.ts index f53f070..520ce81 100644 --- a/src/transformer/pcw-transformer/helper/project-settings.mapper.spec.ts +++ b/src/transformer/pcw-transformer/helper/project-settings.mapper.spec.ts @@ -1,5 +1,6 @@ import { Config } from '../../../config/interfaces'; -import { ProjectSettingsInput } from '../../../generated/graphql'; +import { ConflictResolutionMode, ProjectSettingsInput } from '../../../generated/graphql'; +import { ProjectSettingsInputWithConsensus } from '../interfaces'; import { mapProjectSettings } from './project-settings.mapper'; describe('projectSettingsMapper', () => { @@ -11,7 +12,7 @@ describe('projectSettingsMapper', () => { hideLabelsFromInactiveLabelSetDuringReview: false, hideOriginalSentencesDuringReview: true, hideRejectedLabelsDuringReview: true, - consensus: 1, + conflictResolution: { consensus: 1, mode: ConflictResolutionMode.Manual }, }; const mapped: Config['create']['projectSettings'] = { @@ -20,11 +21,71 @@ describe('projectSettingsMapper', () => { hideLabelerNamesDuringReview: false, hideLabelsFromInactiveLabelSetDuringReview: false, hideRejectedLabelsDuringReview: true, - consensus: 1, + conflictResolution: { consensus: 1, mode: ConflictResolutionMode.Manual }, }; const result = mapProjectSettings.fromPcw(fromPcw); expect(result).toEqual(mapped); }); + + it('should use previous version projectSettings for older version of Datasaur', () => { + const fromPreviousVersionOfPcw: ProjectSettingsInputWithConsensus = { + enableEditLabelSet: true, + enableEditSentence: true, + hideLabelerNamesDuringReview: false, + hideLabelsFromInactiveLabelSetDuringReview: false, + hideOriginalSentencesDuringReview: true, + hideRejectedLabelsDuringReview: true, + consensus: 3, + }; + + const mapped: Config['create']['projectSettings'] = { + enableEditLabelSet: true, + enableEditSentence: true, + hideLabelerNamesDuringReview: false, + hideLabelsFromInactiveLabelSetDuringReview: false, + hideRejectedLabelsDuringReview: true, + consensus: 3, + }; + + const result = mapProjectSettings.fromPcwWithConsensus(fromPreviousVersionOfPcw); + + expect(result).toEqual(mapped); + }); + + it('should fill out missing consensus fields with default values', () => { + const missingConsensus: ProjectSettingsInputWithConsensus = { + enableEditLabelSet: true, + enableEditSentence: true, + hideLabelerNamesDuringReview: false, + hideLabelsFromInactiveLabelSetDuringReview: false, + hideOriginalSentencesDuringReview: true, + hideRejectedLabelsDuringReview: true, + }; + + const withConsensus: Config['create']['projectSettings'] = { + enableEditLabelSet: true, + enableEditSentence: true, + hideLabelerNamesDuringReview: false, + hideLabelsFromInactiveLabelSetDuringReview: false, + hideRejectedLabelsDuringReview: true, + consensus: 1, + }; + + const withConflictResolution: Config['create']['projectSettings'] = { + enableEditLabelSet: true, + enableEditSentence: true, + hideLabelerNamesDuringReview: false, + hideLabelsFromInactiveLabelSetDuringReview: false, + hideRejectedLabelsDuringReview: true, + conflictResolution: { consensus: 1, mode: ConflictResolutionMode.PeerReview }, + }; + + const resultWithConsensus = mapProjectSettings.fromPcwWithConsensus(missingConsensus); + const resultWithConflictResolution = mapProjectSettings.fromPcw(missingConsensus); + + expect(resultWithConsensus).toEqual(withConsensus); + expect(resultWithConflictResolution).toEqual(withConflictResolution); + }); }); diff --git a/src/transformer/pcw-transformer/helper/project-settings.mapper.ts b/src/transformer/pcw-transformer/helper/project-settings.mapper.ts index c4d2c9c..b18e859 100644 --- a/src/transformer/pcw-transformer/helper/project-settings.mapper.ts +++ b/src/transformer/pcw-transformer/helper/project-settings.mapper.ts @@ -1,12 +1,25 @@ import { Config } from '../../../config/interfaces'; -import { ProjectSettingsInput } from '../../../generated/graphql'; +import { ConflictResolutionMode } from '../../../generated/graphql'; +import { DatasaurVersion } from '../constants'; +import { ProjectSettingsInputWithConsensus, PCWPayload } from '../interfaces'; import { removeNulls } from './removeNull'; export type ConfigProjectSettings = Config['create']['projectSettings']; export const mapProjectSettings = { - fromPcw: (payload: ProjectSettingsInput): ConfigProjectSettings => ({ - consensus: removeNulls(payload.consensus), + fromPcw: (payload: ProjectSettingsInputWithConsensus): ConfigProjectSettings => ({ + conflictResolution: { + mode: removeNulls(payload.conflictResolution?.mode ?? ConflictResolutionMode.PeerReview), + consensus: removeNulls(payload.conflictResolution?.consensus ?? payload.consensus ?? 1), + }, + enableEditLabelSet: removeNulls(payload.enableEditLabelSet), + enableEditSentence: removeNulls(payload.enableEditSentence), + hideLabelerNamesDuringReview: removeNulls(payload.hideLabelerNamesDuringReview), + hideRejectedLabelsDuringReview: removeNulls(payload.hideRejectedLabelsDuringReview), + hideLabelsFromInactiveLabelSetDuringReview: removeNulls(payload.hideLabelsFromInactiveLabelSetDuringReview), + }), + fromPcwWithConsensus: (payload: ProjectSettingsInputWithConsensus): ConfigProjectSettings => ({ + consensus: removeNulls(payload.consensus ?? payload.conflictResolution?.consensus ?? 1), enableEditLabelSet: removeNulls(payload.enableEditLabelSet), enableEditSentence: removeNulls(payload.enableEditSentence), hideLabelerNamesDuringReview: removeNulls(payload.hideLabelerNamesDuringReview), @@ -14,3 +27,13 @@ export const mapProjectSettings = { hideLabelsFromInactiveLabelSetDuringReview: removeNulls(payload.hideLabelsFromInactiveLabelSetDuringReview), }), }; + +export const DatasaurVersionMapper = new Map ConfigProjectSettings>(); +DatasaurVersionMapper.set(DatasaurVersion.LATEST, (payload) => { + const projectSettingsPayload = payload.projectSettings; + return mapProjectSettings.fromPcw(projectSettingsPayload); +}); +DatasaurVersionMapper.set(DatasaurVersion.v5_37_0, (payload) => { + const projectSettingsPayload = payload.projectSettings; + return mapProjectSettings.fromPcwWithConsensus(projectSettingsPayload); +}); diff --git a/src/transformer/pcw-transformer/interfaces.ts b/src/transformer/pcw-transformer/interfaces.ts index 2efd39a..a87eca7 100644 --- a/src/transformer/pcw-transformer/interfaces.ts +++ b/src/transformer/pcw-transformer/interfaces.ts @@ -41,7 +41,7 @@ export interface PCWPayload { labelSetId?: string; guidelineId?: string; projectCreationId?: string; - projectSettings: ProjectSettingsInput; + projectSettings: ProjectSettingsInput | ProjectSettingsInputWithConsensus; documentSettings: TextDocumentSettingsInput; documents?: CreateTextDocumentInput[]; tagNames?: string[]; @@ -51,3 +51,7 @@ export interface PCWPayload { splitDocumentOption?: SplitDocumentOptionInput; teamId: string; } + +export interface ProjectSettingsInputWithConsensus extends ProjectSettingsInput { + consensus?: number; +} diff --git a/src/transformer/pcw-transformer/setConfigFromPcw.ts b/src/transformer/pcw-transformer/setConfigFromPcw.ts index 50ebd69..340a730 100644 --- a/src/transformer/pcw-transformer/setConfigFromPcw.ts +++ b/src/transformer/pcw-transformer/setConfigFromPcw.ts @@ -5,16 +5,21 @@ import { getLogger } from '../../logger'; import { mapDocFileOptions } from './helper/doc-file-options.mapper'; import { mapDocumentAssignments } from './helper/document-assignments.mapper'; import { mapDocumentSettings } from './helper/document-settings.mapper'; +import { getDatasaurVersion } from './helper/getDatasaurVersion'; import { mapLabelSet } from './helper/label-set.mapper'; import { parsePcw } from './helper/parsePcw'; -import { mapProjectSettings } from './helper/project-settings.mapper'; +import { DatasaurVersionMapper } from './helper/project-settings.mapper'; import { mapSplitDocumentOptions } from './helper/split-document-options.mapper'; import { validatePcw } from './helper/validatePcw'; import { PCWPayload } from './interfaces'; -const populateConfig = (payload: PCWPayload) => { +const populateConfig = async (payload: PCWPayload) => { getConfig().create.documentSettings = mapDocumentSettings.fromPcw(payload.documentSettings); - getConfig().create.projectSettings = mapProjectSettings.fromPcw(payload.projectSettings); + + const datasaurVersion = await getDatasaurVersion(); + const getProjectSettings = DatasaurVersionMapper.get(datasaurVersion)!; + getConfig().create.projectSettings = getProjectSettings(payload); + if (payload.documents && payload.documents.length > 0) { getConfig().create.docFileOptions = mapDocFileOptions.fromPcw(payload.documents[0].docFileOptions!); } @@ -65,7 +70,7 @@ export const setConfigFromPcw = async (input: Config) => { } getLogger().info(`transforming payload to robosaur format...`); - populateConfig(payload); + await populateConfig(payload); getLogger().info('finished transforming payload, continue to creating projects...');