gitlab-org--gitlab-foss/app/graphql/resolvers/namespace_resolver.rb
Alessio Caiazza 83a8b77961 Add Namespace and ProjectStatistics to GraphQL API
We can query namespaces, and nested projects.

Projects now exposes statistics
2019-06-03 12:01:32 +02:00

13 lines
255 B
Ruby

# frozen_string_literal: true
module Resolvers
class NamespaceResolver < BaseResolver
prepend FullPathResolver
type Types::NamespaceType, null: true
def resolve(full_path:)
model_by_full_path(Namespace, full_path)
end
end
end