summaryrefslogtreecommitdiff
path: root/app/graphql/types/packages/nuget/metadatum_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/packages/nuget/metadatum_type.rb')
-rw-r--r--app/graphql/types/packages/nuget/metadatum_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/packages/nuget/metadatum_type.rb b/app/graphql/types/packages/nuget/metadatum_type.rb
index 63fae2fb197..ed9d97724af 100644
--- a/app/graphql/types/packages/nuget/metadatum_type.rb
+++ b/app/graphql/types/packages/nuget/metadatum_type.rb
@@ -10,9 +10,9 @@ module Types
authorize :read_package
field :id, ::Types::GlobalIDType[::Packages::Nuget::Metadatum], null: false, description: 'ID of the metadatum.'
- field :license_url, GraphQL::STRING_TYPE, null: false, description: 'License URL of the Nuget package.'
- field :project_url, GraphQL::STRING_TYPE, null: false, description: 'Project URL of the Nuget package.'
- field :icon_url, GraphQL::STRING_TYPE, null: false, description: 'Icon URL of the Nuget package.'
+ field :license_url, GraphQL::Types::String, null: false, description: 'License URL of the Nuget package.'
+ field :project_url, GraphQL::Types::String, null: false, description: 'Project URL of the Nuget package.'
+ field :icon_url, GraphQL::Types::String, null: false, description: 'Icon URL of the Nuget package.'
end
end
end