diff --git a/app/graph/mutations/graphql_crud_operations.rb b/app/graph/mutations/graphql_crud_operations.rb index 700a281a6a..dc4d576b24 100644 --- a/app/graph/mutations/graphql_crud_operations.rb +++ b/app/graph/mutations/graphql_crud_operations.rb @@ -191,10 +191,9 @@ def self.apply_bulk_update_or_destroy(inputs, ctx, update_or_destroy, klass) .to_h .reject { |k, _v| %w[ids clientMutationId].include?(k.to_s) } .with_indifferent_access - method_mapping = { update: :bulk_update, destroy: :bulk_destroy, mark_read: :bulk_mark_read } - method = method_mapping[update_or_destroy.to_sym] + method = "bulk_#{update_or_destroy.to_sym}" result = klass.send(method, sql_ids, filtered_inputs, Team.current) - if update_or_destroy.to_s == "update" + unless update_or_destroy.to_s == "destroy" result.merge!({ updated_objects: klass.where(id: sql_ids) }) end { ids: processed_ids }.merge(result) diff --git a/app/graph/mutations/project_media_mutations.rb b/app/graph/mutations/project_media_mutations.rb index aed2318b45..f7ee677843 100644 --- a/app/graph/mutations/project_media_mutations.rb +++ b/app/graph/mutations/project_media_mutations.rb @@ -25,6 +25,14 @@ module SharedCreateAndUpdateFields end end + module SharedUpdatedObjectsField + extend ActiveSupport::Concern + + included do + field :updated_objects, [ProjectMediaType, null: true], null: true, camelize: false + end + end + class Create < Mutations::CreateMutation include SharedCreateAndUpdateFields @@ -106,15 +114,27 @@ class Update < Mutations::BulkUpdateMutation end class MarkRead < Mutations::BaseMutation + include SharedUpdatedObjectsField + define_shared_bulk_behavior(:mark_read, self, MUTATION_TARGET, GraphqlCrudOperations.hashify_parent_types(PARENTS)) description "Allow multiple items to be marked as read or unread." graphql_name "BulkProjectMediaMarkRead" - field :updated_objects, [ProjectMediaType, null: true], null: true, camelize: false - argument :read, GraphQL::Types::Boolean, "A boolean value for ProjectMedia read value", required: true, camelize: false end + + class UpdateStatus < Mutations::BaseMutation + include SharedUpdatedObjectsField + + define_shared_bulk_behavior(:update_status, self, MUTATION_TARGET, GraphqlCrudOperations.hashify_parent_types(PARENTS)) + + description "Update status for multiple items." + + graphql_name "BulkProjectMediaUpdateStatus" + + argument :status, GraphQL::Types::String, "Property whose value is a string corresponding to a status id", required: true + end end end diff --git a/app/graph/types/mutation_type.rb b/app/graph/types/mutation_type.rb index a8026988be..e6ef1c0654 100644 --- a/app/graph/types/mutation_type.rb +++ b/app/graph/types/mutation_type.rb @@ -42,6 +42,7 @@ class MutationType < BaseObject field :destroyProjectMedia, mutation: ProjectMediaMutations::Destroy field :replaceProjectMedia, mutation: ProjectMediaMutations::Replace field :bulkProjectMediaMarkRead, mutation: ProjectMediaMutations::Bulk::MarkRead + field :bulkProjectMediaUpdateStatus, mutation: ProjectMediaMutations::Bulk::UpdateStatus field :createUser, mutation: UserMutations::Create field :updateUser, mutation: UserMutations::Update diff --git a/app/models/ability.rb b/app/models/ability.rb index c3e671b04e..59f349097f 100644 --- a/app/models/ability.rb +++ b/app/models/ability.rb @@ -146,7 +146,7 @@ def collaborator_perms changes = (after.to_a - before.to_a).to_h obj.team&.id == @context_team.id && changes.keys == [] && !obj.annotated_is_trashed? end - can [:administer_content, :bulk_update, :bulk_mark_read], ProjectMedia do |obj| + can [:administer_content, :bulk_update, :bulk_mark_read, :bulk_update_status], ProjectMedia do |obj| obj.related_to_team?(@context_team) && obj.user_can_see_project?(@user) end can [:destroy, :update], [Dynamic, Annotation] do |obj| diff --git a/app/models/concerns/project_media_bulk.rb b/app/models/concerns/project_media_bulk.rb index b50ae887ec..e46ffdcd24 100644 --- a/app/models/concerns/project_media_bulk.rb +++ b/app/models/concerns/project_media_bulk.rb @@ -20,8 +20,6 @@ def bulk_update(ids, updates, team) end when 'assigned_to_ids' self.bulk_assign(ids, params[:assigned_to_ids], params[:assignment_message], team) - when 'update_status' - self.bulk_update_status(ids, params[:status], team) when 'remove_tags' self.bulk_remove_tags(ids, params[:tags_text], team) end @@ -223,7 +221,8 @@ def run_bulk_assignment_create_callbacks(ids_json, status_mapping_json, extra_op bulk_import_versions(versions, team_id) if versions.size > 0 end - def bulk_update_status(ids, status, team) + def bulk_update_status(ids, arguments, team) + status = arguments.with_indifferent_access[:status] ids.map!(&:to_i) # Exclude published reports excluded_ids = [] @@ -325,8 +324,8 @@ def run_bulk_remove_tags_callbacks(ids_json, tag_text_ids_json, tag_pm_json) client.bulk body: es_body unless es_body.blank? end - def bulk_mark_read(ids, read, team) - read_value = read.with_indifferent_access[:read] + def bulk_mark_read(ids, arguments, team) + read_value = arguments.with_indifferent_access[:read] pm_ids = ProjectMedia.where(id: ids).where.not(read: read_value).map(&:id) # SQL bulk-update updated_at = Time.now diff --git a/lib/relay.idl b/lib/relay.idl index 1b00623290..55dccc93bd 100644 --- a/lib/relay.idl +++ b/lib/relay.idl @@ -555,6 +555,45 @@ type BulkProjectMediaMarkReadPayload { updated_objects: [ProjectMedia] } +""" +Autogenerated input type of BulkProjectMediaUpdateStatus +""" +input BulkProjectMediaUpdateStatusInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ids: [ID]! + + """ + Property whose value is a string corresponding to a status id + """ + status: String! +} + +""" +Autogenerated return type of BulkProjectMediaUpdateStatus +""" +type BulkProjectMediaUpdateStatusPayload { + check_search_project: CheckSearch + check_search_project_was: CheckSearch + check_search_spam: CheckSearch + check_search_team: CheckSearch + check_search_trash: CheckSearch + check_search_unconfirmed: CheckSearch + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ids: [ID] + project: Project + project_group: ProjectGroup + project_was: Project + team: Team + updated_objects: [ProjectMedia] +} + """ Autogenerated input type of ChangePassword """ @@ -972,9 +1011,9 @@ type CreateCommentPayload { } """ -Autogenerated input type of CreateDynamicAnnotationAnalysis +Autogenerated input type of CreateDynamicAnnotationArchiveOrg """ -input CreateDynamicAnnotationAnalysisInput { +input CreateDynamicAnnotationArchiveOrgInput { action: String action_data: String annotated_id: String @@ -990,17 +1029,17 @@ input CreateDynamicAnnotationAnalysisInput { } """ -Autogenerated return type of CreateDynamicAnnotationAnalysis +Autogenerated return type of CreateDynamicAnnotationArchiveOrg """ -type CreateDynamicAnnotationAnalysisPayload { +type CreateDynamicAnnotationArchiveOrgPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_analysis: Dynamic_annotation_analysis - dynamic_annotation_analysisEdge: Dynamic_annotation_analysisEdge + dynamic_annotation_archive_org: Dynamic_annotation_archive_org + dynamic_annotation_archive_orgEdge: Dynamic_annotation_archive_orgEdge project: Project project_media: ProjectMedia source: Source @@ -1224,9 +1263,9 @@ type CreateDynamicAnnotationGeolocationPayload { } """ -Autogenerated input type of CreateDynamicAnnotationLanguage +Autogenerated input type of CreateDynamicAnnotationKeepBackup """ -input CreateDynamicAnnotationLanguageInput { +input CreateDynamicAnnotationKeepBackupInput { action: String action_data: String annotated_id: String @@ -1242,17 +1281,17 @@ input CreateDynamicAnnotationLanguageInput { } """ -Autogenerated return type of CreateDynamicAnnotationLanguage +Autogenerated return type of CreateDynamicAnnotationKeepBackup """ -type CreateDynamicAnnotationLanguagePayload { +type CreateDynamicAnnotationKeepBackupPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_language: Dynamic_annotation_language - dynamic_annotation_languageEdge: Dynamic_annotation_languageEdge + dynamic_annotation_keep_backup: Dynamic_annotation_keep_backup + dynamic_annotation_keep_backupEdge: Dynamic_annotation_keep_backupEdge project: Project project_media: ProjectMedia source: Source @@ -1260,9 +1299,9 @@ type CreateDynamicAnnotationLanguagePayload { } """ -Autogenerated input type of CreateDynamicAnnotationMemebuster +Autogenerated input type of CreateDynamicAnnotationLanguage """ -input CreateDynamicAnnotationMemebusterInput { +input CreateDynamicAnnotationLanguageInput { action: String action_data: String annotated_id: String @@ -1278,17 +1317,17 @@ input CreateDynamicAnnotationMemebusterInput { } """ -Autogenerated return type of CreateDynamicAnnotationMemebuster +Autogenerated return type of CreateDynamicAnnotationLanguage """ -type CreateDynamicAnnotationMemebusterPayload { +type CreateDynamicAnnotationLanguagePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_memebuster: Dynamic_annotation_memebuster - dynamic_annotation_memebusterEdge: Dynamic_annotation_memebusterEdge + dynamic_annotation_language: Dynamic_annotation_language + dynamic_annotation_languageEdge: Dynamic_annotation_languageEdge project: Project project_media: ProjectMedia source: Source @@ -1368,9 +1407,9 @@ type CreateDynamicAnnotationMetricsPayload { } """ -Autogenerated input type of CreateDynamicAnnotationMt +Autogenerated input type of CreateDynamicAnnotationPenderArchive """ -input CreateDynamicAnnotationMtInput { +input CreateDynamicAnnotationPenderArchiveInput { action: String action_data: String annotated_id: String @@ -1386,17 +1425,17 @@ input CreateDynamicAnnotationMtInput { } """ -Autogenerated return type of CreateDynamicAnnotationMt +Autogenerated return type of CreateDynamicAnnotationPenderArchive """ -type CreateDynamicAnnotationMtPayload { +type CreateDynamicAnnotationPenderArchivePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_mt: Dynamic_annotation_mt - dynamic_annotation_mtEdge: Dynamic_annotation_mtEdge + dynamic_annotation_pender_archive: Dynamic_annotation_pender_archive + dynamic_annotation_pender_archiveEdge: Dynamic_annotation_pender_archiveEdge project: Project project_media: ProjectMedia source: Source @@ -2016,81 +2055,9 @@ type CreateDynamicAnnotationTaskStatusPayload { } """ -Autogenerated input type of CreateDynamicAnnotationTeamBotResponse -""" -input CreateDynamicAnnotationTeamBotResponseInput { - action: String - action_data: String - annotated_id: String - annotated_type: String - - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - fragment: String - set_attribution: String - set_fields: String! -} - -""" -Autogenerated return type of CreateDynamicAnnotationTeamBotResponse -""" -type CreateDynamicAnnotationTeamBotResponsePayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - dynamic: Dynamic - dynamicEdge: DynamicEdge - dynamic_annotation_team_bot_response: Dynamic_annotation_team_bot_response - dynamic_annotation_team_bot_responseEdge: Dynamic_annotation_team_bot_responseEdge - project: Project - project_media: ProjectMedia - source: Source - versionEdge: VersionEdge -} - -""" -Autogenerated input type of CreateDynamicAnnotationTranscript -""" -input CreateDynamicAnnotationTranscriptInput { - action: String - action_data: String - annotated_id: String - annotated_type: String - - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - fragment: String - set_attribution: String - set_fields: String! -} - -""" -Autogenerated return type of CreateDynamicAnnotationTranscript -""" -type CreateDynamicAnnotationTranscriptPayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - dynamic: Dynamic - dynamicEdge: DynamicEdge - dynamic_annotation_transcript: Dynamic_annotation_transcript - dynamic_annotation_transcriptEdge: Dynamic_annotation_transcriptEdge - project: Project - project_media: ProjectMedia - source: Source - versionEdge: VersionEdge -} - -""" -Autogenerated input type of CreateDynamicAnnotationTranscription +Autogenerated input type of CreateDynamicAnnotationTattle """ -input CreateDynamicAnnotationTranscriptionInput { +input CreateDynamicAnnotationTattleInput { action: String action_data: String annotated_id: String @@ -2106,17 +2073,17 @@ input CreateDynamicAnnotationTranscriptionInput { } """ -Autogenerated return type of CreateDynamicAnnotationTranscription +Autogenerated return type of CreateDynamicAnnotationTattle """ -type CreateDynamicAnnotationTranscriptionPayload { +type CreateDynamicAnnotationTattlePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_transcription: Dynamic_annotation_transcription - dynamic_annotation_transcriptionEdge: Dynamic_annotation_transcriptionEdge + dynamic_annotation_tattle: Dynamic_annotation_tattle + dynamic_annotation_tattleEdge: Dynamic_annotation_tattleEdge project: Project project_media: ProjectMedia source: Source @@ -2124,9 +2091,9 @@ type CreateDynamicAnnotationTranscriptionPayload { } """ -Autogenerated input type of CreateDynamicAnnotationTranslation +Autogenerated input type of CreateDynamicAnnotationTeamBotResponse """ -input CreateDynamicAnnotationTranslationInput { +input CreateDynamicAnnotationTeamBotResponseInput { action: String action_data: String annotated_id: String @@ -2142,17 +2109,17 @@ input CreateDynamicAnnotationTranslationInput { } """ -Autogenerated return type of CreateDynamicAnnotationTranslation +Autogenerated return type of CreateDynamicAnnotationTeamBotResponse """ -type CreateDynamicAnnotationTranslationPayload { +type CreateDynamicAnnotationTeamBotResponsePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation: Dynamic_annotation_translation - dynamic_annotation_translationEdge: Dynamic_annotation_translationEdge + dynamic_annotation_team_bot_response: Dynamic_annotation_team_bot_response + dynamic_annotation_team_bot_responseEdge: Dynamic_annotation_team_bot_responseEdge project: Project project_media: ProjectMedia source: Source @@ -2160,9 +2127,9 @@ type CreateDynamicAnnotationTranslationPayload { } """ -Autogenerated input type of CreateDynamicAnnotationTranslationRequest +Autogenerated input type of CreateDynamicAnnotationTranscript """ -input CreateDynamicAnnotationTranslationRequestInput { +input CreateDynamicAnnotationTranscriptInput { action: String action_data: String annotated_id: String @@ -2178,17 +2145,17 @@ input CreateDynamicAnnotationTranslationRequestInput { } """ -Autogenerated return type of CreateDynamicAnnotationTranslationRequest +Autogenerated return type of CreateDynamicAnnotationTranscript """ -type CreateDynamicAnnotationTranslationRequestPayload { +type CreateDynamicAnnotationTranscriptPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation_request: Dynamic_annotation_translation_request - dynamic_annotation_translation_requestEdge: Dynamic_annotation_translation_requestEdge + dynamic_annotation_transcript: Dynamic_annotation_transcript + dynamic_annotation_transcriptEdge: Dynamic_annotation_transcriptEdge project: Project project_media: ProjectMedia source: Source @@ -2196,9 +2163,9 @@ type CreateDynamicAnnotationTranslationRequestPayload { } """ -Autogenerated input type of CreateDynamicAnnotationTranslationStatus +Autogenerated input type of CreateDynamicAnnotationTranscription """ -input CreateDynamicAnnotationTranslationStatusInput { +input CreateDynamicAnnotationTranscriptionInput { action: String action_data: String annotated_id: String @@ -2214,17 +2181,17 @@ input CreateDynamicAnnotationTranslationStatusInput { } """ -Autogenerated return type of CreateDynamicAnnotationTranslationStatus +Autogenerated return type of CreateDynamicAnnotationTranscription """ -type CreateDynamicAnnotationTranslationStatusPayload { +type CreateDynamicAnnotationTranscriptionPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation_status: Dynamic_annotation_translation_status - dynamic_annotation_translation_statusEdge: Dynamic_annotation_translation_statusEdge + dynamic_annotation_transcription: Dynamic_annotation_transcription + dynamic_annotation_transcriptionEdge: Dynamic_annotation_transcriptionEdge project: Project project_media: ProjectMedia source: Source @@ -3029,9 +2996,9 @@ type DestroyCommentPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationAnalysis +Autogenerated input type of DestroyDynamicAnnotationArchiveOrg """ -input DestroyDynamicAnnotationAnalysisInput { +input DestroyDynamicAnnotationArchiveOrgInput { """ A unique identifier for the client performing the mutation. """ @@ -3040,9 +3007,9 @@ input DestroyDynamicAnnotationAnalysisInput { } """ -Autogenerated return type of DestroyDynamicAnnotationAnalysis +Autogenerated return type of DestroyDynamicAnnotationArchiveOrg """ -type DestroyDynamicAnnotationAnalysisPayload { +type DestroyDynamicAnnotationArchiveOrgPayload { """ A unique identifier for the client performing the mutation. """ @@ -3204,9 +3171,9 @@ type DestroyDynamicAnnotationGeolocationPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationLanguage +Autogenerated input type of DestroyDynamicAnnotationKeepBackup """ -input DestroyDynamicAnnotationLanguageInput { +input DestroyDynamicAnnotationKeepBackupInput { """ A unique identifier for the client performing the mutation. """ @@ -3215,9 +3182,9 @@ input DestroyDynamicAnnotationLanguageInput { } """ -Autogenerated return type of DestroyDynamicAnnotationLanguage +Autogenerated return type of DestroyDynamicAnnotationKeepBackup """ -type DestroyDynamicAnnotationLanguagePayload { +type DestroyDynamicAnnotationKeepBackupPayload { """ A unique identifier for the client performing the mutation. """ @@ -3229,9 +3196,9 @@ type DestroyDynamicAnnotationLanguagePayload { } """ -Autogenerated input type of DestroyDynamicAnnotationMemebuster +Autogenerated input type of DestroyDynamicAnnotationLanguage """ -input DestroyDynamicAnnotationMemebusterInput { +input DestroyDynamicAnnotationLanguageInput { """ A unique identifier for the client performing the mutation. """ @@ -3240,9 +3207,9 @@ input DestroyDynamicAnnotationMemebusterInput { } """ -Autogenerated return type of DestroyDynamicAnnotationMemebuster +Autogenerated return type of DestroyDynamicAnnotationLanguage """ -type DestroyDynamicAnnotationMemebusterPayload { +type DestroyDynamicAnnotationLanguagePayload { """ A unique identifier for the client performing the mutation. """ @@ -3304,9 +3271,9 @@ type DestroyDynamicAnnotationMetricsPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationMt +Autogenerated input type of DestroyDynamicAnnotationPenderArchive """ -input DestroyDynamicAnnotationMtInput { +input DestroyDynamicAnnotationPenderArchiveInput { """ A unique identifier for the client performing the mutation. """ @@ -3315,9 +3282,9 @@ input DestroyDynamicAnnotationMtInput { } """ -Autogenerated return type of DestroyDynamicAnnotationMt +Autogenerated return type of DestroyDynamicAnnotationPenderArchive """ -type DestroyDynamicAnnotationMtPayload { +type DestroyDynamicAnnotationPenderArchivePayload { """ A unique identifier for the client performing the mutation. """ @@ -3754,59 +3721,9 @@ type DestroyDynamicAnnotationTaskStatusPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationTeamBotResponse -""" -input DestroyDynamicAnnotationTeamBotResponseInput { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - id: ID -} - -""" -Autogenerated return type of DestroyDynamicAnnotationTeamBotResponse -""" -type DestroyDynamicAnnotationTeamBotResponsePayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - deletedId: ID - project: Project - project_media: ProjectMedia - source: Source -} - -""" -Autogenerated input type of DestroyDynamicAnnotationTranscript -""" -input DestroyDynamicAnnotationTranscriptInput { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - id: ID -} - -""" -Autogenerated return type of DestroyDynamicAnnotationTranscript -""" -type DestroyDynamicAnnotationTranscriptPayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - deletedId: ID - project: Project - project_media: ProjectMedia - source: Source -} - -""" -Autogenerated input type of DestroyDynamicAnnotationTranscription +Autogenerated input type of DestroyDynamicAnnotationTattle """ -input DestroyDynamicAnnotationTranscriptionInput { +input DestroyDynamicAnnotationTattleInput { """ A unique identifier for the client performing the mutation. """ @@ -3815,9 +3732,9 @@ input DestroyDynamicAnnotationTranscriptionInput { } """ -Autogenerated return type of DestroyDynamicAnnotationTranscription +Autogenerated return type of DestroyDynamicAnnotationTattle """ -type DestroyDynamicAnnotationTranscriptionPayload { +type DestroyDynamicAnnotationTattlePayload { """ A unique identifier for the client performing the mutation. """ @@ -3829,9 +3746,9 @@ type DestroyDynamicAnnotationTranscriptionPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationTranslation +Autogenerated input type of DestroyDynamicAnnotationTeamBotResponse """ -input DestroyDynamicAnnotationTranslationInput { +input DestroyDynamicAnnotationTeamBotResponseInput { """ A unique identifier for the client performing the mutation. """ @@ -3840,9 +3757,9 @@ input DestroyDynamicAnnotationTranslationInput { } """ -Autogenerated return type of DestroyDynamicAnnotationTranslation +Autogenerated return type of DestroyDynamicAnnotationTeamBotResponse """ -type DestroyDynamicAnnotationTranslationPayload { +type DestroyDynamicAnnotationTeamBotResponsePayload { """ A unique identifier for the client performing the mutation. """ @@ -3854,9 +3771,9 @@ type DestroyDynamicAnnotationTranslationPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationTranslationRequest +Autogenerated input type of DestroyDynamicAnnotationTranscript """ -input DestroyDynamicAnnotationTranslationRequestInput { +input DestroyDynamicAnnotationTranscriptInput { """ A unique identifier for the client performing the mutation. """ @@ -3865,9 +3782,9 @@ input DestroyDynamicAnnotationTranslationRequestInput { } """ -Autogenerated return type of DestroyDynamicAnnotationTranslationRequest +Autogenerated return type of DestroyDynamicAnnotationTranscript """ -type DestroyDynamicAnnotationTranslationRequestPayload { +type DestroyDynamicAnnotationTranscriptPayload { """ A unique identifier for the client performing the mutation. """ @@ -3879,9 +3796,9 @@ type DestroyDynamicAnnotationTranslationRequestPayload { } """ -Autogenerated input type of DestroyDynamicAnnotationTranslationStatus +Autogenerated input type of DestroyDynamicAnnotationTranscription """ -input DestroyDynamicAnnotationTranslationStatusInput { +input DestroyDynamicAnnotationTranscriptionInput { """ A unique identifier for the client performing the mutation. """ @@ -3890,9 +3807,9 @@ input DestroyDynamicAnnotationTranslationStatusInput { } """ -Autogenerated return type of DestroyDynamicAnnotationTranslationStatus +Autogenerated return type of DestroyDynamicAnnotationTranscription """ -type DestroyDynamicAnnotationTranslationStatusPayload { +type DestroyDynamicAnnotationTranscriptionPayload { """ A unique identifier for the client performing the mutation. """ @@ -4607,7 +4524,7 @@ type DynamicEdge { node: Dynamic } -type Dynamic_annotation_analysis implements Node { +type Dynamic_annotation_archive_org implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -4695,7 +4612,7 @@ type Dynamic_annotation_analysis implements Node { """ An edge in a connection. """ -type Dynamic_annotation_analysisEdge { +type Dynamic_annotation_archive_orgEdge { """ A cursor for use in pagination. """ @@ -4704,7 +4621,7 @@ type Dynamic_annotation_analysisEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_analysis + node: Dynamic_annotation_archive_org } type Dynamic_annotation_archiver implements Node { @@ -5307,7 +5224,7 @@ type Dynamic_annotation_geolocationEdge { node: Dynamic_annotation_geolocation } -type Dynamic_annotation_language implements Node { +type Dynamic_annotation_keep_backup implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -5395,7 +5312,7 @@ type Dynamic_annotation_language implements Node { """ An edge in a connection. """ -type Dynamic_annotation_languageEdge { +type Dynamic_annotation_keep_backupEdge { """ A cursor for use in pagination. """ @@ -5404,10 +5321,10 @@ type Dynamic_annotation_languageEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_language + node: Dynamic_annotation_keep_backup } -type Dynamic_annotation_memebuster implements Node { +type Dynamic_annotation_language implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -5495,7 +5412,7 @@ type Dynamic_annotation_memebuster implements Node { """ An edge in a connection. """ -type Dynamic_annotation_memebusterEdge { +type Dynamic_annotation_languageEdge { """ A cursor for use in pagination. """ @@ -5504,7 +5421,7 @@ type Dynamic_annotation_memebusterEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_memebuster + node: Dynamic_annotation_language } type Dynamic_annotation_metadata implements Node { @@ -5707,7 +5624,7 @@ type Dynamic_annotation_metricsEdge { node: Dynamic_annotation_metrics } -type Dynamic_annotation_mt implements Node { +type Dynamic_annotation_pender_archive implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -5795,7 +5712,7 @@ type Dynamic_annotation_mt implements Node { """ An edge in a connection. """ -type Dynamic_annotation_mtEdge { +type Dynamic_annotation_pender_archiveEdge { """ A cursor for use in pagination. """ @@ -5804,7 +5721,7 @@ type Dynamic_annotation_mtEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_mt + node: Dynamic_annotation_pender_archive } type Dynamic_annotation_report_design implements Node { @@ -7507,7 +7424,7 @@ type Dynamic_annotation_task_statusEdge { node: Dynamic_annotation_task_status } -type Dynamic_annotation_team_bot_response implements Node { +type Dynamic_annotation_tattle implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -7595,7 +7512,7 @@ type Dynamic_annotation_team_bot_response implements Node { """ An edge in a connection. """ -type Dynamic_annotation_team_bot_responseEdge { +type Dynamic_annotation_tattleEdge { """ A cursor for use in pagination. """ @@ -7604,10 +7521,10 @@ type Dynamic_annotation_team_bot_responseEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_team_bot_response + node: Dynamic_annotation_tattle } -type Dynamic_annotation_transcript implements Node { +type Dynamic_annotation_team_bot_response implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -7695,7 +7612,7 @@ type Dynamic_annotation_transcript implements Node { """ An edge in a connection. """ -type Dynamic_annotation_transcriptEdge { +type Dynamic_annotation_team_bot_responseEdge { """ A cursor for use in pagination. """ @@ -7704,10 +7621,10 @@ type Dynamic_annotation_transcriptEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_transcript + node: Dynamic_annotation_team_bot_response } -type Dynamic_annotation_transcription implements Node { +type Dynamic_annotation_transcript implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -7795,7 +7712,7 @@ type Dynamic_annotation_transcription implements Node { """ An edge in a connection. """ -type Dynamic_annotation_transcriptionEdge { +type Dynamic_annotation_transcriptEdge { """ A cursor for use in pagination. """ @@ -7804,10 +7721,10 @@ type Dynamic_annotation_transcriptionEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_transcription + node: Dynamic_annotation_transcript } -type Dynamic_annotation_translation implements Node { +type Dynamic_annotation_transcription implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -7895,7 +7812,7 @@ type Dynamic_annotation_translation implements Node { """ An edge in a connection. """ -type Dynamic_annotation_translationEdge { +type Dynamic_annotation_transcriptionEdge { """ A cursor for use in pagination. """ @@ -7904,10 +7821,10 @@ type Dynamic_annotation_translationEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_translation + node: Dynamic_annotation_transcription } -type Dynamic_annotation_translation_request implements Node { +type Dynamic_annotation_verification_status implements Node { annotated_id: String annotated_type: String annotation_type: String @@ -7995,7 +7912,7 @@ type Dynamic_annotation_translation_request implements Node { """ An edge in a connection. """ -type Dynamic_annotation_translation_requestEdge { +type Dynamic_annotation_verification_statusEdge { """ A cursor for use in pagination. """ @@ -8004,207 +7921,7 @@ type Dynamic_annotation_translation_requestEdge { """ The item at the end of the edge. """ - node: Dynamic_annotation_translation_request -} - -type Dynamic_annotation_translation_status implements Node { - annotated_id: String - annotated_type: String - annotation_type: String - annotations( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - annotation_type: String! - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): AnnotationUnionConnection - annotator: Annotator - assignments( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): UserConnection - content: String - created_at: String - data: JsonStringType - dbid: String - file_data: JsonStringType - id: ID! - lock_version: Int - locked: Boolean - medias( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): ProjectMediaConnection - parsed_fragment: JsonStringType - permissions: String - project: Project - team: Team - updated_at: String - version: Version -} - -""" -An edge in a connection. -""" -type Dynamic_annotation_translation_statusEdge { - """ - A cursor for use in pagination. - """ - cursor: String! - - """ - The item at the end of the edge. - """ - node: Dynamic_annotation_translation_status -} - -type Dynamic_annotation_verification_status implements Node { - annotated_id: String - annotated_type: String - annotation_type: String - annotations( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - annotation_type: String! - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): AnnotationUnionConnection - annotator: Annotator - assignments( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): UserConnection - content: String - created_at: String - data: JsonStringType - dbid: String - file_data: JsonStringType - id: ID! - lock_version: Int - locked: Boolean - medias( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): ProjectMediaConnection - parsed_fragment: JsonStringType - permissions: String - project: Project - team: Team - updated_at: String - version: Version -} - -""" -An edge in a connection. -""" -type Dynamic_annotation_verification_statusEdge { - """ - A cursor for use in pagination. - """ - cursor: String! - - """ - The item at the end of the edge. - """ - node: Dynamic_annotation_verification_status + node: Dynamic_annotation_verification_status } """ @@ -8670,6 +8387,16 @@ type MutationType { """ input: BulkProjectMediaMarkReadInput! ): BulkProjectMediaMarkReadPayload + + """ + Update status for multiple items. + """ + bulkProjectMediaUpdateStatus( + """ + Parameters for BulkProjectMediaUpdateStatus + """ + input: BulkProjectMediaUpdateStatusInput! + ): BulkProjectMediaUpdateStatusPayload changePassword( """ Parameters for ChangePassword @@ -8706,12 +8433,12 @@ type MutationType { """ input: CreateDynamicInput! ): CreateDynamicPayload - createDynamicAnnotationAnalysis( + createDynamicAnnotationArchiveOrg( """ - Parameters for CreateDynamicAnnotationAnalysis + Parameters for CreateDynamicAnnotationArchiveOrg """ - input: CreateDynamicAnnotationAnalysisInput! - ): CreateDynamicAnnotationAnalysisPayload + input: CreateDynamicAnnotationArchiveOrgInput! + ): CreateDynamicAnnotationArchiveOrgPayload createDynamicAnnotationArchiver( """ Parameters for CreateDynamicAnnotationArchiver @@ -8748,18 +8475,18 @@ type MutationType { """ input: CreateDynamicAnnotationGeolocationInput! ): CreateDynamicAnnotationGeolocationPayload + createDynamicAnnotationKeepBackup( + """ + Parameters for CreateDynamicAnnotationKeepBackup + """ + input: CreateDynamicAnnotationKeepBackupInput! + ): CreateDynamicAnnotationKeepBackupPayload createDynamicAnnotationLanguage( """ Parameters for CreateDynamicAnnotationLanguage """ input: CreateDynamicAnnotationLanguageInput! ): CreateDynamicAnnotationLanguagePayload - createDynamicAnnotationMemebuster( - """ - Parameters for CreateDynamicAnnotationMemebuster - """ - input: CreateDynamicAnnotationMemebusterInput! - ): CreateDynamicAnnotationMemebusterPayload createDynamicAnnotationMetadata( """ Parameters for CreateDynamicAnnotationMetadata @@ -8772,12 +8499,12 @@ type MutationType { """ input: CreateDynamicAnnotationMetricsInput! ): CreateDynamicAnnotationMetricsPayload - createDynamicAnnotationMt( + createDynamicAnnotationPenderArchive( """ - Parameters for CreateDynamicAnnotationMt + Parameters for CreateDynamicAnnotationPenderArchive """ - input: CreateDynamicAnnotationMtInput! - ): CreateDynamicAnnotationMtPayload + input: CreateDynamicAnnotationPenderArchiveInput! + ): CreateDynamicAnnotationPenderArchivePayload createDynamicAnnotationReportDesign( """ Parameters for CreateDynamicAnnotationReportDesign @@ -8880,6 +8607,12 @@ type MutationType { """ input: CreateDynamicAnnotationTaskStatusInput! ): CreateDynamicAnnotationTaskStatusPayload + createDynamicAnnotationTattle( + """ + Parameters for CreateDynamicAnnotationTattle + """ + input: CreateDynamicAnnotationTattleInput! + ): CreateDynamicAnnotationTattlePayload createDynamicAnnotationTeamBotResponse( """ Parameters for CreateDynamicAnnotationTeamBotResponse @@ -8898,24 +8631,6 @@ type MutationType { """ input: CreateDynamicAnnotationTranscriptionInput! ): CreateDynamicAnnotationTranscriptionPayload - createDynamicAnnotationTranslation( - """ - Parameters for CreateDynamicAnnotationTranslation - """ - input: CreateDynamicAnnotationTranslationInput! - ): CreateDynamicAnnotationTranslationPayload - createDynamicAnnotationTranslationRequest( - """ - Parameters for CreateDynamicAnnotationTranslationRequest - """ - input: CreateDynamicAnnotationTranslationRequestInput! - ): CreateDynamicAnnotationTranslationRequestPayload - createDynamicAnnotationTranslationStatus( - """ - Parameters for CreateDynamicAnnotationTranslationStatus - """ - input: CreateDynamicAnnotationTranslationStatusInput! - ): CreateDynamicAnnotationTranslationStatusPayload createDynamicAnnotationVerificationStatus( """ Parameters for CreateDynamicAnnotationVerificationStatus @@ -9072,12 +8787,12 @@ type MutationType { """ input: DestroyDynamicInput! ): DestroyDynamicPayload - destroyDynamicAnnotationAnalysis( + destroyDynamicAnnotationArchiveOrg( """ - Parameters for DestroyDynamicAnnotationAnalysis + Parameters for DestroyDynamicAnnotationArchiveOrg """ - input: DestroyDynamicAnnotationAnalysisInput! - ): DestroyDynamicAnnotationAnalysisPayload + input: DestroyDynamicAnnotationArchiveOrgInput! + ): DestroyDynamicAnnotationArchiveOrgPayload destroyDynamicAnnotationArchiver( """ Parameters for DestroyDynamicAnnotationArchiver @@ -9114,18 +8829,18 @@ type MutationType { """ input: DestroyDynamicAnnotationGeolocationInput! ): DestroyDynamicAnnotationGeolocationPayload + destroyDynamicAnnotationKeepBackup( + """ + Parameters for DestroyDynamicAnnotationKeepBackup + """ + input: DestroyDynamicAnnotationKeepBackupInput! + ): DestroyDynamicAnnotationKeepBackupPayload destroyDynamicAnnotationLanguage( """ Parameters for DestroyDynamicAnnotationLanguage """ input: DestroyDynamicAnnotationLanguageInput! ): DestroyDynamicAnnotationLanguagePayload - destroyDynamicAnnotationMemebuster( - """ - Parameters for DestroyDynamicAnnotationMemebuster - """ - input: DestroyDynamicAnnotationMemebusterInput! - ): DestroyDynamicAnnotationMemebusterPayload destroyDynamicAnnotationMetadata( """ Parameters for DestroyDynamicAnnotationMetadata @@ -9138,12 +8853,12 @@ type MutationType { """ input: DestroyDynamicAnnotationMetricsInput! ): DestroyDynamicAnnotationMetricsPayload - destroyDynamicAnnotationMt( + destroyDynamicAnnotationPenderArchive( """ - Parameters for DestroyDynamicAnnotationMt + Parameters for DestroyDynamicAnnotationPenderArchive """ - input: DestroyDynamicAnnotationMtInput! - ): DestroyDynamicAnnotationMtPayload + input: DestroyDynamicAnnotationPenderArchiveInput! + ): DestroyDynamicAnnotationPenderArchivePayload destroyDynamicAnnotationReportDesign( """ Parameters for DestroyDynamicAnnotationReportDesign @@ -9246,6 +8961,12 @@ type MutationType { """ input: DestroyDynamicAnnotationTaskStatusInput! ): DestroyDynamicAnnotationTaskStatusPayload + destroyDynamicAnnotationTattle( + """ + Parameters for DestroyDynamicAnnotationTattle + """ + input: DestroyDynamicAnnotationTattleInput! + ): DestroyDynamicAnnotationTattlePayload destroyDynamicAnnotationTeamBotResponse( """ Parameters for DestroyDynamicAnnotationTeamBotResponse @@ -9264,24 +8985,6 @@ type MutationType { """ input: DestroyDynamicAnnotationTranscriptionInput! ): DestroyDynamicAnnotationTranscriptionPayload - destroyDynamicAnnotationTranslation( - """ - Parameters for DestroyDynamicAnnotationTranslation - """ - input: DestroyDynamicAnnotationTranslationInput! - ): DestroyDynamicAnnotationTranslationPayload - destroyDynamicAnnotationTranslationRequest( - """ - Parameters for DestroyDynamicAnnotationTranslationRequest - """ - input: DestroyDynamicAnnotationTranslationRequestInput! - ): DestroyDynamicAnnotationTranslationRequestPayload - destroyDynamicAnnotationTranslationStatus( - """ - Parameters for DestroyDynamicAnnotationTranslationStatus - """ - input: DestroyDynamicAnnotationTranslationStatusInput! - ): DestroyDynamicAnnotationTranslationStatusPayload destroyDynamicAnnotationVerificationStatus( """ Parameters for DestroyDynamicAnnotationVerificationStatus @@ -9528,12 +9231,12 @@ type MutationType { """ input: UpdateDynamicInput! ): UpdateDynamicPayload - updateDynamicAnnotationAnalysis( + updateDynamicAnnotationArchiveOrg( """ - Parameters for UpdateDynamicAnnotationAnalysis + Parameters for UpdateDynamicAnnotationArchiveOrg """ - input: UpdateDynamicAnnotationAnalysisInput! - ): UpdateDynamicAnnotationAnalysisPayload + input: UpdateDynamicAnnotationArchiveOrgInput! + ): UpdateDynamicAnnotationArchiveOrgPayload updateDynamicAnnotationArchiver( """ Parameters for UpdateDynamicAnnotationArchiver @@ -9570,18 +9273,18 @@ type MutationType { """ input: UpdateDynamicAnnotationGeolocationInput! ): UpdateDynamicAnnotationGeolocationPayload + updateDynamicAnnotationKeepBackup( + """ + Parameters for UpdateDynamicAnnotationKeepBackup + """ + input: UpdateDynamicAnnotationKeepBackupInput! + ): UpdateDynamicAnnotationKeepBackupPayload updateDynamicAnnotationLanguage( """ Parameters for UpdateDynamicAnnotationLanguage """ input: UpdateDynamicAnnotationLanguageInput! ): UpdateDynamicAnnotationLanguagePayload - updateDynamicAnnotationMemebuster( - """ - Parameters for UpdateDynamicAnnotationMemebuster - """ - input: UpdateDynamicAnnotationMemebusterInput! - ): UpdateDynamicAnnotationMemebusterPayload updateDynamicAnnotationMetadata( """ Parameters for UpdateDynamicAnnotationMetadata @@ -9594,12 +9297,12 @@ type MutationType { """ input: UpdateDynamicAnnotationMetricsInput! ): UpdateDynamicAnnotationMetricsPayload - updateDynamicAnnotationMt( + updateDynamicAnnotationPenderArchive( """ - Parameters for UpdateDynamicAnnotationMt + Parameters for UpdateDynamicAnnotationPenderArchive """ - input: UpdateDynamicAnnotationMtInput! - ): UpdateDynamicAnnotationMtPayload + input: UpdateDynamicAnnotationPenderArchiveInput! + ): UpdateDynamicAnnotationPenderArchivePayload updateDynamicAnnotationReportDesign( """ Parameters for UpdateDynamicAnnotationReportDesign @@ -9702,6 +9405,12 @@ type MutationType { """ input: UpdateDynamicAnnotationTaskStatusInput! ): UpdateDynamicAnnotationTaskStatusPayload + updateDynamicAnnotationTattle( + """ + Parameters for UpdateDynamicAnnotationTattle + """ + input: UpdateDynamicAnnotationTattleInput! + ): UpdateDynamicAnnotationTattlePayload updateDynamicAnnotationTeamBotResponse( """ Parameters for UpdateDynamicAnnotationTeamBotResponse @@ -9720,24 +9429,6 @@ type MutationType { """ input: UpdateDynamicAnnotationTranscriptionInput! ): UpdateDynamicAnnotationTranscriptionPayload - updateDynamicAnnotationTranslation( - """ - Parameters for UpdateDynamicAnnotationTranslation - """ - input: UpdateDynamicAnnotationTranslationInput! - ): UpdateDynamicAnnotationTranslationPayload - updateDynamicAnnotationTranslationRequest( - """ - Parameters for UpdateDynamicAnnotationTranslationRequest - """ - input: UpdateDynamicAnnotationTranslationRequestInput! - ): UpdateDynamicAnnotationTranslationRequestPayload - updateDynamicAnnotationTranslationStatus( - """ - Parameters for UpdateDynamicAnnotationTranslationStatus - """ - input: UpdateDynamicAnnotationTranslationStatusInput! - ): UpdateDynamicAnnotationTranslationStatusPayload updateDynamicAnnotationVerificationStatus( """ Parameters for UpdateDynamicAnnotationVerificationStatus @@ -10233,18 +9924,18 @@ type ProjectMedia implements Node { demand: Int description: String domain: String - dynamic_annotation_analysis: Dynamic + dynamic_annotation_archive_org: Dynamic dynamic_annotation_archiver: Dynamic dynamic_annotation_clip: Dynamic dynamic_annotation_embed_code: Dynamic dynamic_annotation_extracted_text: Dynamic dynamic_annotation_flag: Dynamic dynamic_annotation_geolocation: Dynamic + dynamic_annotation_keep_backup: Dynamic dynamic_annotation_language: Dynamic - dynamic_annotation_memebuster: Dynamic dynamic_annotation_metadata: Dynamic dynamic_annotation_metrics: Dynamic - dynamic_annotation_mt: Dynamic + dynamic_annotation_pender_archive: Dynamic dynamic_annotation_report_design: Dynamic dynamic_annotation_reverse_image: Dynamic dynamic_annotation_slack_message: Dynamic @@ -10262,14 +9953,12 @@ type ProjectMedia implements Node { dynamic_annotation_task_response_url: Dynamic dynamic_annotation_task_response_yes_no: Dynamic dynamic_annotation_task_status: Dynamic + dynamic_annotation_tattle: Dynamic dynamic_annotation_team_bot_response: Dynamic dynamic_annotation_transcript: Dynamic dynamic_annotation_transcription: Dynamic - dynamic_annotation_translation: Dynamic - dynamic_annotation_translation_request: Dynamic - dynamic_annotation_translation_status: Dynamic dynamic_annotation_verification_status: Dynamic - dynamic_annotations_analysis( + dynamic_annotations_archive_org( """ Returns the elements in the list that come after the specified cursor. """ @@ -10416,7 +10105,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_language( + dynamic_annotations_keep_backup( """ Returns the elements in the list that come after the specified cursor. """ @@ -10437,7 +10126,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_memebuster( + dynamic_annotations_language( """ Returns the elements in the list that come after the specified cursor. """ @@ -10500,7 +10189,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_mt( + dynamic_annotations_pender_archive( """ Returns the elements in the list that come after the specified cursor. """ @@ -10878,7 +10567,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_team_bot_response( + dynamic_annotations_tattle( """ Returns the elements in the list that come after the specified cursor. """ @@ -10899,49 +10588,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_transcript( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): DynamicConnection - dynamic_annotations_transcription( - """ - Returns the elements in the list that come after the specified cursor. - """ - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - - """ - Returns the first _n_ elements from the list. - """ - first: Int - - """ - Returns the last _n_ elements from the list. - """ - last: Int - ): DynamicConnection - dynamic_annotations_translation( + dynamic_annotations_team_bot_response( """ Returns the elements in the list that come after the specified cursor. """ @@ -10962,7 +10609,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_translation_request( + dynamic_annotations_transcript( """ Returns the elements in the list that come after the specified cursor. """ @@ -10983,7 +10630,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection - dynamic_annotations_translation_status( + dynamic_annotations_transcription( """ Returns the elements in the list that come after the specified cursor. """ @@ -13169,9 +12816,9 @@ type UpdateCommentPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationAnalysis +Autogenerated input type of UpdateDynamicAnnotationArchiveOrg """ -input UpdateDynamicAnnotationAnalysisInput { +input UpdateDynamicAnnotationArchiveOrgInput { action: String action_data: String annotated_id: String @@ -13191,17 +12838,17 @@ input UpdateDynamicAnnotationAnalysisInput { } """ -Autogenerated return type of UpdateDynamicAnnotationAnalysis +Autogenerated return type of UpdateDynamicAnnotationArchiveOrg """ -type UpdateDynamicAnnotationAnalysisPayload { +type UpdateDynamicAnnotationArchiveOrgPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_analysis: Dynamic_annotation_analysis - dynamic_annotation_analysisEdge: Dynamic_annotation_analysisEdge + dynamic_annotation_archive_org: Dynamic_annotation_archive_org + dynamic_annotation_archive_orgEdge: Dynamic_annotation_archive_orgEdge project: Project project_media: ProjectMedia source: Source @@ -13449,9 +13096,9 @@ type UpdateDynamicAnnotationGeolocationPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationLanguage +Autogenerated input type of UpdateDynamicAnnotationKeepBackup """ -input UpdateDynamicAnnotationLanguageInput { +input UpdateDynamicAnnotationKeepBackupInput { action: String action_data: String annotated_id: String @@ -13471,17 +13118,17 @@ input UpdateDynamicAnnotationLanguageInput { } """ -Autogenerated return type of UpdateDynamicAnnotationLanguage +Autogenerated return type of UpdateDynamicAnnotationKeepBackup """ -type UpdateDynamicAnnotationLanguagePayload { +type UpdateDynamicAnnotationKeepBackupPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_language: Dynamic_annotation_language - dynamic_annotation_languageEdge: Dynamic_annotation_languageEdge + dynamic_annotation_keep_backup: Dynamic_annotation_keep_backup + dynamic_annotation_keep_backupEdge: Dynamic_annotation_keep_backupEdge project: Project project_media: ProjectMedia source: Source @@ -13489,9 +13136,9 @@ type UpdateDynamicAnnotationLanguagePayload { } """ -Autogenerated input type of UpdateDynamicAnnotationMemebuster +Autogenerated input type of UpdateDynamicAnnotationLanguage """ -input UpdateDynamicAnnotationMemebusterInput { +input UpdateDynamicAnnotationLanguageInput { action: String action_data: String annotated_id: String @@ -13511,17 +13158,17 @@ input UpdateDynamicAnnotationMemebusterInput { } """ -Autogenerated return type of UpdateDynamicAnnotationMemebuster +Autogenerated return type of UpdateDynamicAnnotationLanguage """ -type UpdateDynamicAnnotationMemebusterPayload { +type UpdateDynamicAnnotationLanguagePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_memebuster: Dynamic_annotation_memebuster - dynamic_annotation_memebusterEdge: Dynamic_annotation_memebusterEdge + dynamic_annotation_language: Dynamic_annotation_language + dynamic_annotation_languageEdge: Dynamic_annotation_languageEdge project: Project project_media: ProjectMedia source: Source @@ -13609,9 +13256,9 @@ type UpdateDynamicAnnotationMetricsPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationMt +Autogenerated input type of UpdateDynamicAnnotationPenderArchive """ -input UpdateDynamicAnnotationMtInput { +input UpdateDynamicAnnotationPenderArchiveInput { action: String action_data: String annotated_id: String @@ -13631,17 +13278,17 @@ input UpdateDynamicAnnotationMtInput { } """ -Autogenerated return type of UpdateDynamicAnnotationMt +Autogenerated return type of UpdateDynamicAnnotationPenderArchive """ -type UpdateDynamicAnnotationMtPayload { +type UpdateDynamicAnnotationPenderArchivePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_mt: Dynamic_annotation_mt - dynamic_annotation_mtEdge: Dynamic_annotation_mtEdge + dynamic_annotation_pender_archive: Dynamic_annotation_pender_archive + dynamic_annotation_pender_archiveEdge: Dynamic_annotation_pender_archiveEdge project: Project project_media: ProjectMedia source: Source @@ -14329,49 +13976,9 @@ type UpdateDynamicAnnotationTaskStatusPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationTeamBotResponse -""" -input UpdateDynamicAnnotationTeamBotResponseInput { - action: String - action_data: String - annotated_id: String - annotated_type: String - assigned_to_ids: String - - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - fragment: String - id: ID - lock_version: Int - locked: Boolean - set_attribution: String - set_fields: String -} - -""" -Autogenerated return type of UpdateDynamicAnnotationTeamBotResponse -""" -type UpdateDynamicAnnotationTeamBotResponsePayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - dynamic: Dynamic - dynamicEdge: DynamicEdge - dynamic_annotation_team_bot_response: Dynamic_annotation_team_bot_response - dynamic_annotation_team_bot_responseEdge: Dynamic_annotation_team_bot_responseEdge - project: Project - project_media: ProjectMedia - source: Source - versionEdge: VersionEdge -} - -""" -Autogenerated input type of UpdateDynamicAnnotationTranscript +Autogenerated input type of UpdateDynamicAnnotationTattle """ -input UpdateDynamicAnnotationTranscriptInput { +input UpdateDynamicAnnotationTattleInput { action: String action_data: String annotated_id: String @@ -14391,17 +13998,17 @@ input UpdateDynamicAnnotationTranscriptInput { } """ -Autogenerated return type of UpdateDynamicAnnotationTranscript +Autogenerated return type of UpdateDynamicAnnotationTattle """ -type UpdateDynamicAnnotationTranscriptPayload { +type UpdateDynamicAnnotationTattlePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_transcript: Dynamic_annotation_transcript - dynamic_annotation_transcriptEdge: Dynamic_annotation_transcriptEdge + dynamic_annotation_tattle: Dynamic_annotation_tattle + dynamic_annotation_tattleEdge: Dynamic_annotation_tattleEdge project: Project project_media: ProjectMedia source: Source @@ -14409,49 +14016,9 @@ type UpdateDynamicAnnotationTranscriptPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationTranscription -""" -input UpdateDynamicAnnotationTranscriptionInput { - action: String - action_data: String - annotated_id: String - annotated_type: String - assigned_to_ids: String - - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - fragment: String - id: ID - lock_version: Int - locked: Boolean - set_attribution: String - set_fields: String -} - -""" -Autogenerated return type of UpdateDynamicAnnotationTranscription -""" -type UpdateDynamicAnnotationTranscriptionPayload { - """ - A unique identifier for the client performing the mutation. - """ - clientMutationId: String - dynamic: Dynamic - dynamicEdge: DynamicEdge - dynamic_annotation_transcription: Dynamic_annotation_transcription - dynamic_annotation_transcriptionEdge: Dynamic_annotation_transcriptionEdge - project: Project - project_media: ProjectMedia - source: Source - versionEdge: VersionEdge -} - -""" -Autogenerated input type of UpdateDynamicAnnotationTranslation +Autogenerated input type of UpdateDynamicAnnotationTeamBotResponse """ -input UpdateDynamicAnnotationTranslationInput { +input UpdateDynamicAnnotationTeamBotResponseInput { action: String action_data: String annotated_id: String @@ -14471,17 +14038,17 @@ input UpdateDynamicAnnotationTranslationInput { } """ -Autogenerated return type of UpdateDynamicAnnotationTranslation +Autogenerated return type of UpdateDynamicAnnotationTeamBotResponse """ -type UpdateDynamicAnnotationTranslationPayload { +type UpdateDynamicAnnotationTeamBotResponsePayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation: Dynamic_annotation_translation - dynamic_annotation_translationEdge: Dynamic_annotation_translationEdge + dynamic_annotation_team_bot_response: Dynamic_annotation_team_bot_response + dynamic_annotation_team_bot_responseEdge: Dynamic_annotation_team_bot_responseEdge project: Project project_media: ProjectMedia source: Source @@ -14489,9 +14056,9 @@ type UpdateDynamicAnnotationTranslationPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationTranslationRequest +Autogenerated input type of UpdateDynamicAnnotationTranscript """ -input UpdateDynamicAnnotationTranslationRequestInput { +input UpdateDynamicAnnotationTranscriptInput { action: String action_data: String annotated_id: String @@ -14511,17 +14078,17 @@ input UpdateDynamicAnnotationTranslationRequestInput { } """ -Autogenerated return type of UpdateDynamicAnnotationTranslationRequest +Autogenerated return type of UpdateDynamicAnnotationTranscript """ -type UpdateDynamicAnnotationTranslationRequestPayload { +type UpdateDynamicAnnotationTranscriptPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation_request: Dynamic_annotation_translation_request - dynamic_annotation_translation_requestEdge: Dynamic_annotation_translation_requestEdge + dynamic_annotation_transcript: Dynamic_annotation_transcript + dynamic_annotation_transcriptEdge: Dynamic_annotation_transcriptEdge project: Project project_media: ProjectMedia source: Source @@ -14529,9 +14096,9 @@ type UpdateDynamicAnnotationTranslationRequestPayload { } """ -Autogenerated input type of UpdateDynamicAnnotationTranslationStatus +Autogenerated input type of UpdateDynamicAnnotationTranscription """ -input UpdateDynamicAnnotationTranslationStatusInput { +input UpdateDynamicAnnotationTranscriptionInput { action: String action_data: String annotated_id: String @@ -14551,17 +14118,17 @@ input UpdateDynamicAnnotationTranslationStatusInput { } """ -Autogenerated return type of UpdateDynamicAnnotationTranslationStatus +Autogenerated return type of UpdateDynamicAnnotationTranscription """ -type UpdateDynamicAnnotationTranslationStatusPayload { +type UpdateDynamicAnnotationTranscriptionPayload { """ A unique identifier for the client performing the mutation. """ clientMutationId: String dynamic: Dynamic dynamicEdge: DynamicEdge - dynamic_annotation_translation_status: Dynamic_annotation_translation_status - dynamic_annotation_translation_statusEdge: Dynamic_annotation_translation_statusEdge + dynamic_annotation_transcription: Dynamic_annotation_transcription + dynamic_annotation_transcriptionEdge: Dynamic_annotation_transcriptionEdge project: Project project_media: ProjectMedia source: Source diff --git a/public/relay.json b/public/relay.json index c2cfdec7e4..166899be08 100644 --- a/public/relay.json +++ b/public/relay.json @@ -2700,6 +2700,268 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "BulkProjectMediaUpdateStatusInput", + "description": "Autogenerated input type of BulkProjectMediaUpdateStatus", + "fields": null, + "inputFields": [ + { + "name": "ids", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "Property whose value is a string corresponding to a status id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BulkProjectMediaUpdateStatusPayload", + "description": "Autogenerated return type of BulkProjectMediaUpdateStatus", + "fields": [ + { + "name": "check_search_project", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "check_search_project_was", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "check_search_spam", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "check_search_team", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "check_search_trash", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "check_search_unconfirmed", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ids", + "description": null, + "args": [ + + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_group", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ProjectGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_was", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_objects", + "description": null, + "args": [ + + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMedia", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "ChangePasswordInput", @@ -4926,8 +5188,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationAnalysisInput", - "description": "Autogenerated input type of CreateDynamicAnnotationAnalysis", + "name": "CreateDynamicAnnotationArchiveOrgInput", + "description": "Autogenerated input type of CreateDynamicAnnotationArchiveOrg", "fields": null, "inputFields": [ { @@ -5037,8 +5299,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationAnalysisPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationAnalysis", + "name": "CreateDynamicAnnotationArchiveOrgPayload", + "description": "Autogenerated return type of CreateDynamicAnnotationArchiveOrg", "fields": [ { "name": "clientMutationId", @@ -5083,28 +5345,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_analysis", + "name": "dynamic_annotation_archive_org", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_analysis", + "name": "Dynamic_annotation_archive_org", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_analysisEdge", + "name": "dynamic_annotation_archive_orgEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_analysisEdge", + "name": "Dynamic_annotation_archive_orgEdge", "ofType": null }, "isDeprecated": false, @@ -6676,8 +6938,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationLanguageInput", - "description": "Autogenerated input type of CreateDynamicAnnotationLanguage", + "name": "CreateDynamicAnnotationKeepBackupInput", + "description": "Autogenerated input type of CreateDynamicAnnotationKeepBackup", "fields": null, "inputFields": [ { @@ -6787,8 +7049,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationLanguagePayload", - "description": "Autogenerated return type of CreateDynamicAnnotationLanguage", + "name": "CreateDynamicAnnotationKeepBackupPayload", + "description": "Autogenerated return type of CreateDynamicAnnotationKeepBackup", "fields": [ { "name": "clientMutationId", @@ -6833,28 +7095,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_language", + "name": "dynamic_annotation_keep_backup", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_language", + "name": "Dynamic_annotation_keep_backup", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_languageEdge", + "name": "dynamic_annotation_keep_backupEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_languageEdge", + "name": "Dynamic_annotation_keep_backupEdge", "ofType": null }, "isDeprecated": false, @@ -6926,8 +7188,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationMemebusterInput", - "description": "Autogenerated input type of CreateDynamicAnnotationMemebuster", + "name": "CreateDynamicAnnotationLanguageInput", + "description": "Autogenerated input type of CreateDynamicAnnotationLanguage", "fields": null, "inputFields": [ { @@ -7037,8 +7299,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationMemebusterPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationMemebuster", + "name": "CreateDynamicAnnotationLanguagePayload", + "description": "Autogenerated return type of CreateDynamicAnnotationLanguage", "fields": [ { "name": "clientMutationId", @@ -7083,28 +7345,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_memebuster", + "name": "dynamic_annotation_language", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_memebuster", + "name": "Dynamic_annotation_language", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_memebusterEdge", + "name": "dynamic_annotation_languageEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_memebusterEdge", + "name": "Dynamic_annotation_languageEdge", "ofType": null }, "isDeprecated": false, @@ -7676,8 +7938,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationMtInput", - "description": "Autogenerated input type of CreateDynamicAnnotationMt", + "name": "CreateDynamicAnnotationPenderArchiveInput", + "description": "Autogenerated input type of CreateDynamicAnnotationPenderArchive", "fields": null, "inputFields": [ { @@ -7787,8 +8049,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationMtPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationMt", + "name": "CreateDynamicAnnotationPenderArchivePayload", + "description": "Autogenerated return type of CreateDynamicAnnotationPenderArchive", "fields": [ { "name": "clientMutationId", @@ -7833,28 +8095,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_mt", + "name": "dynamic_annotation_pender_archive", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_mt", + "name": "Dynamic_annotation_pender_archive", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_mtEdge", + "name": "dynamic_annotation_pender_archiveEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_mtEdge", + "name": "Dynamic_annotation_pender_archiveEdge", "ofType": null }, "isDeprecated": false, @@ -12174,6 +12436,256 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CreateDynamicAnnotationTattleInput", + "description": "Autogenerated input type of CreateDynamicAnnotationTattle", + "fields": null, + "inputFields": [ + { + "name": "fragment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "annotated_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "annotated_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "set_attribution", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "set_fields", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateDynamicAnnotationTattlePayload", + "description": "Autogenerated return type of CreateDynamicAnnotationTattle", + "fields": [ + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dynamic", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Dynamic", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dynamicEdge", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "DynamicEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dynamic_annotation_tattle", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Dynamic_annotation_tattle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dynamic_annotation_tattleEdge", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Dynamic_annotation_tattleEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_media", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ProjectMedia", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Source", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versionEdge", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "VersionEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "CreateDynamicAnnotationTeamBotResponseInput", @@ -12926,8 +13438,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationInput", - "description": "Autogenerated input type of CreateDynamicAnnotationTranslation", + "name": "CreateDynamicAnnotationVerificationStatusInput", + "description": "Autogenerated input type of CreateDynamicAnnotationVerificationStatus", "fields": null, "inputFields": [ { @@ -13037,8 +13549,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationTranslation", + "name": "CreateDynamicAnnotationVerificationStatusPayload", + "description": "Autogenerated return type of CreateDynamicAnnotationVerificationStatus", "fields": [ { "name": "clientMutationId", @@ -13083,28 +13595,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation", + "name": "dynamic_annotation_verification_status", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation", + "name": "Dynamic_annotation_verification_status", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translationEdge", + "name": "dynamic_annotation_verification_statusEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translationEdge", + "name": "Dynamic_annotation_verification_statusEdge", "ofType": null }, "isDeprecated": false, @@ -13176,8 +13688,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationRequestInput", - "description": "Autogenerated input type of CreateDynamicAnnotationTranslationRequest", + "name": "CreateDynamicInput", + "description": "Autogenerated input type of CreateDynamic", "fields": null, "inputFields": [ { @@ -13241,19 +13753,23 @@ "deprecationReason": null }, { - "name": "action_data", + "name": "set_fields", "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": "set_fields", + "name": "annotation_type", "description": null, "type": { "kind": "NON_NULL", @@ -13287,8 +13803,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationRequestPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationTranslationRequest", + "name": "CreateDynamicPayload", + "description": "Autogenerated return type of CreateDynamic", "fields": [ { "name": "clientMutationId", @@ -13333,70 +13849,70 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation_request", + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_request", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translation_requestEdge", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_requestEdge", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "task", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Task", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "version", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "Version", "ofType": null }, "isDeprecated": false, @@ -13426,36 +13942,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationStatusInput", - "description": "Autogenerated input type of CreateDynamicAnnotationTranslationStatus", + "name": "CreateFactCheckInput", + "description": "Autogenerated input type of CreateFactCheck", "fields": null, "inputFields": [ { - "name": "fragment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -13467,7 +13959,7 @@ "deprecationReason": null }, { - "name": "action", + "name": "language", "description": null, "type": { "kind": "SCALAR", @@ -13479,38 +13971,46 @@ "deprecationReason": null }, { - "name": "set_attribution", + "name": "title", "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": "action_data", + "name": "summary", "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": "set_fields", + "name": "claim_description_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -13537,9 +14037,23 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationStatusPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationTranslationStatus", + "name": "CreateFactCheckPayload", + "description": "Autogenerated return type of CreateFactCheck", "fields": [ + { + "name": "claim_description", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ClaimDescription", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -13555,181 +14069,241 @@ "deprecationReason": null }, { - "name": "dynamic", + "name": "fact_check", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic", + "name": "FactCheck", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicEdge", + "name": "fact_checkEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "DynamicEdge", + "name": "FactCheckEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateFeedInput", + "description": "Autogenerated input type of CreateFeed", + "fields": null, + "inputFields": [ { - "name": "dynamic_annotation_translation_status", + "name": "description", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_translation_status", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translation_statusEdge", + "name": "tags", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_translation_statusEdge", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "saved_search_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "published", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "discoverable", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "versionEdge", + "name": "name", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "VersionEdge", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "licenses", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "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": "CreateDynamicAnnotationVerificationStatusInput", - "description": "Autogenerated input type of CreateDynamicAnnotationVerificationStatus", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CreateFeedPayload", + "description": "Autogenerated return type of CreateFeed", + "fields": [ { - "name": "fragment", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "annotated_id", + "name": "feed", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Feed", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "annotated_type", + "name": "feedEdge", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FeedEdge", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "action", + "name": "team", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectGroupInput", + "description": "Autogenerated input type of CreateProjectGroup", + "fields": null, + "inputFields": [ { - "name": "set_attribution", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -13741,26 +14315,30 @@ "deprecationReason": null }, { - "name": "action_data", + "name": "title", "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": "set_fields", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -13787,8 +14365,8 @@ }, { "kind": "OBJECT", - "name": "CreateDynamicAnnotationVerificationStatusPayload", - "description": "Autogenerated return type of CreateDynamicAnnotationVerificationStatus", + "name": "CreateProjectGroupPayload", + "description": "Autogenerated return type of CreateProjectGroup", "fields": [ { "name": "clientMutationId", @@ -13805,137 +14383,142 @@ "deprecationReason": null }, { - "name": "dynamic", + "name": "project_group", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic", + "name": "ProjectGroup", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicEdge", + "name": "project_groupEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "DynamicEdge", + "name": "ProjectGroupEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_verification_status", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_verification_status", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "description": "Autogenerated input type of CreateProject", + "fields": null, + "inputFields": [ { - "name": "dynamic_annotation_verification_statusEdge", + "name": "description", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_verification_statusEdge", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "project_group_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "title", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "team_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "versionEdge", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { - "kind": "OBJECT", - "name": "VersionEdge", + "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": "CreateDynamicInput", - "description": "Autogenerated input type of CreateDynamic", + "name": "CreateProjectMediaInput", + "description": "Autogenerated input type of CreateProjectMedia", "fields": null, "inputFields": [ { - "name": "fragment", + "name": "media_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13943,11 +14526,11 @@ "deprecationReason": null }, { - "name": "annotated_id", + "name": "related_to_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13955,7 +14538,7 @@ "deprecationReason": null }, { - "name": "annotated_type", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -13967,7 +14550,7 @@ "deprecationReason": null }, { - "name": "action", + "name": "quote", "description": null, "type": { "kind": "SCALAR", @@ -13979,7 +14562,7 @@ "deprecationReason": null }, { - "name": "set_attribution", + "name": "quote_attributions", "description": null, "type": { "kind": "SCALAR", @@ -13991,302 +14574,252 @@ "deprecationReason": null }, { - "name": "set_fields", + "name": "project_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "annotation_type", + "name": "team_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "channel", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JsonStringType", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateDynamicPayload", - "description": "Autogenerated return type of CreateDynamic", - "fields": [ + }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], + "name": "media_type", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic", + "name": "set_annotation", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Dynamic", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicEdge", + "name": "set_claim_description", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "DynamicEdge", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "set_fact_check", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "JsonStringType", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "set_tasks_responses", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", + "kind": "SCALAR", + "name": "JsonStringType", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "set_tags", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "JsonStringType", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "task", + "name": "set_title", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Task", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "set_status", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Version", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "versionEdge", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { - "kind": "OBJECT", - "name": "VersionEdge", + "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": "CreateFactCheckInput", - "description": "Autogenerated input type of CreateFactCheck", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CreateProjectMediaPayload", + "description": "Autogenerated return type of CreateProjectMedia", + "fields": [ { - "name": "url", + "name": "affectedId", "description": null, + "args": [ + + ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "language", + "name": "check_search_project", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "check_search_project_was", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "summary", + "name": "check_search_spam", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "claim_description_id", + "name": "check_search_team", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "CheckSearch", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "check_search_trash", + "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateFactCheckPayload", - "description": "Autogenerated return type of CreateFactCheck", - "fields": [ + }, { - "name": "claim_description", + "name": "check_search_unconfirmed", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ClaimDescription", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, @@ -14307,120 +14840,126 @@ "deprecationReason": null }, { - "name": "fact_check", + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "FactCheck", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fact_checkEdge", + "name": "project_group", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "FactCheckEdge", + "name": "ProjectGroup", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateFeedInput", - "description": "Autogenerated input type of CreateFeed", - "fields": null, - "inputFields": [ + }, { - "name": "description", + "name": "project_media", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tags", + "name": "project_mediaEdge", "description": null, + "args": [ + + ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ProjectMediaEdge", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "saved_search_id", + "name": "project_was", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "published", + "name": "related_to", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "discoverable", + "name": "team", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "Team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectMediaUserInput", + "description": "Autogenerated input type of CreateProjectMediaUser", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "project_media_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -14429,20 +14968,24 @@ "deprecationReason": null }, { - "name": "licenses", + "name": "user_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "read", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -14467,8 +15010,8 @@ }, { "kind": "OBJECT", - "name": "CreateFeedPayload", - "description": "Autogenerated return type of CreateFeed", + "name": "CreateProjectMediaUserPayload", + "description": "Autogenerated return type of CreateProjectMediaUser", "fields": [ { "name": "clientMutationId", @@ -14485,42 +15028,42 @@ "deprecationReason": null }, { - "name": "feed", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Feed", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "feedEdge", + "name": "project_media_user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "FeedEdge", + "name": "ProjectMediaUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "project_media_userEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "ProjectMediaUserEdge", "ofType": null }, "isDeprecated": false, @@ -14535,86 +15078,75 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CreateProjectGroupInput", - "description": "Autogenerated input type of CreateProjectGroup", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CreateProjectPayload", + "description": "Autogenerated return type of CreateProject", + "fields": [ { - "name": "description", + "name": "check_search_team", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "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": "team_id", + "name": "previous_default_project", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "Project", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "project", + "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateProjectGroupPayload", - "description": "Autogenerated return type of CreateProjectGroup", - "fields": [ + }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "projectEdge", + "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ProjectEdge", "ofType": null }, "isDeprecated": false, @@ -14635,14 +15167,14 @@ "deprecationReason": null }, { - "name": "project_groupEdge", + "name": "project_group_was", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectGroupEdge", + "name": "ProjectGroup", "ofType": null }, "isDeprecated": false, @@ -14672,16 +15204,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateProjectInput", - "description": "Autogenerated input type of CreateProject", + "name": "CreateRelationshipInput", + "description": "Autogenerated input type of CreateRelationship", "fields": null, "inputFields": [ { - "name": "description", + "name": "source_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -14689,7 +15221,7 @@ "deprecationReason": null }, { - "name": "project_group_id", + "name": "target_id", "description": null, "type": { "kind": "SCALAR", @@ -14701,27 +15233,35 @@ "deprecationReason": null }, { - "name": "title", + "name": "relationship_source_type", "description": null, "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": "team_id", + "name": "relationship_target_type", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationship_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JsonStringType", "ofType": null }, "defaultValue": null, @@ -14746,65 +15286,100 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CreateProjectMediaInput", - "description": "Autogenerated input type of CreateProjectMedia", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CreateRelationshipPayload", + "description": "Autogenerated return type of CreateRelationship", + "fields": [ { - "name": "media_id", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "related_to_id", + "name": "relationship", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Relationship", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "relationshipEdge", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RelationshipEdge", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quote", + "name": "source_project_media", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quote_attributions", + "name": "target_project_media", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ProjectMedia", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSavedSearchInput", + "description": "Autogenerated input type of CreateSavedSearch", + "fields": null, + "inputFields": [ + { + "name": "filters", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JsonStringType", "ofType": null }, "defaultValue": null, @@ -14812,12 +15387,16 @@ "deprecationReason": null }, { - "name": "project_id", + "name": "title", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -14826,41 +15405,113 @@ { "name": "team_id", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateSavedSearchPayload", + "description": "Autogenerated return type of CreateSavedSearch", + "fields": [ + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "channel", + "name": "saved_search", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "JsonStringType", + "kind": "OBJECT", + "name": "SavedSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "media_type", + "name": "saved_searchEdge", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SavedSearchEdge", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "set_annotation", + "name": "team", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSourceInput", + "description": "Autogenerated input type of CreateSource", + "fields": null, + "inputFields": [ + { + "name": "avatar", "description": null, "type": { "kind": "SCALAR", @@ -14872,11 +15523,11 @@ "deprecationReason": null }, { - "name": "set_claim_description", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -14884,11 +15535,11 @@ "deprecationReason": null }, { - "name": "set_fact_check", + "name": "add_to_project_media_id", "description": null, "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -14896,31 +15547,39 @@ "deprecationReason": null }, { - "name": "set_tasks_responses", + "name": "slogan", "description": null, "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "set_tags", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "set_title", + "name": "urls", "description": null, "type": { "kind": "SCALAR", @@ -14932,11 +15591,11 @@ "deprecationReason": null }, { - "name": "set_status", + "name": "validate_primary_link_exist", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -14962,200 +15621,232 @@ }, { "kind": "OBJECT", - "name": "CreateProjectMediaPayload", - "description": "Autogenerated return type of CreateProjectMedia", + "name": "CreateSourcePayload", + "description": "Autogenerated return type of CreateSource", "fields": [ { - "name": "affectedId", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_project", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_project_was", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_spam", + "name": "sourceEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "SourceEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTagInput", + "description": "Autogenerated input type of CreateTag", + "fields": null, + "inputFields": [ { - "name": "check_search_team", + "name": "fragment", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_trash", + "name": "annotated_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_unconfirmed", + "name": "annotated_type", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tag", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateTagPayload", + "description": "Autogenerated return type of CreateTag", + "fields": [ { - "name": "project", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_group", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectGroup", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_mediaEdge", + "name": "tag", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMediaEdge", + "name": "Tag", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_was", + "name": "tagEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "TagEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "related_to", + "name": "tag_text_object", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "TagText", "ofType": null }, "isDeprecated": false, @@ -15185,12 +15876,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateProjectMediaUserInput", - "description": "Autogenerated input type of CreateProjectMediaUser", + "name": "CreateTagTextInput", + "description": "Autogenerated input type of CreateTagText", "fields": null, "inputFields": [ { - "name": "project_media_id", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", @@ -15206,24 +15897,16 @@ "deprecationReason": null }, { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "read", + "name": "text", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -15248,8 +15931,8 @@ }, { "kind": "OBJECT", - "name": "CreateProjectMediaUserPayload", - "description": "Autogenerated return type of CreateProjectMediaUser", + "name": "CreateTagTextPayload", + "description": "Autogenerated return type of CreateTagText", "fields": [ { "name": "clientMutationId", @@ -15266,42 +15949,42 @@ "deprecationReason": null }, { - "name": "project_media", + "name": "tag_text", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "TagText", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media_user", + "name": "tag_textEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMediaUser", + "name": "TagTextEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media_userEdge", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMediaUserEdge", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -15316,103 +15999,135 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CreateProjectPayload", - "description": "Autogenerated return type of CreateProject", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "CreateTagsBulkInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "check_search_team", + "name": "fragment", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], + "name": "annotated_id", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "previous_default_project", + "name": "annotated_type", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "tag", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Project", - "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": "CreateTagsInput", + "description": "Autogenerated input type of CreateTags", + "fields": null, + "inputFields": [ { - "name": "projectEdge", + "name": "inputs", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectEdge", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTagsBulkInput", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_group", + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateTagsPayload", + "description": "Autogenerated return type of CreateTags", + "fields": [ + { + "name": "check_search_team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectGroup", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_group_was", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "ProjectGroup", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -15442,16 +16157,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateRelationshipInput", - "description": "Autogenerated input type of CreateRelationship", + "name": "CreateTaskInput", + "description": "Autogenerated input type of CreateTask", "fields": null, "inputFields": [ { - "name": "source_id", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15459,7 +16174,19 @@ "deprecationReason": null }, { - "name": "target_id", + "name": "json_schema", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", "description": null, "type": { "kind": "SCALAR", @@ -15471,7 +16198,7 @@ "deprecationReason": null }, { - "name": "relationship_source_type", + "name": "fieldset", "description": null, "type": { "kind": "SCALAR", @@ -15483,7 +16210,39 @@ "deprecationReason": null }, { - "name": "relationship_target_type", + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jsonoptions", "description": null, "type": { "kind": "SCALAR", @@ -15495,11 +16254,23 @@ "deprecationReason": null }, { - "name": "relationship_type", + "name": "annotated_id", "description": null, "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "annotated_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15525,8 +16296,8 @@ }, { "kind": "OBJECT", - "name": "CreateRelationshipPayload", - "description": "Autogenerated return type of CreateRelationship", + "name": "CreateTaskPayload", + "description": "Autogenerated return type of CreateTask", "fields": [ { "name": "clientMutationId", @@ -15543,56 +16314,98 @@ "deprecationReason": null }, { - "name": "relationship", + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Relationship", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "relationshipEdge", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "RelationshipEdge", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source_project_media", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "target_project_media", + "name": "task", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Task", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taskEdge", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "TaskEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Version", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versionEdge", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "VersionEdge", "ofType": null }, "isDeprecated": false, @@ -15608,31 +16421,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateSavedSearchInput", - "description": "Autogenerated input type of CreateSavedSearch", + "name": "CreateTeamBotInstallationInput", + "description": "Autogenerated input type of CreateTeamBotInstallation", "fields": null, "inputFields": [ { - "name": "filters", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15641,7 +16442,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "user_id", "description": null, "type": { "kind": "NON_NULL", @@ -15675,9 +16476,23 @@ }, { "kind": "OBJECT", - "name": "CreateSavedSearchPayload", - "description": "Autogenerated return type of CreateSavedSearch", + "name": "CreateTeamBotInstallationPayload", + "description": "Autogenerated return type of CreateTeamBotInstallation", "fields": [ + { + "name": "bot_user", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "BotUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -15693,42 +16508,42 @@ "deprecationReason": null }, { - "name": "saved_search", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "SavedSearch", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "saved_searchEdge", + "name": "team_bot_installation", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "SavedSearchEdge", + "name": "TeamBotInstallation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "team_bot_installationEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "TeamBotInstallationEdge", "ofType": null }, "isDeprecated": false, @@ -15744,16 +16559,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateSourceInput", - "description": "Autogenerated input type of CreateSource", + "name": "CreateTeamInput", + "description": "Autogenerated input type of CreateTeam", "fields": null, "inputFields": [ { - "name": "avatar", + "name": "archived", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15761,11 +16576,11 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "private", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15773,11 +16588,11 @@ "deprecationReason": null }, { - "name": "add_to_project_media_id", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15785,7 +16600,7 @@ "deprecationReason": null }, { - "name": "slogan", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -15801,7 +16616,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "slug", "description": null, "type": { "kind": "NON_NULL", @@ -15816,30 +16631,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "urls", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validate_primary_link_exist", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -15859,153 +16650,65 @@ }, { "kind": "OBJECT", - "name": "CreateSourcePayload", - "description": "Autogenerated return type of CreateSource", + "name": "CreateTeamPayload", + "description": "Autogenerated return type of CreateTeam", "fields": [ { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "check_search_spam", + "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "check_search_team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "check_search_trash", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sourceEdge", + "name": "check_search_unconfirmed", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "SourceEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTagInput", - "description": "Autogenerated input type of CreateTag", - "fields": null, - "inputFields": [ - { - "name": "fragment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateTagPayload", - "description": "Autogenerated return type of CreateTag", - "fields": [ { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -16021,84 +16724,70 @@ "deprecationReason": null }, { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", + "name": "public_team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "PublicTeam", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tag", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Tag", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tagEdge", + "name": "teamEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TagEdge", + "name": "TeamEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tag_text_object", + "name": "team_userEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TagText", + "name": "TeamUserEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "User", "ofType": null }, "isDeprecated": false, @@ -16114,19 +16803,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateTagTextInput", - "description": "Autogenerated input type of CreateTagText", + "name": "CreateTeamTaskInput", + "description": "Autogenerated input type of CreateTeamTask", "fields": null, "inputFields": [ { - "name": "team_id", + "name": "label", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -16135,115 +16824,79 @@ "deprecationReason": null }, { - "name": "text", + "name": "description", "description": null, "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": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "order", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateTagTextPayload", - "description": "Autogenerated return type of CreateTagText", - "fields": [ + }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], + "name": "fieldset", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tag_text", + "name": "required", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TagText", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tag_textEdge", + "name": "task_type", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TagTextEdge", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "json_options", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTagsBulkInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "fragment", + "name": "json_schema", "description": null, "type": { "kind": "SCALAR", @@ -16255,7 +16908,19 @@ "deprecationReason": null }, { - "name": "annotated_id", + "name": "keep_completed_tasks", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "associated_type", "description": null, "type": { "kind": "SCALAR", @@ -16267,7 +16932,19 @@ "deprecationReason": null }, { - "name": "annotated_type", + "name": "show_in_browser_extension", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "conditional_info", "description": null, "type": { "kind": "SCALAR", @@ -16279,41 +16956,26 @@ "deprecationReason": null }, { - "name": "tag", + "name": "options_diff", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "JsonStringType", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTagsInput", - "description": "Autogenerated input type of CreateTags", - "fields": null, - "inputFields": [ + }, { - "name": "inputs", + "name": "team_id", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTagsBulkInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -16340,46 +17002,60 @@ }, { "kind": "OBJECT", - "name": "CreateTagsPayload", - "description": "Autogenerated return type of CreateTags", + "name": "CreateTeamTaskPayload", + "description": "Autogenerated return type of CreateTeamTask", "fields": [ { - "name": "check_search_team", + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "team_task", + "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TeamTask", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "team_taskEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "TeamTaskEdge", "ofType": null }, "isDeprecated": false, @@ -16395,24 +17071,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateTaskInput", - "description": "Autogenerated input type of CreateTask", + "name": "CreateTeamUserInput", + "description": "Autogenerated input type of CreateTeamUser", "fields": null, "inputFields": [ { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "json_schema", + "name": "role", "description": null, "type": { "kind": "SCALAR", @@ -16424,38 +17088,30 @@ "deprecationReason": null }, { - "name": "order", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fieldset", + "name": "user_id", "description": null, "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": "label", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -16464,7 +17120,7 @@ "deprecationReason": null }, { - "name": "type", + "name": "status", "description": null, "type": { "kind": "NON_NULL", @@ -16479,42 +17135,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "jsonoptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -16534,8 +17154,8 @@ }, { "kind": "OBJECT", - "name": "CreateTaskPayload", - "description": "Autogenerated return type of CreateTask", + "name": "CreateTeamUserPayload", + "description": "Autogenerated return type of CreateTeamUser", "fields": [ { "name": "clientMutationId", @@ -16552,152 +17172,138 @@ "deprecationReason": null }, { - "name": "project", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "team_user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "TeamUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "team_userEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "TeamUserEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "task", + "name": "user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Task", + "name": "User", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTiplineNewsletterInput", + "description": "Autogenerated input type of CreateTiplineNewsletter", + "fields": null, + "inputFields": [ { - "name": "taskEdge", + "name": "enabled", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TaskEdge", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "introduction", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Version", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "versionEdge", + "name": "language", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "VersionEdge", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamBotInstallationInput", - "description": "Autogenerated input type of CreateTeamBotInstallation", - "fields": null, - "inputFields": [ + }, { - "name": "team_id", + "name": "header_type", "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, "deprecationReason": null }, { - "name": "user_id", + "name": "header_overlay_text", "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, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "content_type", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -16706,107 +17312,73 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateTeamBotInstallationPayload", - "description": "Autogenerated return type of CreateTeamBotInstallation", - "fields": [ + }, { - "name": "bot_user", + "name": "rss_feed_url", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "BotUser", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], + "name": "number_of_articles", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "first_article", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_bot_installation", + "name": "second_article", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TeamBotInstallation", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_bot_installationEdge", + "name": "third_article", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TeamBotInstallationEdge", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamInput", - "description": "Autogenerated input type of CreateTeam", - "fields": null, - "inputFields": [ + }, { - "name": "archived", + "name": "footer", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -16814,11 +17386,11 @@ "deprecationReason": null }, { - "name": "private", + "name": "send_every", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JsonStringType", "ofType": null }, "defaultValue": null, @@ -16826,7 +17398,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "send_on", "description": null, "type": { "kind": "SCALAR", @@ -16838,32 +17410,24 @@ "deprecationReason": null }, { - "name": "name", + "name": "timezone", "description": null, "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": "slug", + "name": "time", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -16888,165 +17452,137 @@ }, { "kind": "OBJECT", - "name": "CreateTeamPayload", - "description": "Autogenerated return type of CreateTeam", + "name": "CreateTiplineNewsletterPayload", + "description": "Autogenerated return type of CreateTiplineNewsletter", "fields": [ { - "name": "check_search_spam", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_team", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_trash", + "name": "tipline_newsletter", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "TiplineNewsletter", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_unconfirmed", + "name": "tipline_newsletterEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "TiplineNewsletterEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ + } + ], + "inputFields": null, + "interfaces": [ - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateUserInput", + "description": "Autogenerated input type of CreateUser", + "fields": null, + "inputFields": [ { - "name": "public_team", + "name": "profile_image", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "PublicTeam", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "current_team_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamEdge", + "name": "email", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TeamEdge", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_userEdge", + "name": "login", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TeamUserEdge", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamTaskInput", - "description": "Autogenerated input type of CreateTeamTask", - "fields": null, - "inputFields": [ - { - "name": "label", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -17062,32 +17598,40 @@ "deprecationReason": null }, { - "name": "description", + "name": "password", "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": "order", + "name": "password_confirmation", "description": null, "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 }, { - "name": "fieldset", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", "name": "String", @@ -17096,124 +17640,194 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateUserPayload", + "description": "Autogenerated return type of CreateUser", + "fields": [ { - "name": "required", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "task_type", + "name": "user", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "json_options", + "name": "userEdge", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UserEdge", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteCheckUserInput", + "description": "Autogenerated input type of DeleteCheckUser", + "fields": null, + "inputFields": [ { - "name": "json_schema", + "name": "id", "description": null, "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": "keep_completed_tasks", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteCheckUserPayload", + "description": "Autogenerated return type of DeleteCheckUser", + "fields": [ { - "name": "associated_type", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "show_in_browser_extension", + "name": "success", "description": null, + "args": [ + + ], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamStatusInput", + "description": "Autogenerated input type of DeleteTeamStatus", + "fields": null, + "inputFields": [ { - "name": "conditional_info", + "name": "team_id", "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 }, { - "name": "options_diff", + "name": "status_id", "description": null, "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "fallback_status_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -17240,8 +17854,8 @@ }, { "kind": "OBJECT", - "name": "CreateTeamTaskPayload", - "description": "Autogenerated return type of CreateTeamTask", + "name": "DeleteTeamStatusPayload", + "description": "Autogenerated return type of DeleteTeamStatus", "fields": [ { "name": "clientMutationId", @@ -17270,104 +17884,118 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyAccountSourceInput", + "description": "Autogenerated input type of DestroyAccountSource", + "fields": null, + "inputFields": [ { - "name": "team_task", + "name": "id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "TeamTask", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_taskEdge", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { - "kind": "OBJECT", - "name": "TeamTaskEdge", + "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": "CreateTeamUserInput", - "description": "Autogenerated input type of CreateTeamUser", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "DestroyAccountSourcePayload", + "description": "Autogenerated return type of DestroyAccountSource", + "fields": [ { - "name": "role", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "deletedId", "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": "team_id", + "name": "source", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "Source", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyAnnotationInput", + "description": "Autogenerated input type of DestroyAnnotation", + "fields": null, + "inputFields": [ { - "name": "status", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -17392,8 +18020,8 @@ }, { "kind": "OBJECT", - "name": "CreateTeamUserPayload", - "description": "Autogenerated return type of CreateTeamUser", + "name": "DestroyAnnotationPayload", + "description": "Autogenerated return type of DestroyAnnotation", "fields": [ { "name": "clientMutationId", @@ -17410,56 +18038,70 @@ "deprecationReason": null }, { - "name": "team", + "name": "deletedId", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_user", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TeamUser", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_userEdge", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TeamUserEdge", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", + "name": "task", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "User", + "name": "Task", "ofType": null }, "isDeprecated": false, @@ -17475,16 +18117,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateTiplineNewsletterInput", - "description": "Autogenerated input type of CreateTiplineNewsletter", + "name": "DestroyCommentInput", + "description": "Autogenerated input type of DestroyComment", "fields": null, "inputFields": [ { - "name": "enabled", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17492,8 +18134,8 @@ "deprecationReason": null }, { - "name": "introduction", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", "name": "String", @@ -17502,169 +18144,135 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DestroyCommentPayload", + "description": "Autogenerated return type of DestroyComment", + "fields": [ { - "name": "language", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "header_type", + "name": "deletedId", "description": null, + "args": [ + + ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "header_overlay_text", + "name": "project", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "content_type", + "name": "project_media", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rss_feed_url", + "name": "source", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Source", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "number_of_articles", + "name": "task", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Task", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "first_article", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "second_article", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "third_article", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "footer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "send_every", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "send_on", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timezone", + "name": "version", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Version", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyDynamicAnnotationArchiveOrgInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationArchiveOrg", + "fields": null, + "inputFields": [ { - "name": "time", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17690,8 +18298,8 @@ }, { "kind": "OBJECT", - "name": "CreateTiplineNewsletterPayload", - "description": "Autogenerated return type of CreateTiplineNewsletter", + "name": "DestroyDynamicAnnotationArchiveOrgPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationArchiveOrg", "fields": [ { "name": "clientMutationId", @@ -17708,42 +18316,56 @@ "deprecationReason": null }, { - "name": "team", + "name": "deletedId", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tipline_newsletter", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TiplineNewsletter", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tipline_newsletterEdge", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "TiplineNewsletterEdge", + "name": "Source", "ofType": null }, "isDeprecated": false, @@ -17759,114 +18381,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateUserInput", - "description": "Autogenerated input type of CreateUser", + "name": "DestroyDynamicAnnotationArchiverInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationArchiver", "fields": null, "inputFields": [ { - "name": "profile_image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current_team_id", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "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 - }, - { - "name": "login", - "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": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_confirmation", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -17886,8 +18416,8 @@ }, { "kind": "OBJECT", - "name": "CreateUserPayload", - "description": "Autogenerated return type of CreateUser", + "name": "DestroyDynamicAnnotationArchiverPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationArchiver", "fields": [ { "name": "clientMutationId", @@ -17904,28 +18434,56 @@ "deprecationReason": null }, { - "name": "user", + "name": "deletedId", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "User", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userEdge", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "UserEdge", + "name": "ProjectMedia", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Source", "ofType": null }, "isDeprecated": false, @@ -17941,21 +18499,17 @@ }, { "kind": "INPUT_OBJECT", - "name": "DeleteCheckUserInput", - "description": "Autogenerated input type of DeleteCheckUser", + "name": "DestroyDynamicAnnotationClipInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationClip", "fields": null, "inputFields": [ { "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -17980,8 +18534,8 @@ }, { "kind": "OBJECT", - "name": "DeleteCheckUserPayload", - "description": "Autogenerated return type of DeleteCheckUser", + "name": "DestroyDynamicAnnotationClipPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationClip", "fields": [ { "name": "clientMutationId", @@ -17998,126 +18552,56 @@ "deprecationReason": null }, { - "name": "success", + "name": "deletedId", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamStatusInput", - "description": "Autogenerated input type of DeleteTeamStatus", - "fields": null, - "inputFields": [ - { - "name": "team_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "status_id", + "name": "project", "description": null, + "args": [ + + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Project", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fallback_status_id", + "name": "project_media", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteTeamStatusPayload", - "description": "Autogenerated return type of DeleteTeamStatus", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "Source", "ofType": null }, "isDeprecated": false, @@ -18133,8 +18617,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyAccountSourceInput", - "description": "Autogenerated input type of DestroyAccountSource", + "name": "DestroyDynamicAnnotationEmbedCodeInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationEmbedCode", "fields": null, "inputFields": [ { @@ -18168,8 +18652,8 @@ }, { "kind": "OBJECT", - "name": "DestroyAccountSourcePayload", - "description": "Autogenerated return type of DestroyAccountSource", + "name": "DestroyDynamicAnnotationEmbedCodePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationEmbedCode", "fields": [ { "name": "clientMutationId", @@ -18199,6 +18683,34 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "project", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_media", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ProjectMedia", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "source", "description": null, @@ -18223,8 +18735,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyAnnotationInput", - "description": "Autogenerated input type of DestroyAnnotation", + "name": "DestroyDynamicAnnotationExtractedTextInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationExtractedText", "fields": null, "inputFields": [ { @@ -18258,8 +18770,8 @@ }, { "kind": "OBJECT", - "name": "DestroyAnnotationPayload", - "description": "Autogenerated return type of DestroyAnnotation", + "name": "DestroyDynamicAnnotationExtractedTextPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationExtractedText", "fields": [ { "name": "clientMutationId", @@ -18330,20 +18842,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "task", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -18355,8 +18853,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyCommentInput", - "description": "Autogenerated input type of DestroyComment", + "name": "DestroyDynamicAnnotationFlagInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationFlag", "fields": null, "inputFields": [ { @@ -18390,8 +18888,8 @@ }, { "kind": "OBJECT", - "name": "DestroyCommentPayload", - "description": "Autogenerated return type of DestroyComment", + "name": "DestroyDynamicAnnotationFlagPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationFlag", "fields": [ { "name": "clientMutationId", @@ -18462,34 +18960,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "task", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -18501,8 +18971,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationAnalysisInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationAnalysis", + "name": "DestroyDynamicAnnotationGeolocationInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationGeolocation", "fields": null, "inputFields": [ { @@ -18536,8 +19006,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationAnalysisPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationAnalysis", + "name": "DestroyDynamicAnnotationGeolocationPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationGeolocation", "fields": [ { "name": "clientMutationId", @@ -18619,8 +19089,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationArchiverInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationArchiver", + "name": "DestroyDynamicAnnotationKeepBackupInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationKeepBackup", "fields": null, "inputFields": [ { @@ -18654,8 +19124,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationArchiverPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationArchiver", + "name": "DestroyDynamicAnnotationKeepBackupPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationKeepBackup", "fields": [ { "name": "clientMutationId", @@ -18737,8 +19207,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationClipInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationClip", + "name": "DestroyDynamicAnnotationLanguageInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationLanguage", "fields": null, "inputFields": [ { @@ -18772,8 +19242,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationClipPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationClip", + "name": "DestroyDynamicAnnotationLanguagePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationLanguage", "fields": [ { "name": "clientMutationId", @@ -18855,8 +19325,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationEmbedCodeInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationEmbedCode", + "name": "DestroyDynamicAnnotationMetadataInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationMetadata", "fields": null, "inputFields": [ { @@ -18890,8 +19360,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationEmbedCodePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationEmbedCode", + "name": "DestroyDynamicAnnotationMetadataPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationMetadata", "fields": [ { "name": "clientMutationId", @@ -18973,8 +19443,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationExtractedTextInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationExtractedText", + "name": "DestroyDynamicAnnotationMetricsInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationMetrics", "fields": null, "inputFields": [ { @@ -19008,8 +19478,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationExtractedTextPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationExtractedText", + "name": "DestroyDynamicAnnotationMetricsPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationMetrics", "fields": [ { "name": "clientMutationId", @@ -19091,8 +19561,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationFlagInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationFlag", + "name": "DestroyDynamicAnnotationPenderArchiveInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationPenderArchive", "fields": null, "inputFields": [ { @@ -19126,8 +19596,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationFlagPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationFlag", + "name": "DestroyDynamicAnnotationPenderArchivePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationPenderArchive", "fields": [ { "name": "clientMutationId", @@ -19209,8 +19679,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationGeolocationInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationGeolocation", + "name": "DestroyDynamicAnnotationReportDesignInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationReportDesign", "fields": null, "inputFields": [ { @@ -19244,8 +19714,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationGeolocationPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationGeolocation", + "name": "DestroyDynamicAnnotationReportDesignPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationReportDesign", "fields": [ { "name": "clientMutationId", @@ -19327,8 +19797,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationLanguageInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationLanguage", + "name": "DestroyDynamicAnnotationReverseImageInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationReverseImage", "fields": null, "inputFields": [ { @@ -19362,8 +19832,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationLanguagePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationLanguage", + "name": "DestroyDynamicAnnotationReverseImagePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationReverseImage", "fields": [ { "name": "clientMutationId", @@ -19445,8 +19915,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMemebusterInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationMemebuster", + "name": "DestroyDynamicAnnotationSlackMessageInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationSlackMessage", "fields": null, "inputFields": [ { @@ -19480,8 +19950,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMemebusterPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationMemebuster", + "name": "DestroyDynamicAnnotationSlackMessagePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationSlackMessage", "fields": [ { "name": "clientMutationId", @@ -19563,8 +20033,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMetadataInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationMetadata", + "name": "DestroyDynamicAnnotationSmoochInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationSmooch", "fields": null, "inputFields": [ { @@ -19598,8 +20068,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMetadataPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationMetadata", + "name": "DestroyDynamicAnnotationSmoochPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationSmooch", "fields": [ { "name": "clientMutationId", @@ -19681,8 +20151,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMetricsInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationMetrics", + "name": "DestroyDynamicAnnotationSmoochResponseInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationSmoochResponse", "fields": null, "inputFields": [ { @@ -19716,8 +20186,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMetricsPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationMetrics", + "name": "DestroyDynamicAnnotationSmoochResponsePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationSmoochResponse", "fields": [ { "name": "clientMutationId", @@ -19799,8 +20269,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMtInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationMt", + "name": "DestroyDynamicAnnotationSmoochUserInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationSmoochUser", "fields": null, "inputFields": [ { @@ -19834,8 +20304,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMtPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationMt", + "name": "DestroyDynamicAnnotationSmoochUserPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationSmoochUser", "fields": [ { "name": "clientMutationId", @@ -19917,8 +20387,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationReportDesignInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationReportDesign", + "name": "DestroyDynamicAnnotationSyrianArchiveDataInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationSyrianArchiveData", "fields": null, "inputFields": [ { @@ -19952,8 +20422,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationReportDesignPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationReportDesign", + "name": "DestroyDynamicAnnotationSyrianArchiveDataPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationSyrianArchiveData", "fields": [ { "name": "clientMutationId", @@ -20035,8 +20505,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationReverseImageInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationReverseImage", + "name": "DestroyDynamicAnnotationTaskResponseDatetimeInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseDatetime", "fields": null, "inputFields": [ { @@ -20070,8 +20540,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationReverseImagePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationReverseImage", + "name": "DestroyDynamicAnnotationTaskResponseDatetimePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseDatetime", "fields": [ { "name": "clientMutationId", @@ -20153,8 +20623,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationSlackMessageInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationSlackMessage", + "name": "DestroyDynamicAnnotationTaskResponseFileUploadInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseFileUpload", "fields": null, "inputFields": [ { @@ -20188,8 +20658,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationSlackMessagePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationSlackMessage", + "name": "DestroyDynamicAnnotationTaskResponseFileUploadPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseFileUpload", "fields": [ { "name": "clientMutationId", @@ -20271,8 +20741,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationSmoochInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationSmooch", + "name": "DestroyDynamicAnnotationTaskResponseFreeTextInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseFreeText", "fields": null, "inputFields": [ { @@ -20306,8 +20776,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationSmoochPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationSmooch", + "name": "DestroyDynamicAnnotationTaskResponseFreeTextPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseFreeText", "fields": [ { "name": "clientMutationId", @@ -20389,8 +20859,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationSmoochResponseInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationSmoochResponse", + "name": "DestroyDynamicAnnotationTaskResponseGeolocationInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseGeolocation", "fields": null, "inputFields": [ { @@ -20424,8 +20894,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationSmoochResponsePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationSmoochResponse", + "name": "DestroyDynamicAnnotationTaskResponseGeolocationPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseGeolocation", "fields": [ { "name": "clientMutationId", @@ -20507,8 +20977,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationSmoochUserInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationSmoochUser", + "name": "DestroyDynamicAnnotationTaskResponseMultipleChoiceInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseMultipleChoice", "fields": null, "inputFields": [ { @@ -20542,8 +21012,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationSmoochUserPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationSmoochUser", + "name": "DestroyDynamicAnnotationTaskResponseMultipleChoicePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseMultipleChoice", "fields": [ { "name": "clientMutationId", @@ -20625,8 +21095,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationSyrianArchiveDataInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationSyrianArchiveData", + "name": "DestroyDynamicAnnotationTaskResponseNumberInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseNumber", "fields": null, "inputFields": [ { @@ -20660,8 +21130,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationSyrianArchiveDataPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationSyrianArchiveData", + "name": "DestroyDynamicAnnotationTaskResponseNumberPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseNumber", "fields": [ { "name": "clientMutationId", @@ -20743,8 +21213,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseDatetimeInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseDatetime", + "name": "DestroyDynamicAnnotationTaskResponseSingleChoiceInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseSingleChoice", "fields": null, "inputFields": [ { @@ -20778,8 +21248,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseDatetimePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseDatetime", + "name": "DestroyDynamicAnnotationTaskResponseSingleChoicePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseSingleChoice", "fields": [ { "name": "clientMutationId", @@ -20861,8 +21331,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseFileUploadInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseFileUpload", + "name": "DestroyDynamicAnnotationTaskResponseUrlInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseUrl", "fields": null, "inputFields": [ { @@ -20896,8 +21366,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseFileUploadPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseFileUpload", + "name": "DestroyDynamicAnnotationTaskResponseUrlPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseUrl", "fields": [ { "name": "clientMutationId", @@ -20979,8 +21449,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseFreeTextInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseFreeText", + "name": "DestroyDynamicAnnotationTaskResponseYesNoInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseYesNo", "fields": null, "inputFields": [ { @@ -21014,8 +21484,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseFreeTextPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseFreeText", + "name": "DestroyDynamicAnnotationTaskResponseYesNoPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseYesNo", "fields": [ { "name": "clientMutationId", @@ -21097,8 +21567,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseGeolocationInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseGeolocation", + "name": "DestroyDynamicAnnotationTaskStatusInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTaskStatus", "fields": null, "inputFields": [ { @@ -21132,8 +21602,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseGeolocationPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseGeolocation", + "name": "DestroyDynamicAnnotationTaskStatusPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTaskStatus", "fields": [ { "name": "clientMutationId", @@ -21215,8 +21685,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseMultipleChoiceInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseMultipleChoice", + "name": "DestroyDynamicAnnotationTattleInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTattle", "fields": null, "inputFields": [ { @@ -21250,8 +21720,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseMultipleChoicePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseMultipleChoice", + "name": "DestroyDynamicAnnotationTattlePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTattle", "fields": [ { "name": "clientMutationId", @@ -21333,8 +21803,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseNumberInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseNumber", + "name": "DestroyDynamicAnnotationTeamBotResponseInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTeamBotResponse", "fields": null, "inputFields": [ { @@ -21368,8 +21838,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseNumberPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseNumber", + "name": "DestroyDynamicAnnotationTeamBotResponsePayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTeamBotResponse", "fields": [ { "name": "clientMutationId", @@ -21451,8 +21921,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseSingleChoiceInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseSingleChoice", + "name": "DestroyDynamicAnnotationTranscriptInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTranscript", "fields": null, "inputFields": [ { @@ -21486,8 +21956,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseSingleChoicePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseSingleChoice", + "name": "DestroyDynamicAnnotationTranscriptPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTranscript", "fields": [ { "name": "clientMutationId", @@ -21569,8 +22039,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseUrlInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseUrl", + "name": "DestroyDynamicAnnotationTranscriptionInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationTranscription", "fields": null, "inputFields": [ { @@ -21604,8 +22074,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseUrlPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseUrl", + "name": "DestroyDynamicAnnotationTranscriptionPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationTranscription", "fields": [ { "name": "clientMutationId", @@ -21687,8 +22157,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseYesNoInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskResponseYesNo", + "name": "DestroyDynamicAnnotationVerificationStatusInput", + "description": "Autogenerated input type of DestroyDynamicAnnotationVerificationStatus", "fields": null, "inputFields": [ { @@ -21722,8 +22192,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskResponseYesNoPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskResponseYesNo", + "name": "DestroyDynamicAnnotationVerificationStatusPayload", + "description": "Autogenerated return type of DestroyDynamicAnnotationVerificationStatus", "fields": [ { "name": "clientMutationId", @@ -21805,8 +22275,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTaskStatusInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTaskStatus", + "name": "DestroyDynamicInput", + "description": "Autogenerated input type of DestroyDynamic", "fields": null, "inputFields": [ { @@ -21840,8 +22310,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTaskStatusPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTaskStatus", + "name": "DestroyDynamicPayload", + "description": "Autogenerated return type of DestroyDynamic", "fields": [ { "name": "clientMutationId", @@ -21912,6 +22382,34 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "task", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Task", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "Version", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -21923,8 +22421,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTeamBotResponseInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTeamBotResponse", + "name": "DestroyFactCheckInput", + "description": "Autogenerated input type of DestroyFactCheck", "fields": null, "inputFields": [ { @@ -21958,74 +22456,46 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTeamBotResponsePayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTeamBotResponse", + "name": "DestroyFactCheckPayload", + "description": "Autogenerated return type of DestroyFactCheck", "fields": [ { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", + "name": "claim_description", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ClaimDescription", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "deletedId", "description": null, "args": [ ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -22041,8 +22511,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranscriptInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTranscript", + "name": "DestroyProjectGroupInput", + "description": "Autogenerated input type of DestroyProjectGroup", "fields": null, "inputFields": [ { @@ -22076,8 +22546,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranscriptPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTranscript", + "name": "DestroyProjectGroupPayload", + "description": "Autogenerated return type of DestroyProjectGroup", "fields": [ { "name": "clientMutationId", @@ -22108,59 +22578,78 @@ "deprecationReason": null }, { - "name": "project", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyProjectInput", + "description": "Autogenerated input type of DestroyProject", + "fields": null, + "inputFields": [ { - "name": "project_media", + "name": "id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "items_destination_project_id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "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": "DestroyDynamicAnnotationTranscriptionInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTranscription", + "name": "DestroyProjectMediaInput", + "description": "Autogenerated input type of DestroyProjectMedia", "fields": null, "inputFields": [ { @@ -22194,157 +22683,151 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranscriptionPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTranscription", + "name": "DestroyProjectMediaPayload", + "description": "Autogenerated return type of DestroyProjectMedia", "fields": [ { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "check_search_project", + "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedId", + "name": "check_search_project_was", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "check_search_spam", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "check_search_team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "check_search_trash", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTranslation", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "check_search_unconfirmed", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTranslation", - "fields": [ + }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "deletedId", + "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedId", + "name": "project", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "project_group", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "ProjectGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_was", "description": null, "args": [ @@ -22358,7 +22841,7 @@ "deprecationReason": null }, { - "name": "project_media", + "name": "related_to", "description": null, "args": [ @@ -22372,14 +22855,14 @@ "deprecationReason": null }, { - "name": "source", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -22395,8 +22878,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationRequestInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTranslationRequest", + "name": "DestroyProjectMediaUserInput", + "description": "Autogenerated input type of DestroyProjectMediaUser", "fields": null, "inputFields": [ { @@ -22430,8 +22913,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationRequestPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTranslationRequest", + "name": "DestroyProjectMediaUserPayload", + "description": "Autogenerated return type of DestroyProjectMediaUser", "fields": [ { "name": "clientMutationId", @@ -22461,20 +22944,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "project_media", "description": null, @@ -22488,20 +22957,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -22512,110 +22967,103 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationStatusInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationTranslationStatus", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "DestroyProjectPayload", + "description": "Autogenerated return type of DestroyProject", + "fields": [ { - "name": "id", + "name": "check_search_team", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", + "args": [ + + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationStatusPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationTranslationStatus", - "fields": [ + }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "deletedId", + "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedId", + "name": "previous_default_project", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "project_group", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectGroup", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "project_group_was", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "ProjectGroup", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -22631,8 +23079,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationVerificationStatusInput", - "description": "Autogenerated input type of DestroyDynamicAnnotationVerificationStatus", + "name": "DestroyRelationshipInput", + "description": "Autogenerated input type of DestroyRelationship", "fields": null, "inputFields": [ { @@ -22647,6 +23095,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "archive_target", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -22666,8 +23126,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationVerificationStatusPayload", - "description": "Autogenerated return type of DestroyDynamicAnnotationVerificationStatus", + "name": "DestroyRelationshipPayload", + "description": "Autogenerated return type of DestroyRelationship", "fields": [ { "name": "clientMutationId", @@ -22698,21 +23158,7 @@ "deprecationReason": null }, { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", + "name": "source_project_media", "description": null, "args": [ @@ -22726,14 +23172,14 @@ "deprecationReason": null }, { - "name": "source", + "name": "target_project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, @@ -22749,17 +23195,41 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicInput", - "description": "Autogenerated input type of DestroyDynamic", + "name": "DestroyRelationshipsInput", + "description": "Autogenerated input type of DestroyRelationships", "fields": null, "inputFields": [ { - "name": "id", + "name": "ids", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -22784,8 +23254,8 @@ }, { "kind": "OBJECT", - "name": "DestroyDynamicPayload", - "description": "Autogenerated return type of DestroyDynamic", + "name": "DestroyRelationshipsPayload", + "description": "Autogenerated return type of DestroyRelationships", "fields": [ { "name": "clientMutationId", @@ -22802,84 +23272,122 @@ "deprecationReason": null }, { - "name": "deletedId", + "name": "ids", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "source_project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroySavedSearchInput", + "description": "Autogenerated input type of DestroySavedSearch", + "fields": null, + "inputFields": [ { - "name": "project_media", + "name": "id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "ProjectMedia", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DestroySavedSearchPayload", + "description": "Autogenerated return type of DestroySavedSearch", + "fields": [ + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "Source", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "task", + "name": "deletedId", "description": null, "args": [ ], "type": { - "kind": "OBJECT", - "name": "Task", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Version", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -22895,8 +23403,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyFactCheckInput", - "description": "Autogenerated input type of DestroyFactCheck", + "name": "DestroySourceInput", + "description": "Autogenerated input type of DestroySource", "fields": null, "inputFields": [ { @@ -22930,46 +23438,46 @@ }, { "kind": "OBJECT", - "name": "DestroyFactCheckPayload", - "description": "Autogenerated return type of DestroyFactCheck", + "name": "DestroySourcePayload", + "description": "Autogenerated return type of DestroySource", "fields": [ { - "name": "claim_description", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "ClaimDescription", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "deletedId", + "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedId", + "name": "project_media", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, @@ -22985,8 +23493,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyProjectGroupInput", - "description": "Autogenerated input type of DestroyProjectGroup", + "name": "DestroyTagInput", + "description": "Autogenerated input type of DestroyTag", "fields": null, "inputFields": [ { @@ -23020,8 +23528,8 @@ }, { "kind": "OBJECT", - "name": "DestroyProjectGroupPayload", - "description": "Autogenerated return type of DestroyProjectGroup", + "name": "DestroyTagPayload", + "description": "Autogenerated return type of DestroyTag", "fields": [ { "name": "clientMutationId", @@ -23052,78 +23560,73 @@ "deprecationReason": null }, { - "name": "team", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyProjectInput", - "description": "Autogenerated input type of DestroyProject", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "source", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Source", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "items_destination_project_id", + "name": "tag_text_object", "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TagText", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "team", + "description": null, + "args": [ + + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [ + + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "DestroyProjectMediaInput", - "description": "Autogenerated input type of DestroyProjectMedia", + "name": "DestroyTagTextInput", + "description": "Autogenerated input type of DestroyTagText", "fields": null, "inputFields": [ { @@ -23157,93 +23660,99 @@ }, { "kind": "OBJECT", - "name": "DestroyProjectMediaPayload", - "description": "Autogenerated return type of DestroyProjectMedia", + "name": "DestroyTagTextPayload", + "description": "Autogenerated return type of DestroyTagText", "fields": [ { - "name": "check_search_project", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_project_was", + "name": "deletedId", "description": null, "args": [ ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_spam", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "CheckSearch", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "check_search_team", - "description": null, - "args": [ + } + ], + "inputFields": null, + "interfaces": [ - ], - "type": { - "kind": "OBJECT", - "name": "CheckSearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyTaskInput", + "description": "Autogenerated input type of DestroyTask", + "fields": null, + "inputFields": [ { - "name": "check_search_trash", + "name": "id", "description": null, - "args": [ - - ], "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "check_search_unconfirmed", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { - "kind": "OBJECT", - "name": "CheckSearch", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DestroyTaskPayload", + "description": "Autogenerated return type of DestroyTask", + "fields": [ { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -23287,56 +23796,42 @@ "deprecationReason": null }, { - "name": "project_group", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_was", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "related_to", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "version", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "Version", "ofType": null }, "isDeprecated": false, @@ -23352,8 +23847,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyProjectMediaUserInput", - "description": "Autogenerated input type of DestroyProjectMediaUser", + "name": "DestroyTeamBotInstallationInput", + "description": "Autogenerated input type of DestroyTeamBotInstallation", "fields": null, "inputFields": [ { @@ -23387,9 +23882,23 @@ }, { "kind": "OBJECT", - "name": "DestroyProjectMediaUserPayload", - "description": "Autogenerated return type of DestroyProjectMediaUser", + "name": "DestroyTeamBotInstallationPayload", + "description": "Autogenerated return type of DestroyTeamBotInstallation", "fields": [ + { + "name": "bot_user", + "description": null, + "args": [ + + ], + "type": { + "kind": "OBJECT", + "name": "BotUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -23419,14 +23928,14 @@ "deprecationReason": null }, { - "name": "project_media", + "name": "team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -23440,13 +23949,48 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyTeamInput", + "description": "Autogenerated input type of DestroyTeam", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "DestroyProjectPayload", - "description": "Autogenerated return type of DestroyProject", + "name": "DestroyTeamPayload", + "description": "Autogenerated return type of DestroyTeam", "fields": [ { - "name": "check_search_team", + "name": "check_search_spam", "description": null, "args": [ @@ -23460,84 +24004,84 @@ "deprecationReason": null }, { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", + "name": "check_search_team", + "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletedId", + "name": "check_search_trash", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previous_default_project", + "name": "check_search_unconfirmed", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "CheckSearch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_group", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "ProjectGroup", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_group_was", + "name": "deletedId", "description": null, "args": [ ], "type": { - "kind": "OBJECT", - "name": "ProjectGroup", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "public_team", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "PublicTeam", "ofType": null }, "isDeprecated": false, @@ -23553,8 +24097,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyRelationshipInput", - "description": "Autogenerated input type of DestroyRelationship", + "name": "DestroyTeamTaskInput", + "description": "Autogenerated input type of DestroyTeamTask", "fields": null, "inputFields": [ { @@ -23570,11 +24114,11 @@ "deprecationReason": null }, { - "name": "archive_target", + "name": "keep_completed_tasks", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -23600,230 +24144,8 @@ }, { "kind": "OBJECT", - "name": "DestroyRelationshipPayload", - "description": "Autogenerated return type of DestroyRelationship", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target_project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyRelationshipsInput", - "description": "Autogenerated input type of DestroyRelationships", - "fields": null, - "inputFields": [ - { - "name": "ids", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyRelationshipsPayload", - "description": "Autogenerated return type of DestroyRelationships", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ids", - "description": null, - "args": [ - - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroySavedSearchInput", - "description": "Autogenerated input type of DestroySavedSearch", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroySavedSearchPayload", - "description": "Autogenerated return type of DestroySavedSearch", + "name": "DestroyTeamTaskPayload", + "description": "Autogenerated return type of DestroyTeamTask", "fields": [ { "name": "clientMutationId", @@ -23877,98 +24199,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroySourceInput", - "description": "Autogenerated input type of DestroySource", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroySourcePayload", - "description": "Autogenerated return type of DestroySource", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTagInput", - "description": "Autogenerated input type of DestroyTag", + "name": "DestroyTeamUserInput", + "description": "Autogenerated input type of DestroyTeamUser", "fields": null, "inputFields": [ { @@ -24002,8 +24234,8 @@ }, { "kind": "OBJECT", - "name": "DestroyTagPayload", - "description": "Autogenerated return type of DestroyTag", + "name": "DestroyTeamUserPayload", + "description": "Autogenerated return type of DestroyTeamUser", "fields": [ { "name": "clientMutationId", @@ -24033,48 +24265,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag_text_object", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "TagText", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "team", "description": null, @@ -24088,92 +24278,16 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTagTextInput", - "description": "Autogenerated input type of DestroyTagText", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTagTextPayload", - "description": "Autogenerated return type of DestroyTagText", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "team", + "name": "user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "User", "ofType": null }, "isDeprecated": false, @@ -24189,1500 +24303,47 @@ }, { "kind": "INPUT_OBJECT", - "name": "DestroyTaskInput", - "description": "Autogenerated input type of DestroyTask", + "name": "DestroyUserInput", + "description": "Autogenerated input type of DestroyUser", "fields": null, "inputFields": [ { "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTaskPayload", - "description": "Autogenerated return type of DestroyTask", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTeamBotInstallationInput", - "description": "Autogenerated input type of DestroyTeamBotInstallation", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTeamBotInstallationPayload", - "description": "Autogenerated return type of DestroyTeamBotInstallation", - "fields": [ - { - "name": "bot_user", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "BotUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTeamInput", - "description": "Autogenerated input type of DestroyTeam", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTeamPayload", - "description": "Autogenerated return type of DestroyTeam", - "fields": [ - { - "name": "check_search_spam", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "CheckSearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "check_search_team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "CheckSearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "check_search_trash", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "CheckSearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "check_search_unconfirmed", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "CheckSearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "PublicTeam", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTeamTaskInput", - "description": "Autogenerated input type of DestroyTeamTask", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keep_completed_tasks", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTeamTaskPayload", - "description": "Autogenerated return type of DestroyTeamTask", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyTeamUserInput", - "description": "Autogenerated input type of DestroyTeamUser", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyTeamUserPayload", - "description": "Autogenerated return type of DestroyTeamUser", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DestroyUserInput", - "description": "Autogenerated input type of DestroyUser", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyUserPayload", - "description": "Autogenerated return type of DestroyUser", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "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": "DestroyVersionInput", - "description": "Autogenerated input type of DestroyVersion", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DestroyVersionPayload", - "description": "Autogenerated return type of DestroyVersion", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedId", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DuplicateTeamMutationInput", - "description": "Autogenerated input type of DuplicateTeamMutation", - "fields": null, - "inputFields": [ - { - "name": "team_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom_slug", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DuplicateTeamMutationPayload", - "description": "Autogenerated return type of DuplicateTeamMutation", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dynamic", - "description": null, - "fields": [ - { - "name": "annotated_id", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotation_type", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotations", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotation_type", - "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": "AnnotationUnionConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotator", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Annotator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignments", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dbid", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_data", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [ - - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lock_version", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locked", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "medias", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMediaConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parsed_fragment", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "JsonStringType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sent_count", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DynamicAnnotationField", - "description": "DynamicAnnotation::Field type", - "fields": [ - { - "name": "annotation", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Annotation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associated_graphql_id", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dbid", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [ - - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "smooch_report_received_at", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "smooch_report_update_received_at", - "description": null, - "args": [ - - ], + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smooch_user_external_identifier", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DestroyUserPayload", + "description": "Autogenerated return type of DestroyUser", + "fields": [ { - "name": "smooch_user_request_language", - "description": null, + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], @@ -25695,127 +24356,118 @@ "deprecationReason": null }, { - "name": "smooch_user_slack_channel_url", + "name": "deletedId", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestroyVersionInput", + "description": "Autogenerated input type of DestroyVersion", + "fields": null, + "inputFields": [ { - "name": "updated_at", + "name": "id", "description": null, - "args": [ - - ], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_json", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DynamicAnnotationFieldConnection", - "description": "The connection type for DynamicAnnotationField.", + "name": "DestroyVersionPayload", + "description": "Autogenerated return type of DestroyVersion", "fields": [ { - "name": "edges", - "description": "A list of edges.", + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DynamicAnnotationFieldEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": "A list of nodes.", + "name": "deletedId", + "description": null, "args": [ ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DynamicAnnotationField", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "project_media", + "description": null, "args": [ ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "OBJECT", + "name": "ProjectMedia", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "source", "description": null, "args": [ ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Source", "ofType": null }, "isDeprecated": false, @@ -25830,163 +24482,96 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DynamicAnnotationFieldEdge", - "description": "An edge in a connection.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "DuplicateTeamMutationInput", + "description": "Autogenerated input type of DuplicateTeamMutation", + "fields": null, + "inputFields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [ - - ], + "name": "team_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [ - - ], + "name": "custom_slug", + "description": null, "type": { - "kind": "OBJECT", - "name": "DynamicAnnotationField", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DynamicConnection", - "description": "The connection type for Dynamic.", - "fields": [ - { - "name": "edges", - "description": "A list of edges.", - "args": [ - - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DynamicEdge", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of nodes.", - "args": [ - - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Dynamic", - "ofType": null - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [ - - ], + "name": "custom_name", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", - "description": null, - "args": [ - - ], + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [ - - ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DynamicEdge", - "description": "An edge in a connection.", + "name": "DuplicateTeamMutationPayload", + "description": "Autogenerated return type of DuplicateTeamMutation", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "clientMutationId", + "description": "A unique identifier for the client performing the mutation.", "args": [ ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The item at the end of the edge.", + "name": "team", + "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -26002,7 +24587,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_analysis", + "name": "Dynamic", "description": null, "fields": [ { @@ -26418,6 +25003,20 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "sent_count", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "team", "description": null, @@ -26474,250 +25073,25 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_analysisEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [ - - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_analysis", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dynamic_annotation_archiver", - "description": null, + "name": "DynamicAnnotationField", + "description": "DynamicAnnotation::Field type", "fields": [ { - "name": "annotated_id", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotation_type", - "description": null, - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotations", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotation_type", - "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": "AnnotationUnionConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotator", + "name": "annotation", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Annotator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignments", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserConnection", + "name": "Annotation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "content", + "name": "associated_graphql_id", "description": null, "args": [ @@ -26745,67 +25119,67 @@ "deprecationReason": null }, { - "name": "data", + "name": "dbid", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dbid", + "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": "file_data", + "name": "permissions", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "smooch_report_received_at", "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": "lock_version", + "name": "smooch_report_update_received_at", "description": null, "args": [ @@ -26819,96 +25193,49 @@ "deprecationReason": null }, { - "name": "locked", + "name": "smooch_user_external_identifier", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "medias", + "name": "smooch_user_request_language", "description": null, "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } + ], "type": { - "kind": "OBJECT", - "name": "ProjectMediaConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parsed_fragment", + "name": "smooch_user_slack_channel_url", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "JsonStringType", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", + "name": "updated_at", "description": null, "args": [ @@ -26922,56 +25249,144 @@ "deprecationReason": null }, { - "name": "project", + "name": "value_json", "description": null, "args": [ ], "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "JsonStringType", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DynamicAnnotationFieldConnection", + "description": "The connection type for DynamicAnnotationField.", + "fields": [ + { + "name": "edges", + "description": "A list of edges.", + "args": [ + + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DynamicAnnotationFieldEdge", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team", - "description": null, + "name": "nodes", + "description": "A list of nodes.", "args": [ ], "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DynamicAnnotationField", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [ + + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", "description": null, "args": [ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DynamicAnnotationFieldEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [ + + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", "args": [ ], "type": { "kind": "OBJECT", - "name": "Version", + "name": "DynamicAnnotationField", "ofType": null }, "isDeprecated": false, @@ -26980,18 +25395,95 @@ ], "inputFields": null, "interfaces": [ + + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DynamicConnection", + "description": "The connection type for Dynamic.", + "fields": [ { - "kind": "INTERFACE", - "name": "Node", - "ofType": null + "name": "edges", + "description": "A list of edges.", + "args": [ + + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DynamicEdge", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of nodes.", + "args": [ + + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Dynamic", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [ + + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } + ], + "inputFields": null, + "interfaces": [ + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Dynamic_annotation_archiverEdge", + "name": "DynamicEdge", "description": "An edge in a connection.", "fields": [ { @@ -27020,7 +25512,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_archiver", + "name": "Dynamic", "ofType": null }, "isDeprecated": false, @@ -27036,7 +25528,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_clip", + "name": "Dynamic_annotation_archive_org", "description": null, "fields": [ { @@ -27508,7 +26000,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_clipEdge", + "name": "Dynamic_annotation_archive_orgEdge", "description": "An edge in a connection.", "fields": [ { @@ -27537,7 +26029,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_clip", + "name": "Dynamic_annotation_archive_org", "ofType": null }, "isDeprecated": false, @@ -27553,7 +26045,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_embed_code", + "name": "Dynamic_annotation_archiver", "description": null, "fields": [ { @@ -28025,7 +26517,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_embed_codeEdge", + "name": "Dynamic_annotation_archiverEdge", "description": "An edge in a connection.", "fields": [ { @@ -28054,7 +26546,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_embed_code", + "name": "Dynamic_annotation_archiver", "ofType": null }, "isDeprecated": false, @@ -28070,7 +26562,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_extracted_text", + "name": "Dynamic_annotation_clip", "description": null, "fields": [ { @@ -28542,7 +27034,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_extracted_textEdge", + "name": "Dynamic_annotation_clipEdge", "description": "An edge in a connection.", "fields": [ { @@ -28571,7 +27063,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_extracted_text", + "name": "Dynamic_annotation_clip", "ofType": null }, "isDeprecated": false, @@ -28587,7 +27079,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_flag", + "name": "Dynamic_annotation_embed_code", "description": null, "fields": [ { @@ -29059,7 +27551,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_flagEdge", + "name": "Dynamic_annotation_embed_codeEdge", "description": "An edge in a connection.", "fields": [ { @@ -29088,7 +27580,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_flag", + "name": "Dynamic_annotation_embed_code", "ofType": null }, "isDeprecated": false, @@ -29104,7 +27596,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_geolocation", + "name": "Dynamic_annotation_extracted_text", "description": null, "fields": [ { @@ -29576,7 +28068,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_geolocationEdge", + "name": "Dynamic_annotation_extracted_textEdge", "description": "An edge in a connection.", "fields": [ { @@ -29605,7 +28097,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_geolocation", + "name": "Dynamic_annotation_extracted_text", "ofType": null }, "isDeprecated": false, @@ -29621,7 +28113,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_language", + "name": "Dynamic_annotation_flag", "description": null, "fields": [ { @@ -30093,7 +28585,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_languageEdge", + "name": "Dynamic_annotation_flagEdge", "description": "An edge in a connection.", "fields": [ { @@ -30122,7 +28614,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_language", + "name": "Dynamic_annotation_flag", "ofType": null }, "isDeprecated": false, @@ -30138,7 +28630,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_memebuster", + "name": "Dynamic_annotation_geolocation", "description": null, "fields": [ { @@ -30610,7 +29102,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_memebusterEdge", + "name": "Dynamic_annotation_geolocationEdge", "description": "An edge in a connection.", "fields": [ { @@ -30639,7 +29131,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_memebuster", + "name": "Dynamic_annotation_geolocation", "ofType": null }, "isDeprecated": false, @@ -30655,7 +29147,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_metadata", + "name": "Dynamic_annotation_keep_backup", "description": null, "fields": [ { @@ -31127,7 +29619,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_metadataEdge", + "name": "Dynamic_annotation_keep_backupEdge", "description": "An edge in a connection.", "fields": [ { @@ -31156,7 +29648,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metadata", + "name": "Dynamic_annotation_keep_backup", "ofType": null }, "isDeprecated": false, @@ -31172,7 +29664,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_metrics", + "name": "Dynamic_annotation_language", "description": null, "fields": [ { @@ -31644,7 +30136,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_metricsEdge", + "name": "Dynamic_annotation_languageEdge", "description": "An edge in a connection.", "fields": [ { @@ -31673,7 +30165,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metrics", + "name": "Dynamic_annotation_language", "ofType": null }, "isDeprecated": false, @@ -31689,7 +30181,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_mt", + "name": "Dynamic_annotation_metadata", "description": null, "fields": [ { @@ -32161,7 +30653,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_mtEdge", + "name": "Dynamic_annotation_metadataEdge", "description": "An edge in a connection.", "fields": [ { @@ -32190,7 +30682,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_mt", + "name": "Dynamic_annotation_metadata", "ofType": null }, "isDeprecated": false, @@ -32206,7 +30698,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_report_design", + "name": "Dynamic_annotation_metrics", "description": null, "fields": [ { @@ -32678,7 +31170,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_report_designEdge", + "name": "Dynamic_annotation_metricsEdge", "description": "An edge in a connection.", "fields": [ { @@ -32707,7 +31199,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_report_design", + "name": "Dynamic_annotation_metrics", "ofType": null }, "isDeprecated": false, @@ -32723,7 +31215,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_reverse_image", + "name": "Dynamic_annotation_pender_archive", "description": null, "fields": [ { @@ -33195,7 +31687,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_reverse_imageEdge", + "name": "Dynamic_annotation_pender_archiveEdge", "description": "An edge in a connection.", "fields": [ { @@ -33224,7 +31716,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_reverse_image", + "name": "Dynamic_annotation_pender_archive", "ofType": null }, "isDeprecated": false, @@ -33240,7 +31732,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_slack_message", + "name": "Dynamic_annotation_report_design", "description": null, "fields": [ { @@ -33712,7 +32204,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_slack_messageEdge", + "name": "Dynamic_annotation_report_designEdge", "description": "An edge in a connection.", "fields": [ { @@ -33741,7 +32233,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_slack_message", + "name": "Dynamic_annotation_report_design", "ofType": null }, "isDeprecated": false, @@ -33757,7 +32249,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch", + "name": "Dynamic_annotation_reverse_image", "description": null, "fields": [ { @@ -34229,7 +32721,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smoochEdge", + "name": "Dynamic_annotation_reverse_imageEdge", "description": "An edge in a connection.", "fields": [ { @@ -34258,7 +32750,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch", + "name": "Dynamic_annotation_reverse_image", "ofType": null }, "isDeprecated": false, @@ -34274,7 +32766,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_response", + "name": "Dynamic_annotation_slack_message", "description": null, "fields": [ { @@ -34746,7 +33238,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_responseEdge", + "name": "Dynamic_annotation_slack_messageEdge", "description": "An edge in a connection.", "fields": [ { @@ -34775,7 +33267,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_response", + "name": "Dynamic_annotation_slack_message", "ofType": null }, "isDeprecated": false, @@ -34791,7 +33283,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_user", + "name": "Dynamic_annotation_smooch", "description": null, "fields": [ { @@ -35263,7 +33755,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_userEdge", + "name": "Dynamic_annotation_smoochEdge", "description": "An edge in a connection.", "fields": [ { @@ -35292,7 +33784,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_user", + "name": "Dynamic_annotation_smooch", "ofType": null }, "isDeprecated": false, @@ -35308,7 +33800,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_syrian_archive_data", + "name": "Dynamic_annotation_smooch_response", "description": null, "fields": [ { @@ -35780,7 +34272,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_syrian_archive_dataEdge", + "name": "Dynamic_annotation_smooch_responseEdge", "description": "An edge in a connection.", "fields": [ { @@ -35809,7 +34301,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_syrian_archive_data", + "name": "Dynamic_annotation_smooch_response", "ofType": null }, "isDeprecated": false, @@ -35825,7 +34317,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_datetime", + "name": "Dynamic_annotation_smooch_user", "description": null, "fields": [ { @@ -36297,7 +34789,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_datetimeEdge", + "name": "Dynamic_annotation_smooch_userEdge", "description": "An edge in a connection.", "fields": [ { @@ -36326,7 +34818,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_datetime", + "name": "Dynamic_annotation_smooch_user", "ofType": null }, "isDeprecated": false, @@ -36342,7 +34834,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_file_upload", + "name": "Dynamic_annotation_syrian_archive_data", "description": null, "fields": [ { @@ -36814,7 +35306,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_file_uploadEdge", + "name": "Dynamic_annotation_syrian_archive_dataEdge", "description": "An edge in a connection.", "fields": [ { @@ -36843,7 +35335,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_file_upload", + "name": "Dynamic_annotation_syrian_archive_data", "ofType": null }, "isDeprecated": false, @@ -36859,7 +35351,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_free_text", + "name": "Dynamic_annotation_task_response_datetime", "description": null, "fields": [ { @@ -37331,7 +35823,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_free_textEdge", + "name": "Dynamic_annotation_task_response_datetimeEdge", "description": "An edge in a connection.", "fields": [ { @@ -37360,7 +35852,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_free_text", + "name": "Dynamic_annotation_task_response_datetime", "ofType": null }, "isDeprecated": false, @@ -37376,7 +35868,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_geolocation", + "name": "Dynamic_annotation_task_response_file_upload", "description": null, "fields": [ { @@ -37848,7 +36340,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_geolocationEdge", + "name": "Dynamic_annotation_task_response_file_uploadEdge", "description": "An edge in a connection.", "fields": [ { @@ -37877,7 +36369,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_geolocation", + "name": "Dynamic_annotation_task_response_file_upload", "ofType": null }, "isDeprecated": false, @@ -37893,7 +36385,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_multiple_choice", + "name": "Dynamic_annotation_task_response_free_text", "description": null, "fields": [ { @@ -38365,7 +36857,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_multiple_choiceEdge", + "name": "Dynamic_annotation_task_response_free_textEdge", "description": "An edge in a connection.", "fields": [ { @@ -38394,7 +36886,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_multiple_choice", + "name": "Dynamic_annotation_task_response_free_text", "ofType": null }, "isDeprecated": false, @@ -38410,7 +36902,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_number", + "name": "Dynamic_annotation_task_response_geolocation", "description": null, "fields": [ { @@ -38882,7 +37374,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_numberEdge", + "name": "Dynamic_annotation_task_response_geolocationEdge", "description": "An edge in a connection.", "fields": [ { @@ -38911,7 +37403,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_number", + "name": "Dynamic_annotation_task_response_geolocation", "ofType": null }, "isDeprecated": false, @@ -38927,7 +37419,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_single_choice", + "name": "Dynamic_annotation_task_response_multiple_choice", "description": null, "fields": [ { @@ -39399,7 +37891,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_single_choiceEdge", + "name": "Dynamic_annotation_task_response_multiple_choiceEdge", "description": "An edge in a connection.", "fields": [ { @@ -39428,7 +37920,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_single_choice", + "name": "Dynamic_annotation_task_response_multiple_choice", "ofType": null }, "isDeprecated": false, @@ -39444,7 +37936,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_url", + "name": "Dynamic_annotation_task_response_number", "description": null, "fields": [ { @@ -39916,7 +38408,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_urlEdge", + "name": "Dynamic_annotation_task_response_numberEdge", "description": "An edge in a connection.", "fields": [ { @@ -39945,7 +38437,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_url", + "name": "Dynamic_annotation_task_response_number", "ofType": null }, "isDeprecated": false, @@ -39961,7 +38453,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_yes_no", + "name": "Dynamic_annotation_task_response_single_choice", "description": null, "fields": [ { @@ -40433,7 +38925,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_yes_noEdge", + "name": "Dynamic_annotation_task_response_single_choiceEdge", "description": "An edge in a connection.", "fields": [ { @@ -40462,7 +38954,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_yes_no", + "name": "Dynamic_annotation_task_response_single_choice", "ofType": null }, "isDeprecated": false, @@ -40478,7 +38970,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_status", + "name": "Dynamic_annotation_task_response_url", "description": null, "fields": [ { @@ -40950,7 +39442,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_task_statusEdge", + "name": "Dynamic_annotation_task_response_urlEdge", "description": "An edge in a connection.", "fields": [ { @@ -40979,7 +39471,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_status", + "name": "Dynamic_annotation_task_response_url", "ofType": null }, "isDeprecated": false, @@ -40995,7 +39487,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_response", + "name": "Dynamic_annotation_task_response_yes_no", "description": null, "fields": [ { @@ -41467,7 +39959,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_responseEdge", + "name": "Dynamic_annotation_task_response_yes_noEdge", "description": "An edge in a connection.", "fields": [ { @@ -41496,7 +39988,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_response", + "name": "Dynamic_annotation_task_response_yes_no", "ofType": null }, "isDeprecated": false, @@ -41512,7 +40004,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_transcript", + "name": "Dynamic_annotation_task_status", "description": null, "fields": [ { @@ -41984,7 +40476,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_transcriptEdge", + "name": "Dynamic_annotation_task_statusEdge", "description": "An edge in a connection.", "fields": [ { @@ -42013,7 +40505,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcript", + "name": "Dynamic_annotation_task_status", "ofType": null }, "isDeprecated": false, @@ -42029,7 +40521,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_transcription", + "name": "Dynamic_annotation_tattle", "description": null, "fields": [ { @@ -42501,7 +40993,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_transcriptionEdge", + "name": "Dynamic_annotation_tattleEdge", "description": "An edge in a connection.", "fields": [ { @@ -42530,7 +41022,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcription", + "name": "Dynamic_annotation_tattle", "ofType": null }, "isDeprecated": false, @@ -42546,7 +41038,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation", + "name": "Dynamic_annotation_team_bot_response", "description": null, "fields": [ { @@ -43018,7 +41510,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translationEdge", + "name": "Dynamic_annotation_team_bot_responseEdge", "description": "An edge in a connection.", "fields": [ { @@ -43047,7 +41539,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation", + "name": "Dynamic_annotation_team_bot_response", "ofType": null }, "isDeprecated": false, @@ -43063,7 +41555,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_request", + "name": "Dynamic_annotation_transcript", "description": null, "fields": [ { @@ -43535,7 +42027,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_requestEdge", + "name": "Dynamic_annotation_transcriptEdge", "description": "An edge in a connection.", "fields": [ { @@ -43564,7 +42056,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_request", + "name": "Dynamic_annotation_transcript", "ofType": null }, "isDeprecated": false, @@ -43580,7 +42072,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_status", + "name": "Dynamic_annotation_transcription", "description": null, "fields": [ { @@ -44052,7 +42544,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_statusEdge", + "name": "Dynamic_annotation_transcriptionEdge", "description": "An edge in a connection.", "fields": [ { @@ -44081,7 +42573,7 @@ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_status", + "name": "Dynamic_annotation_transcription", "ofType": null }, "isDeprecated": false, @@ -47250,6 +45742,35 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "bulkProjectMediaUpdateStatus", + "description": "Update status for multiple items.", + "args": [ + { + "name": "input", + "description": "Parameters for BulkProjectMediaUpdateStatus", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BulkProjectMediaUpdateStatusInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BulkProjectMediaUpdateStatusPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "changePassword", "description": null, @@ -47425,18 +45946,18 @@ "deprecationReason": null }, { - "name": "createDynamicAnnotationAnalysis", + "name": "createDynamicAnnotationArchiveOrg", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationAnalysis", + "description": "Parameters for CreateDynamicAnnotationArchiveOrg", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationAnalysisInput", + "name": "CreateDynamicAnnotationArchiveOrgInput", "ofType": null } }, @@ -47447,7 +45968,7 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationAnalysisPayload", + "name": "CreateDynamicAnnotationArchiveOrgPayload", "ofType": null }, "isDeprecated": false, @@ -47628,18 +46149,18 @@ "deprecationReason": null }, { - "name": "createDynamicAnnotationLanguage", + "name": "createDynamicAnnotationKeepBackup", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationLanguage", + "description": "Parameters for CreateDynamicAnnotationKeepBackup", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationLanguageInput", + "name": "CreateDynamicAnnotationKeepBackupInput", "ofType": null } }, @@ -47650,25 +46171,25 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationLanguagePayload", + "name": "CreateDynamicAnnotationKeepBackupPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createDynamicAnnotationMemebuster", + "name": "createDynamicAnnotationLanguage", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationMemebuster", + "description": "Parameters for CreateDynamicAnnotationLanguage", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationMemebusterInput", + "name": "CreateDynamicAnnotationLanguageInput", "ofType": null } }, @@ -47679,7 +46200,7 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationMemebusterPayload", + "name": "CreateDynamicAnnotationLanguagePayload", "ofType": null }, "isDeprecated": false, @@ -47744,18 +46265,18 @@ "deprecationReason": null }, { - "name": "createDynamicAnnotationMt", + "name": "createDynamicAnnotationPenderArchive", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationMt", + "description": "Parameters for CreateDynamicAnnotationPenderArchive", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationMtInput", + "name": "CreateDynamicAnnotationPenderArchiveInput", "ofType": null } }, @@ -47766,7 +46287,7 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationMtPayload", + "name": "CreateDynamicAnnotationPenderArchivePayload", "ofType": null }, "isDeprecated": false, @@ -48266,47 +46787,18 @@ "deprecationReason": null }, { - "name": "createDynamicAnnotationTeamBotResponse", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for CreateDynamicAnnotationTeamBotResponse", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTeamBotResponseInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateDynamicAnnotationTeamBotResponsePayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDynamicAnnotationTranscript", + "name": "createDynamicAnnotationTattle", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationTranscript", + "description": "Parameters for CreateDynamicAnnotationTattle", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranscriptInput", + "name": "CreateDynamicAnnotationTattleInput", "ofType": null } }, @@ -48317,54 +46809,25 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranscriptPayload", + "name": "CreateDynamicAnnotationTattlePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createDynamicAnnotationTranscription", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for CreateDynamicAnnotationTranscription", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranscriptionInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDynamicAnnotationTranslation", + "name": "createDynamicAnnotationTeamBotResponse", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationTranslation", + "description": "Parameters for CreateDynamicAnnotationTeamBotResponse", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationInput", + "name": "CreateDynamicAnnotationTeamBotResponseInput", "ofType": null } }, @@ -48375,25 +46838,25 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationPayload", + "name": "CreateDynamicAnnotationTeamBotResponsePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createDynamicAnnotationTranslationRequest", + "name": "createDynamicAnnotationTranscript", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationTranslationRequest", + "description": "Parameters for CreateDynamicAnnotationTranscript", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationRequestInput", + "name": "CreateDynamicAnnotationTranscriptInput", "ofType": null } }, @@ -48404,25 +46867,25 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationRequestPayload", + "name": "CreateDynamicAnnotationTranscriptPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createDynamicAnnotationTranslationStatus", + "name": "createDynamicAnnotationTranscription", "description": null, "args": [ { "name": "input", - "description": "Parameters for CreateDynamicAnnotationTranslationStatus", + "description": "Parameters for CreateDynamicAnnotationTranscription", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CreateDynamicAnnotationTranslationStatusInput", + "name": "CreateDynamicAnnotationTranscriptionInput", "ofType": null } }, @@ -48433,7 +46896,7 @@ ], "type": { "kind": "OBJECT", - "name": "CreateDynamicAnnotationTranslationStatusPayload", + "name": "CreateDynamicAnnotationTranscriptionPayload", "ofType": null }, "isDeprecated": false, @@ -49194,18 +47657,18 @@ "deprecationReason": null }, { - "name": "destroyDynamicAnnotationAnalysis", + "name": "destroyDynamicAnnotationArchiveOrg", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationAnalysis", + "description": "Parameters for DestroyDynamicAnnotationArchiveOrg", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationAnalysisInput", + "name": "DestroyDynamicAnnotationArchiveOrgInput", "ofType": null } }, @@ -49216,7 +47679,7 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationAnalysisPayload", + "name": "DestroyDynamicAnnotationArchiveOrgPayload", "ofType": null }, "isDeprecated": false, @@ -49397,18 +47860,18 @@ "deprecationReason": null }, { - "name": "destroyDynamicAnnotationLanguage", + "name": "destroyDynamicAnnotationKeepBackup", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationLanguage", + "description": "Parameters for DestroyDynamicAnnotationKeepBackup", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationLanguageInput", + "name": "DestroyDynamicAnnotationKeepBackupInput", "ofType": null } }, @@ -49419,25 +47882,25 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationLanguagePayload", + "name": "DestroyDynamicAnnotationKeepBackupPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "destroyDynamicAnnotationMemebuster", + "name": "destroyDynamicAnnotationLanguage", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationMemebuster", + "description": "Parameters for DestroyDynamicAnnotationLanguage", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMemebusterInput", + "name": "DestroyDynamicAnnotationLanguageInput", "ofType": null } }, @@ -49448,7 +47911,7 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMemebusterPayload", + "name": "DestroyDynamicAnnotationLanguagePayload", "ofType": null }, "isDeprecated": false, @@ -49513,18 +47976,18 @@ "deprecationReason": null }, { - "name": "destroyDynamicAnnotationMt", + "name": "destroyDynamicAnnotationPenderArchive", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationMt", + "description": "Parameters for DestroyDynamicAnnotationPenderArchive", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationMtInput", + "name": "DestroyDynamicAnnotationPenderArchiveInput", "ofType": null } }, @@ -49535,7 +47998,7 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationMtPayload", + "name": "DestroyDynamicAnnotationPenderArchivePayload", "ofType": null }, "isDeprecated": false, @@ -50035,18 +48498,18 @@ "deprecationReason": null }, { - "name": "destroyDynamicAnnotationTeamBotResponse", + "name": "destroyDynamicAnnotationTattle", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTeamBotResponse", + "description": "Parameters for DestroyDynamicAnnotationTattle", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTeamBotResponseInput", + "name": "DestroyDynamicAnnotationTattleInput", "ofType": null } }, @@ -50057,83 +48520,25 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTeamBotResponsePayload", + "name": "DestroyDynamicAnnotationTattlePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "destroyDynamicAnnotationTranscript", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTranscript", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranscriptInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranscriptPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "destroyDynamicAnnotationTranscription", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTranscription", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranscriptionInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "destroyDynamicAnnotationTranslation", + "name": "destroyDynamicAnnotationTeamBotResponse", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTranslation", + "description": "Parameters for DestroyDynamicAnnotationTeamBotResponse", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationInput", + "name": "DestroyDynamicAnnotationTeamBotResponseInput", "ofType": null } }, @@ -50144,25 +48549,25 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationPayload", + "name": "DestroyDynamicAnnotationTeamBotResponsePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "destroyDynamicAnnotationTranslationRequest", + "name": "destroyDynamicAnnotationTranscript", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTranslationRequest", + "description": "Parameters for DestroyDynamicAnnotationTranscript", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationRequestInput", + "name": "DestroyDynamicAnnotationTranscriptInput", "ofType": null } }, @@ -50173,25 +48578,25 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationRequestPayload", + "name": "DestroyDynamicAnnotationTranscriptPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "destroyDynamicAnnotationTranslationStatus", + "name": "destroyDynamicAnnotationTranscription", "description": null, "args": [ { "name": "input", - "description": "Parameters for DestroyDynamicAnnotationTranslationStatus", + "description": "Parameters for DestroyDynamicAnnotationTranscription", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DestroyDynamicAnnotationTranslationStatusInput", + "name": "DestroyDynamicAnnotationTranscriptionInput", "ofType": null } }, @@ -50202,7 +48607,7 @@ ], "type": { "kind": "OBJECT", - "name": "DestroyDynamicAnnotationTranslationStatusPayload", + "name": "DestroyDynamicAnnotationTranscriptionPayload", "ofType": null }, "isDeprecated": false, @@ -51398,18 +49803,18 @@ "deprecationReason": null }, { - "name": "updateDynamicAnnotationAnalysis", + "name": "updateDynamicAnnotationArchiveOrg", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationAnalysis", + "description": "Parameters for UpdateDynamicAnnotationArchiveOrg", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationAnalysisInput", + "name": "UpdateDynamicAnnotationArchiveOrgInput", "ofType": null } }, @@ -51420,7 +49825,7 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationAnalysisPayload", + "name": "UpdateDynamicAnnotationArchiveOrgPayload", "ofType": null }, "isDeprecated": false, @@ -51601,18 +50006,18 @@ "deprecationReason": null }, { - "name": "updateDynamicAnnotationLanguage", + "name": "updateDynamicAnnotationKeepBackup", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationLanguage", + "description": "Parameters for UpdateDynamicAnnotationKeepBackup", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationLanguageInput", + "name": "UpdateDynamicAnnotationKeepBackupInput", "ofType": null } }, @@ -51623,25 +50028,25 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationLanguagePayload", + "name": "UpdateDynamicAnnotationKeepBackupPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateDynamicAnnotationMemebuster", + "name": "updateDynamicAnnotationLanguage", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationMemebuster", + "description": "Parameters for UpdateDynamicAnnotationLanguage", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMemebusterInput", + "name": "UpdateDynamicAnnotationLanguageInput", "ofType": null } }, @@ -51652,7 +50057,7 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMemebusterPayload", + "name": "UpdateDynamicAnnotationLanguagePayload", "ofType": null }, "isDeprecated": false, @@ -51717,18 +50122,18 @@ "deprecationReason": null }, { - "name": "updateDynamicAnnotationMt", + "name": "updateDynamicAnnotationPenderArchive", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationMt", + "description": "Parameters for UpdateDynamicAnnotationPenderArchive", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMtInput", + "name": "UpdateDynamicAnnotationPenderArchiveInput", "ofType": null } }, @@ -51739,7 +50144,7 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMtPayload", + "name": "UpdateDynamicAnnotationPenderArchivePayload", "ofType": null }, "isDeprecated": false, @@ -52239,76 +50644,18 @@ "deprecationReason": null }, { - "name": "updateDynamicAnnotationTeamBotResponse", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTeamBotResponse", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTeamBotResponseInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTeamBotResponsePayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDynamicAnnotationTranscript", - "description": null, - "args": [ - { - "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTranscript", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranscriptInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranscriptPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDynamicAnnotationTranscription", + "name": "updateDynamicAnnotationTattle", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTranscription", + "description": "Parameters for UpdateDynamicAnnotationTattle", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranscriptionInput", + "name": "UpdateDynamicAnnotationTattleInput", "ofType": null } }, @@ -52319,25 +50666,25 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranscriptionPayload", + "name": "UpdateDynamicAnnotationTattlePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateDynamicAnnotationTranslation", + "name": "updateDynamicAnnotationTeamBotResponse", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTranslation", + "description": "Parameters for UpdateDynamicAnnotationTeamBotResponse", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationInput", + "name": "UpdateDynamicAnnotationTeamBotResponseInput", "ofType": null } }, @@ -52348,25 +50695,25 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationPayload", + "name": "UpdateDynamicAnnotationTeamBotResponsePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateDynamicAnnotationTranslationRequest", + "name": "updateDynamicAnnotationTranscript", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTranslationRequest", + "description": "Parameters for UpdateDynamicAnnotationTranscript", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationRequestInput", + "name": "UpdateDynamicAnnotationTranscriptInput", "ofType": null } }, @@ -52377,25 +50724,25 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationRequestPayload", + "name": "UpdateDynamicAnnotationTranscriptPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateDynamicAnnotationTranslationStatus", + "name": "updateDynamicAnnotationTranscription", "description": null, "args": [ { "name": "input", - "description": "Parameters for UpdateDynamicAnnotationTranslationStatus", + "description": "Parameters for UpdateDynamicAnnotationTranscription", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationStatusInput", + "name": "UpdateDynamicAnnotationTranscriptionInput", "ofType": null } }, @@ -52406,7 +50753,7 @@ ], "type": { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationStatusPayload", + "name": "UpdateDynamicAnnotationTranscriptionPayload", "ofType": null }, "isDeprecated": false, @@ -53235,7 +51582,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_analysis", + "name": "Dynamic_annotation_archive_org", "ofType": null }, { @@ -53270,12 +51617,12 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_language", + "name": "Dynamic_annotation_keep_backup", "ofType": null }, { "kind": "OBJECT", - "name": "Dynamic_annotation_memebuster", + "name": "Dynamic_annotation_language", "ofType": null }, { @@ -53290,7 +51637,7 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_mt", + "name": "Dynamic_annotation_pender_archive", "ofType": null }, { @@ -53380,32 +51727,22 @@ }, { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_response", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Dynamic_annotation_transcript", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Dynamic_annotation_transcription", + "name": "Dynamic_annotation_tattle", "ofType": null }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation", + "name": "Dynamic_annotation_team_bot_response", "ofType": null }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_request", + "name": "Dynamic_annotation_transcript", "ofType": null }, { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_status", + "name": "Dynamic_annotation_transcription", "ofType": null }, { @@ -55173,7 +53510,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_analysis", + "name": "dynamic_annotation_archive_org", "description": null, "args": [ @@ -55271,7 +53608,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_language", + "name": "dynamic_annotation_keep_backup", "description": null, "args": [ @@ -55285,7 +53622,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_memebuster", + "name": "dynamic_annotation_language", "description": null, "args": [ @@ -55327,7 +53664,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_mt", + "name": "dynamic_annotation_pender_archive", "description": null, "args": [ @@ -55579,35 +53916,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_team_bot_response", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotation_transcript", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotation_transcription", + "name": "dynamic_annotation_tattle", "description": null, "args": [ @@ -55621,7 +53930,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation", + "name": "dynamic_annotation_team_bot_response", "description": null, "args": [ @@ -55635,7 +53944,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation_request", + "name": "dynamic_annotation_transcript", "description": null, "args": [ @@ -55649,7 +53958,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation_status", + "name": "dynamic_annotation_transcription", "description": null, "args": [ @@ -55677,7 +53986,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_analysis", + "name": "dynamic_annotations_archive_org", "description": null, "args": [ { @@ -56104,7 +54413,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_language", + "name": "dynamic_annotations_keep_backup", "description": null, "args": [ { @@ -56165,7 +54474,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_memebuster", + "name": "dynamic_annotations_language", "description": null, "args": [ { @@ -56348,7 +54657,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_mt", + "name": "dynamic_annotations_pender_archive", "description": null, "args": [ { @@ -57446,68 +55755,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_team_bot_response", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DynamicConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotations_transcript", + "name": "dynamic_annotations_tattle", "description": null, "args": [ { @@ -57568,68 +55816,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_transcription", - "description": null, - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DynamicConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotations_translation", + "name": "dynamic_annotations_team_bot_response", "description": null, "args": [ { @@ -57690,7 +55877,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_translation_request", + "name": "dynamic_annotations_transcript", "description": null, "args": [ { @@ -57751,7 +55938,7 @@ "deprecationReason": null }, { - "name": "dynamic_annotations_translation_status", + "name": "dynamic_annotations_transcription", "description": null, "args": [ { @@ -69078,583 +67265,7 @@ "deprecationReason": null }, { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateCommentPayload", - "description": "Autogenerated return type of UpdateComment", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentEdge", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "CommentEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "task", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versionEdge", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "VersionEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationAnalysisInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationAnalysis", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fragment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "set_attribution", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "set_fields", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lock_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assigned_to_ids", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locked", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateDynamicAnnotationAnalysisPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationAnalysis", - "fields": [ - { - "name": "clientMutationId", - "description": "A unique identifier for the client performing the mutation.", - "args": [ - - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamicEdge", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "DynamicEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotation_analysis", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_analysis", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamic_annotation_analysisEdge", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Dynamic_annotation_analysisEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_media", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMedia", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "Source", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versionEdge", - "description": null, - "args": [ - - ], - "type": { - "kind": "OBJECT", - "name": "VersionEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationArchiverInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationArchiver", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fragment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotated_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "set_attribution", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "set_fields", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lock_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assigned_to_ids", + "name": "text", "description": null, "type": { "kind": "SCALAR", @@ -69665,18 +67276,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "locked", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "clientMutationId", "description": "A unique identifier for the client performing the mutation.", @@ -69696,8 +67295,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationArchiverPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationArchiver", + "name": "UpdateCommentPayload", + "description": "Autogenerated return type of UpdateComment", "fields": [ { "name": "clientMutationId", @@ -69714,98 +67313,98 @@ "deprecationReason": null }, { - "name": "dynamic", + "name": "comment", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic", + "name": "Comment", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamicEdge", + "name": "commentEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "DynamicEdge", + "name": "CommentEdge", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_archiver", + "name": "project", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_archiver", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_archiverEdge", + "name": "project_media", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_archiverEdge", + "name": "ProjectMedia", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project", + "name": "source", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Project", + "name": "Source", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "project_media", + "name": "task", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "ProjectMedia", + "name": "Task", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "version", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Source", + "name": "Version", "ofType": null }, "isDeprecated": false, @@ -69835,8 +67434,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationClipInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationClip", + "name": "UpdateDynamicAnnotationArchiveOrgInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationArchiveOrg", "fields": null, "inputFields": [ { @@ -69990,8 +67589,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationClipPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationClip", + "name": "UpdateDynamicAnnotationArchiveOrgPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationArchiveOrg", "fields": [ { "name": "clientMutationId", @@ -70036,28 +67635,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_clip", + "name": "dynamic_annotation_archive_org", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_clip", + "name": "Dynamic_annotation_archive_org", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_clipEdge", + "name": "dynamic_annotation_archive_orgEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_clipEdge", + "name": "Dynamic_annotation_archive_orgEdge", "ofType": null }, "isDeprecated": false, @@ -70129,8 +67728,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationEmbedCodeInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationEmbedCode", + "name": "UpdateDynamicAnnotationArchiverInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationArchiver", "fields": null, "inputFields": [ { @@ -70284,8 +67883,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationEmbedCodePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationEmbedCode", + "name": "UpdateDynamicAnnotationArchiverPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationArchiver", "fields": [ { "name": "clientMutationId", @@ -70330,28 +67929,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_embed_code", + "name": "dynamic_annotation_archiver", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_embed_code", + "name": "Dynamic_annotation_archiver", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_embed_codeEdge", + "name": "dynamic_annotation_archiverEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_embed_codeEdge", + "name": "Dynamic_annotation_archiverEdge", "ofType": null }, "isDeprecated": false, @@ -70423,8 +68022,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationExtractedTextInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationExtractedText", + "name": "UpdateDynamicAnnotationClipInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationClip", "fields": null, "inputFields": [ { @@ -70578,8 +68177,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationExtractedTextPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationExtractedText", + "name": "UpdateDynamicAnnotationClipPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationClip", "fields": [ { "name": "clientMutationId", @@ -70624,28 +68223,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_extracted_text", + "name": "dynamic_annotation_clip", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_extracted_text", + "name": "Dynamic_annotation_clip", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_extracted_textEdge", + "name": "dynamic_annotation_clipEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_extracted_textEdge", + "name": "Dynamic_annotation_clipEdge", "ofType": null }, "isDeprecated": false, @@ -70717,8 +68316,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationFlagInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationFlag", + "name": "UpdateDynamicAnnotationEmbedCodeInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationEmbedCode", "fields": null, "inputFields": [ { @@ -70872,8 +68471,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationFlagPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationFlag", + "name": "UpdateDynamicAnnotationEmbedCodePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationEmbedCode", "fields": [ { "name": "clientMutationId", @@ -70918,28 +68517,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_flag", + "name": "dynamic_annotation_embed_code", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_flag", + "name": "Dynamic_annotation_embed_code", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_flagEdge", + "name": "dynamic_annotation_embed_codeEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_flagEdge", + "name": "Dynamic_annotation_embed_codeEdge", "ofType": null }, "isDeprecated": false, @@ -71011,8 +68610,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationGeolocationInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationGeolocation", + "name": "UpdateDynamicAnnotationExtractedTextInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationExtractedText", "fields": null, "inputFields": [ { @@ -71166,8 +68765,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationGeolocationPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationGeolocation", + "name": "UpdateDynamicAnnotationExtractedTextPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationExtractedText", "fields": [ { "name": "clientMutationId", @@ -71212,28 +68811,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_geolocation", + "name": "dynamic_annotation_extracted_text", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_geolocation", + "name": "Dynamic_annotation_extracted_text", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_geolocationEdge", + "name": "dynamic_annotation_extracted_textEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_geolocationEdge", + "name": "Dynamic_annotation_extracted_textEdge", "ofType": null }, "isDeprecated": false, @@ -71305,8 +68904,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationLanguageInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationLanguage", + "name": "UpdateDynamicAnnotationFlagInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationFlag", "fields": null, "inputFields": [ { @@ -71460,8 +69059,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationLanguagePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationLanguage", + "name": "UpdateDynamicAnnotationFlagPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationFlag", "fields": [ { "name": "clientMutationId", @@ -71506,28 +69105,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_language", + "name": "dynamic_annotation_flag", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_language", + "name": "Dynamic_annotation_flag", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_languageEdge", + "name": "dynamic_annotation_flagEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_languageEdge", + "name": "Dynamic_annotation_flagEdge", "ofType": null }, "isDeprecated": false, @@ -71599,8 +69198,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMemebusterInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationMemebuster", + "name": "UpdateDynamicAnnotationGeolocationInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationGeolocation", "fields": null, "inputFields": [ { @@ -71754,8 +69353,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMemebusterPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationMemebuster", + "name": "UpdateDynamicAnnotationGeolocationPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationGeolocation", "fields": [ { "name": "clientMutationId", @@ -71800,28 +69399,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_memebuster", + "name": "dynamic_annotation_geolocation", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_memebuster", + "name": "Dynamic_annotation_geolocation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_memebusterEdge", + "name": "dynamic_annotation_geolocationEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_memebusterEdge", + "name": "Dynamic_annotation_geolocationEdge", "ofType": null }, "isDeprecated": false, @@ -71893,8 +69492,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMetadataInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationMetadata", + "name": "UpdateDynamicAnnotationKeepBackupInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationKeepBackup", "fields": null, "inputFields": [ { @@ -72048,8 +69647,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMetadataPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationMetadata", + "name": "UpdateDynamicAnnotationKeepBackupPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationKeepBackup", "fields": [ { "name": "clientMutationId", @@ -72094,28 +69693,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_metadata", + "name": "dynamic_annotation_keep_backup", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metadata", + "name": "Dynamic_annotation_keep_backup", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_metadataEdge", + "name": "dynamic_annotation_keep_backupEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metadataEdge", + "name": "Dynamic_annotation_keep_backupEdge", "ofType": null }, "isDeprecated": false, @@ -72187,8 +69786,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMetricsInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationMetrics", + "name": "UpdateDynamicAnnotationLanguageInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationLanguage", "fields": null, "inputFields": [ { @@ -72342,8 +69941,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMetricsPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationMetrics", + "name": "UpdateDynamicAnnotationLanguagePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationLanguage", "fields": [ { "name": "clientMutationId", @@ -72388,28 +69987,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_metrics", + "name": "dynamic_annotation_language", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metrics", + "name": "Dynamic_annotation_language", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_metricsEdge", + "name": "dynamic_annotation_languageEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_metricsEdge", + "name": "Dynamic_annotation_languageEdge", "ofType": null }, "isDeprecated": false, @@ -72481,8 +70080,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationMtInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationMt", + "name": "UpdateDynamicAnnotationMetadataInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationMetadata", "fields": null, "inputFields": [ { @@ -72636,8 +70235,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationMtPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationMt", + "name": "UpdateDynamicAnnotationMetadataPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationMetadata", "fields": [ { "name": "clientMutationId", @@ -72682,28 +70281,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_mt", + "name": "dynamic_annotation_metadata", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_mt", + "name": "Dynamic_annotation_metadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_mtEdge", + "name": "dynamic_annotation_metadataEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_mtEdge", + "name": "Dynamic_annotation_metadataEdge", "ofType": null }, "isDeprecated": false, @@ -72775,8 +70374,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationReportDesignInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationReportDesign", + "name": "UpdateDynamicAnnotationMetricsInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationMetrics", "fields": null, "inputFields": [ { @@ -72930,8 +70529,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationReportDesignPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationReportDesign", + "name": "UpdateDynamicAnnotationMetricsPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationMetrics", "fields": [ { "name": "clientMutationId", @@ -72976,28 +70575,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_report_design", + "name": "dynamic_annotation_metrics", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_report_design", + "name": "Dynamic_annotation_metrics", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_report_designEdge", + "name": "dynamic_annotation_metricsEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_report_designEdge", + "name": "Dynamic_annotation_metricsEdge", "ofType": null }, "isDeprecated": false, @@ -73069,8 +70668,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationReverseImageInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationReverseImage", + "name": "UpdateDynamicAnnotationPenderArchiveInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationPenderArchive", "fields": null, "inputFields": [ { @@ -73224,8 +70823,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationReverseImagePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationReverseImage", + "name": "UpdateDynamicAnnotationPenderArchivePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationPenderArchive", "fields": [ { "name": "clientMutationId", @@ -73270,28 +70869,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_reverse_image", + "name": "dynamic_annotation_pender_archive", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_reverse_image", + "name": "Dynamic_annotation_pender_archive", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_reverse_imageEdge", + "name": "dynamic_annotation_pender_archiveEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_reverse_imageEdge", + "name": "Dynamic_annotation_pender_archiveEdge", "ofType": null }, "isDeprecated": false, @@ -73363,8 +70962,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationSlackMessageInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationSlackMessage", + "name": "UpdateDynamicAnnotationReportDesignInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationReportDesign", "fields": null, "inputFields": [ { @@ -73518,8 +71117,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationSlackMessagePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationSlackMessage", + "name": "UpdateDynamicAnnotationReportDesignPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationReportDesign", "fields": [ { "name": "clientMutationId", @@ -73564,28 +71163,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_slack_message", + "name": "dynamic_annotation_report_design", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_slack_message", + "name": "Dynamic_annotation_report_design", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_slack_messageEdge", + "name": "dynamic_annotation_report_designEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_slack_messageEdge", + "name": "Dynamic_annotation_report_designEdge", "ofType": null }, "isDeprecated": false, @@ -73657,8 +71256,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationSmoochInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationSmooch", + "name": "UpdateDynamicAnnotationReverseImageInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationReverseImage", "fields": null, "inputFields": [ { @@ -73812,8 +71411,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationSmoochPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationSmooch", + "name": "UpdateDynamicAnnotationReverseImagePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationReverseImage", "fields": [ { "name": "clientMutationId", @@ -73858,28 +71457,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_smooch", + "name": "dynamic_annotation_reverse_image", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch", + "name": "Dynamic_annotation_reverse_image", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_smoochEdge", + "name": "dynamic_annotation_reverse_imageEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smoochEdge", + "name": "Dynamic_annotation_reverse_imageEdge", "ofType": null }, "isDeprecated": false, @@ -73951,8 +71550,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationSmoochResponseInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationSmoochResponse", + "name": "UpdateDynamicAnnotationSlackMessageInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationSlackMessage", "fields": null, "inputFields": [ { @@ -74106,8 +71705,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationSmoochResponsePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationSmoochResponse", + "name": "UpdateDynamicAnnotationSlackMessagePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationSlackMessage", "fields": [ { "name": "clientMutationId", @@ -74152,28 +71751,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_smooch_response", + "name": "dynamic_annotation_slack_message", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_response", + "name": "Dynamic_annotation_slack_message", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_smooch_responseEdge", + "name": "dynamic_annotation_slack_messageEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_responseEdge", + "name": "Dynamic_annotation_slack_messageEdge", "ofType": null }, "isDeprecated": false, @@ -74245,8 +71844,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationSmoochUserInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationSmoochUser", + "name": "UpdateDynamicAnnotationSmoochInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationSmooch", "fields": null, "inputFields": [ { @@ -74400,8 +71999,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationSmoochUserPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationSmoochUser", + "name": "UpdateDynamicAnnotationSmoochPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationSmooch", "fields": [ { "name": "clientMutationId", @@ -74446,28 +72045,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_smooch_user", + "name": "dynamic_annotation_smooch", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_user", + "name": "Dynamic_annotation_smooch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_smooch_userEdge", + "name": "dynamic_annotation_smoochEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_smooch_userEdge", + "name": "Dynamic_annotation_smoochEdge", "ofType": null }, "isDeprecated": false, @@ -74539,8 +72138,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationSyrianArchiveDataInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationSyrianArchiveData", + "name": "UpdateDynamicAnnotationSmoochResponseInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationSmoochResponse", "fields": null, "inputFields": [ { @@ -74694,8 +72293,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationSyrianArchiveDataPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationSyrianArchiveData", + "name": "UpdateDynamicAnnotationSmoochResponsePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationSmoochResponse", "fields": [ { "name": "clientMutationId", @@ -74740,28 +72339,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_syrian_archive_data", + "name": "dynamic_annotation_smooch_response", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_syrian_archive_data", + "name": "Dynamic_annotation_smooch_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_syrian_archive_dataEdge", + "name": "dynamic_annotation_smooch_responseEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_syrian_archive_dataEdge", + "name": "Dynamic_annotation_smooch_responseEdge", "ofType": null }, "isDeprecated": false, @@ -74833,8 +72432,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseDatetimeInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseDatetime", + "name": "UpdateDynamicAnnotationSmoochUserInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationSmoochUser", "fields": null, "inputFields": [ { @@ -74988,8 +72587,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseDatetimePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseDatetime", + "name": "UpdateDynamicAnnotationSmoochUserPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationSmoochUser", "fields": [ { "name": "clientMutationId", @@ -75034,28 +72633,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_datetime", + "name": "dynamic_annotation_smooch_user", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_datetime", + "name": "Dynamic_annotation_smooch_user", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_datetimeEdge", + "name": "dynamic_annotation_smooch_userEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_datetimeEdge", + "name": "Dynamic_annotation_smooch_userEdge", "ofType": null }, "isDeprecated": false, @@ -75127,8 +72726,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseFileUploadInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseFileUpload", + "name": "UpdateDynamicAnnotationSyrianArchiveDataInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationSyrianArchiveData", "fields": null, "inputFields": [ { @@ -75282,8 +72881,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseFileUploadPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseFileUpload", + "name": "UpdateDynamicAnnotationSyrianArchiveDataPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationSyrianArchiveData", "fields": [ { "name": "clientMutationId", @@ -75328,28 +72927,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_file_upload", + "name": "dynamic_annotation_syrian_archive_data", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_file_upload", + "name": "Dynamic_annotation_syrian_archive_data", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_file_uploadEdge", + "name": "dynamic_annotation_syrian_archive_dataEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_file_uploadEdge", + "name": "Dynamic_annotation_syrian_archive_dataEdge", "ofType": null }, "isDeprecated": false, @@ -75421,8 +73020,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseFreeTextInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseFreeText", + "name": "UpdateDynamicAnnotationTaskResponseDatetimeInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseDatetime", "fields": null, "inputFields": [ { @@ -75576,8 +73175,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseFreeTextPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseFreeText", + "name": "UpdateDynamicAnnotationTaskResponseDatetimePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseDatetime", "fields": [ { "name": "clientMutationId", @@ -75622,28 +73221,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_free_text", + "name": "dynamic_annotation_task_response_datetime", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_free_text", + "name": "Dynamic_annotation_task_response_datetime", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_free_textEdge", + "name": "dynamic_annotation_task_response_datetimeEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_free_textEdge", + "name": "Dynamic_annotation_task_response_datetimeEdge", "ofType": null }, "isDeprecated": false, @@ -75715,8 +73314,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseGeolocationInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseGeolocation", + "name": "UpdateDynamicAnnotationTaskResponseFileUploadInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseFileUpload", "fields": null, "inputFields": [ { @@ -75870,8 +73469,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseGeolocationPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseGeolocation", + "name": "UpdateDynamicAnnotationTaskResponseFileUploadPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseFileUpload", "fields": [ { "name": "clientMutationId", @@ -75916,28 +73515,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_geolocation", + "name": "dynamic_annotation_task_response_file_upload", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_geolocation", + "name": "Dynamic_annotation_task_response_file_upload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_geolocationEdge", + "name": "dynamic_annotation_task_response_file_uploadEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_geolocationEdge", + "name": "Dynamic_annotation_task_response_file_uploadEdge", "ofType": null }, "isDeprecated": false, @@ -76009,8 +73608,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseMultipleChoiceInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseMultipleChoice", + "name": "UpdateDynamicAnnotationTaskResponseFreeTextInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseFreeText", "fields": null, "inputFields": [ { @@ -76164,8 +73763,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseMultipleChoicePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseMultipleChoice", + "name": "UpdateDynamicAnnotationTaskResponseFreeTextPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseFreeText", "fields": [ { "name": "clientMutationId", @@ -76210,28 +73809,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_multiple_choice", + "name": "dynamic_annotation_task_response_free_text", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_multiple_choice", + "name": "Dynamic_annotation_task_response_free_text", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_multiple_choiceEdge", + "name": "dynamic_annotation_task_response_free_textEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_multiple_choiceEdge", + "name": "Dynamic_annotation_task_response_free_textEdge", "ofType": null }, "isDeprecated": false, @@ -76303,8 +73902,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseNumberInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseNumber", + "name": "UpdateDynamicAnnotationTaskResponseGeolocationInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseGeolocation", "fields": null, "inputFields": [ { @@ -76458,8 +74057,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseNumberPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseNumber", + "name": "UpdateDynamicAnnotationTaskResponseGeolocationPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseGeolocation", "fields": [ { "name": "clientMutationId", @@ -76504,28 +74103,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_number", + "name": "dynamic_annotation_task_response_geolocation", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_number", + "name": "Dynamic_annotation_task_response_geolocation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_numberEdge", + "name": "dynamic_annotation_task_response_geolocationEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_numberEdge", + "name": "Dynamic_annotation_task_response_geolocationEdge", "ofType": null }, "isDeprecated": false, @@ -76597,8 +74196,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseSingleChoiceInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseSingleChoice", + "name": "UpdateDynamicAnnotationTaskResponseMultipleChoiceInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseMultipleChoice", "fields": null, "inputFields": [ { @@ -76752,8 +74351,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseSingleChoicePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseSingleChoice", + "name": "UpdateDynamicAnnotationTaskResponseMultipleChoicePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseMultipleChoice", "fields": [ { "name": "clientMutationId", @@ -76798,28 +74397,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_single_choice", + "name": "dynamic_annotation_task_response_multiple_choice", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_single_choice", + "name": "Dynamic_annotation_task_response_multiple_choice", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_single_choiceEdge", + "name": "dynamic_annotation_task_response_multiple_choiceEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_single_choiceEdge", + "name": "Dynamic_annotation_task_response_multiple_choiceEdge", "ofType": null }, "isDeprecated": false, @@ -76891,8 +74490,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseUrlInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseUrl", + "name": "UpdateDynamicAnnotationTaskResponseNumberInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseNumber", "fields": null, "inputFields": [ { @@ -77046,8 +74645,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseUrlPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseUrl", + "name": "UpdateDynamicAnnotationTaskResponseNumberPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseNumber", "fields": [ { "name": "clientMutationId", @@ -77092,28 +74691,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_url", + "name": "dynamic_annotation_task_response_number", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_url", + "name": "Dynamic_annotation_task_response_number", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_urlEdge", + "name": "dynamic_annotation_task_response_numberEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_urlEdge", + "name": "Dynamic_annotation_task_response_numberEdge", "ofType": null }, "isDeprecated": false, @@ -77185,8 +74784,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseYesNoInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseYesNo", + "name": "UpdateDynamicAnnotationTaskResponseSingleChoiceInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseSingleChoice", "fields": null, "inputFields": [ { @@ -77340,8 +74939,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskResponseYesNoPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseYesNo", + "name": "UpdateDynamicAnnotationTaskResponseSingleChoicePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseSingleChoice", "fields": [ { "name": "clientMutationId", @@ -77386,28 +74985,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_yes_no", + "name": "dynamic_annotation_task_response_single_choice", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_yes_no", + "name": "Dynamic_annotation_task_response_single_choice", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_response_yes_noEdge", + "name": "dynamic_annotation_task_response_single_choiceEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_response_yes_noEdge", + "name": "Dynamic_annotation_task_response_single_choiceEdge", "ofType": null }, "isDeprecated": false, @@ -77479,8 +75078,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTaskStatusInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTaskStatus", + "name": "UpdateDynamicAnnotationTaskResponseUrlInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseUrl", "fields": null, "inputFields": [ { @@ -77634,8 +75233,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTaskStatusPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTaskStatus", + "name": "UpdateDynamicAnnotationTaskResponseUrlPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseUrl", "fields": [ { "name": "clientMutationId", @@ -77680,28 +75279,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_task_status", + "name": "dynamic_annotation_task_response_url", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_status", + "name": "Dynamic_annotation_task_response_url", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_task_statusEdge", + "name": "dynamic_annotation_task_response_urlEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_task_statusEdge", + "name": "Dynamic_annotation_task_response_urlEdge", "ofType": null }, "isDeprecated": false, @@ -77773,8 +75372,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTeamBotResponseInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTeamBotResponse", + "name": "UpdateDynamicAnnotationTaskResponseYesNoInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskResponseYesNo", "fields": null, "inputFields": [ { @@ -77928,8 +75527,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTeamBotResponsePayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTeamBotResponse", + "name": "UpdateDynamicAnnotationTaskResponseYesNoPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskResponseYesNo", "fields": [ { "name": "clientMutationId", @@ -77974,28 +75573,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_team_bot_response", + "name": "dynamic_annotation_task_response_yes_no", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_response", + "name": "Dynamic_annotation_task_response_yes_no", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_team_bot_responseEdge", + "name": "dynamic_annotation_task_response_yes_noEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_team_bot_responseEdge", + "name": "Dynamic_annotation_task_response_yes_noEdge", "ofType": null }, "isDeprecated": false, @@ -78067,8 +75666,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranscriptInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTranscript", + "name": "UpdateDynamicAnnotationTaskStatusInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTaskStatus", "fields": null, "inputFields": [ { @@ -78222,8 +75821,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranscriptPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTranscript", + "name": "UpdateDynamicAnnotationTaskStatusPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTaskStatus", "fields": [ { "name": "clientMutationId", @@ -78268,28 +75867,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_transcript", + "name": "dynamic_annotation_task_status", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcript", + "name": "Dynamic_annotation_task_status", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_transcriptEdge", + "name": "dynamic_annotation_task_statusEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcriptEdge", + "name": "Dynamic_annotation_task_statusEdge", "ofType": null }, "isDeprecated": false, @@ -78361,8 +75960,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranscriptionInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTranscription", + "name": "UpdateDynamicAnnotationTattleInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTattle", "fields": null, "inputFields": [ { @@ -78516,8 +76115,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranscriptionPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTranscription", + "name": "UpdateDynamicAnnotationTattlePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTattle", "fields": [ { "name": "clientMutationId", @@ -78562,28 +76161,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_transcription", + "name": "dynamic_annotation_tattle", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcription", + "name": "Dynamic_annotation_tattle", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_transcriptionEdge", + "name": "dynamic_annotation_tattleEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_transcriptionEdge", + "name": "Dynamic_annotation_tattleEdge", "ofType": null }, "isDeprecated": false, @@ -78655,8 +76254,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTranslation", + "name": "UpdateDynamicAnnotationTeamBotResponseInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTeamBotResponse", "fields": null, "inputFields": [ { @@ -78810,8 +76409,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTranslation", + "name": "UpdateDynamicAnnotationTeamBotResponsePayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTeamBotResponse", "fields": [ { "name": "clientMutationId", @@ -78856,28 +76455,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation", + "name": "dynamic_annotation_team_bot_response", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation", + "name": "Dynamic_annotation_team_bot_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translationEdge", + "name": "dynamic_annotation_team_bot_responseEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translationEdge", + "name": "Dynamic_annotation_team_bot_responseEdge", "ofType": null }, "isDeprecated": false, @@ -78949,8 +76548,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationRequestInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTranslationRequest", + "name": "UpdateDynamicAnnotationTranscriptInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTranscript", "fields": null, "inputFields": [ { @@ -79104,8 +76703,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationRequestPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTranslationRequest", + "name": "UpdateDynamicAnnotationTranscriptPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTranscript", "fields": [ { "name": "clientMutationId", @@ -79150,28 +76749,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation_request", + "name": "dynamic_annotation_transcript", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_request", + "name": "Dynamic_annotation_transcript", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translation_requestEdge", + "name": "dynamic_annotation_transcriptEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_requestEdge", + "name": "Dynamic_annotation_transcriptEdge", "ofType": null }, "isDeprecated": false, @@ -79243,8 +76842,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDynamicAnnotationTranslationStatusInput", - "description": "Autogenerated input type of UpdateDynamicAnnotationTranslationStatus", + "name": "UpdateDynamicAnnotationTranscriptionInput", + "description": "Autogenerated input type of UpdateDynamicAnnotationTranscription", "fields": null, "inputFields": [ { @@ -79398,8 +76997,8 @@ }, { "kind": "OBJECT", - "name": "UpdateDynamicAnnotationTranslationStatusPayload", - "description": "Autogenerated return type of UpdateDynamicAnnotationTranslationStatus", + "name": "UpdateDynamicAnnotationTranscriptionPayload", + "description": "Autogenerated return type of UpdateDynamicAnnotationTranscription", "fields": [ { "name": "clientMutationId", @@ -79444,28 +77043,28 @@ "deprecationReason": null }, { - "name": "dynamic_annotation_translation_status", + "name": "dynamic_annotation_transcription", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_status", + "name": "Dynamic_annotation_transcription", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dynamic_annotation_translation_statusEdge", + "name": "dynamic_annotation_transcriptionEdge", "description": null, "args": [ ], "type": { "kind": "OBJECT", - "name": "Dynamic_annotation_translation_statusEdge", + "name": "Dynamic_annotation_transcriptionEdge", "ofType": null }, "isDeprecated": false, diff --git a/test/controllers/graphql_controller_4_test.rb b/test/controllers/graphql_controller_4_test.rb index b1b32efe91..950b2d5620 100644 --- a/test/controllers/graphql_controller_4_test.rb +++ b/test/controllers/graphql_controller_4_test.rb @@ -227,7 +227,7 @@ def teardown authenticate_with_user(u) assert_equal 0, @pm1.get_versions_log(['update_dynamicannotationfield']).size Sidekiq::Testing.inline! do - query = 'mutation { updateProjectMedias(input: { clientMutationId: "1", ids: ' + @ids + ', action: "update_status", params: "{\"status\":\"in_progress\"}"}) { ids, team { dbid } } }' + query = 'mutation { bulkProjectMediaUpdateStatus(input: { clientMutationId: "1", ids: ' + @ids + ', status: "in_progress" }) { ids, team { dbid } } }' post :create, params: { query: query, team: @t.slug } assert_response :success assert_equal 'in_progress', @pm1.last_status diff --git a/test/models/project_media_3_test.rb b/test/models/project_media_3_test.rb index de82676dee..44011317c4 100644 --- a/test/models/project_media_3_test.rb +++ b/test/models/project_media_3_test.rb @@ -309,9 +309,9 @@ def setup pm3 = create_project_media team: t, disable_es_callbacks: false sleep 2 ids = [pm.id, pm2.id, pm3.id] - updates = { action: 'update_status', params: { status: 'verified' }.to_json } + updates = { status: 'verified' } Sidekiq::Testing.inline! do - ProjectMedia.bulk_update(ids, updates, t) + ProjectMedia.bulk_update_status(ids, updates, t) sleep 2 # Verify nothing happens for published reports assert_equal pm_status, pm.reload.last_status