project_type.rb 2.9 KB
Newer Older
1 2
module Types
  class ProjectType < BaseObject
3 4
    expose_permissions Types::PermissionTypes::Project

5
    graphql_name 'Project'
N
Nick Thomas 已提交
6

7
    field :id, GraphQL::ID_TYPE, null: false
N
Nick Thomas 已提交
8

9 10
    field :full_path, GraphQL::ID_TYPE, null: false
    field :path, GraphQL::STRING_TYPE, null: false
N
Nick Thomas 已提交
11

12 13
    field :name_with_namespace, GraphQL::STRING_TYPE, null: false
    field :name, GraphQL::STRING_TYPE, null: false
N
Nick Thomas 已提交
14

15
    field :description, GraphQL::STRING_TYPE, null: true
N
Nick Thomas 已提交
16

17 18
    field :default_branch, GraphQL::STRING_TYPE, null: true
    field :tag_list, GraphQL::STRING_TYPE, null: true
N
Nick Thomas 已提交
19

20 21 22
    field :ssh_url_to_repo, GraphQL::STRING_TYPE, null: true
    field :http_url_to_repo, GraphQL::STRING_TYPE, null: true
    field :web_url, GraphQL::STRING_TYPE, null: true
N
Nick Thomas 已提交
23

24 25
    field :star_count, GraphQL::INT_TYPE, null: false
    field :forks_count, GraphQL::INT_TYPE, null: false
N
Nick Thomas 已提交
26

27 28
    field :created_at, Types::TimeType, null: true
    field :last_activity_at, Types::TimeType, null: true
N
Nick Thomas 已提交
29

30
    field :archived, GraphQL::BOOLEAN_TYPE, null: true
N
Nick Thomas 已提交
31

32
    field :visibility, GraphQL::STRING_TYPE, null: true
N
Nick Thomas 已提交
33

34 35 36 37
    field :container_registry_enabled, GraphQL::BOOLEAN_TYPE, null: true
    field :shared_runners_enabled, GraphQL::BOOLEAN_TYPE, null: true
    field :lfs_enabled, GraphQL::BOOLEAN_TYPE, null: true
    field :merge_requests_ff_only_enabled, GraphQL::BOOLEAN_TYPE, null: true
N
Nick Thomas 已提交
38

39 40 41
    field :avatar_url, GraphQL::STRING_TYPE, null: true, resolve: -> (project, args, ctx) do
      project.avatar_url(only_path: false)
    end
N
Nick Thomas 已提交
42

43 44 45 46
    %i[issues merge_requests wiki snippets].each do |feature|
      field "#{feature}_enabled", GraphQL::BOOLEAN_TYPE, null: true, resolve: -> (project, args, ctx) do
        project.feature_available?(feature, ctx[:current_user])
      end
N
Nick Thomas 已提交
47 48
    end

49 50 51
    field :jobs_enabled, GraphQL::BOOLEAN_TYPE, null: true, resolve: -> (project, args, ctx) do
      project.feature_available?(:builds, ctx[:current_user])
    end
N
Nick Thomas 已提交
52

53
    field :public_jobs, GraphQL::BOOLEAN_TYPE, method: :public_builds, null: true
N
Nick Thomas 已提交
54

55 56 57
    field :open_issues_count, GraphQL::INT_TYPE, null: true, resolve: -> (project, args, ctx) do
      project.open_issues_count if project.feature_available?(:issues, ctx[:current_user])
    end
N
Nick Thomas 已提交
58

59 60
    field :import_status, GraphQL::STRING_TYPE, null: true
    field :ci_config_path, GraphQL::STRING_TYPE, null: true
N
Nick Thomas 已提交
61

62 63 64 65
    field :only_allow_merge_if_pipeline_succeeds, GraphQL::BOOLEAN_TYPE, null: true
    field :request_access_enabled, GraphQL::BOOLEAN_TYPE, null: true
    field :only_allow_merge_if_all_discussions_are_resolved, GraphQL::BOOLEAN_TYPE, null: true
    field :printing_merge_request_link_enabled, GraphQL::BOOLEAN_TYPE, null: true
66 67 68 69 70 71 72

    field :merge_request,
          Types::MergeRequestType,
          null: true,
          resolver: Resolvers::MergeRequestResolver do
      authorize :read_merge_request
    end
B
Bob Van Landuyt 已提交
73 74 75 76 77

    field :pipelines,
          Types::Ci::PipelineType.connection_type,
          null: false,
          resolver: Resolvers::ProjectPipelinesResolver
78
  end
N
Nick Thomas 已提交
79
end