Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/packages/maven/metadatum_type.rb')
-rw-r--r--app/graphql/types/packages/maven/metadatum_type.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/graphql/types/packages/maven/metadatum_type.rb b/app/graphql/types/packages/maven/metadatum_type.rb
new file mode 100644
index 00000000000..bdb250ef96b
--- /dev/null
+++ b/app/graphql/types/packages/maven/metadatum_type.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+module Types
+ module Packages
+ module Maven
+ class MetadatumType < BaseObject
+ graphql_name 'MavenMetadata'
+ description 'Maven metadata'
+
+ authorize :read_package
+
+ field :id, ::Types::GlobalIDType[::Packages::Maven::Metadatum], null: false, description: 'ID of the metadatum.'
+ field :created_at, Types::TimeType, null: false, description: 'Date of creation.'
+ field :updated_at, Types::TimeType, null: false, description: 'Date of most recent update.'
+ field :path, GraphQL::STRING_TYPE, null: false, description: 'Path of the Maven package.'
+ field :app_group, GraphQL::STRING_TYPE, null: false, description: 'App group of the Maven package.'
+ field :app_version, GraphQL::STRING_TYPE, null: true, description: 'App version of the Maven package.'
+ field :app_name, GraphQL::STRING_TYPE, null: false, description: 'App name of the Maven package.'
+ end
+ end
+ end
+end