summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_type.rb
blob: dd4b4c3b11450100f7981e4b50e95bf247d82d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

module Types
  class CommitType < BaseObject
    graphql_name 'Commit'

    authorize :download_code

    present_using CommitPresenter

    field :id, type: GraphQL::ID_TYPE, null: false,
          description: 'ID (global ID) of the commit'
    field :sha, type: GraphQL::STRING_TYPE, null: false,
          description: 'SHA1 ID of the commit'
    field :title, type: GraphQL::STRING_TYPE, null: true, calls_gitaly: true,
          description: 'Title of the commit message'
    markdown_field :title_html, null: true
    field :description, type: GraphQL::STRING_TYPE, null: true,
          description: 'Description of the commit message'
    markdown_field :description_html, null: true
    field :message, type: GraphQL::STRING_TYPE, null: true,
          description: 'Raw commit message'
    field :authored_date, type: Types::TimeType, null: true,
          description: 'Timestamp of when the commit was authored'
    field :web_url, type: GraphQL::STRING_TYPE, null: false,
          description: 'Web URL of the commit'
    field :web_path, type: GraphQL::STRING_TYPE, null: false,
          description: 'Web path of the commit'
    field :signature_html, type: GraphQL::STRING_TYPE, null: true, calls_gitaly: true,
          description: 'Rendered HTML of the commit signature'
    field :author_name, type: GraphQL::STRING_TYPE, null: true,
          description: 'Commit authors name'
    field :author_gravatar, type: GraphQL::STRING_TYPE, null: true,
          description: 'Commit authors gravatar',
          resolve: -> (commit, args, context) do
            GravatarService.new.execute(commit.author_email, 40)
          end

    # models/commit lazy loads the author by email
    field :author, type: Types::UserType, null: true,
          description: 'Author of the commit'

    field :pipelines, Types::Ci::PipelineType.connection_type,
          null: true,
          description: 'Pipelines of the commit ordered latest first',
          resolver: Resolvers::CommitPipelinesResolver

    field :latest_pipeline,
          type: Types::Ci::PipelineType,
          null: true,
          deprecated: { reason: 'Use `pipelines`', milestone: '12.5' },
          description: 'Latest pipeline of the commit',
          resolver: Resolvers::CommitPipelinesResolver.last
  end
end