1. 03 4月, 2019 1 次提交
  2. 02 4月, 2019 1 次提交
    • J
      Monitor GraphQL with Prometheus · 0e66357a
      Jan Provaznik 提交于
      Extends graphql's platform tracing class to observe duration
      of graphql methods.
      
      In graphql 1.8.11 is added prometheus class but it's not very useful
      for us because it uses prometheus_exporter to export results.
      0e66357a
  3. 21 3月, 2019 1 次提交
    • S
      Add merge request popover with details · 1a14e523
      Sam Bigelow 提交于
      - Show pipeline status, title, MR Status and project path
      - Popover attached to gitlab flavored markdown everywhere, including:
        + MR/Issue Title
        + MR/Issue description
        + MR/Issue comments
        + Rendered markdown files
      1a14e523
  4. 05 3月, 2019 1 次提交
  5. 26 2月, 2019 1 次提交
    • L
      Improve GraphQL Authorization DSL · ccb4edbc
      Luke Duncalfe 提交于
      Previously GraphQL field authorization happened like this:
      
          class ProjectType
            field :my_field, MyFieldType do
              authorize :permission
            end
          end
      
      This change allowed us to authorize like this instead:
      
          class ProjectType
            field :my_field, MyFieldType, authorize: :permission
          end
      
      A new initializer registers the `authorize` metadata keyword on GraphQL
      Schema Objects and Fields, and we can collect this data within the
      context of Instrumentation like this:
      
          field.metadata[:authorize]
      
      The previous functionality of authorize is still being used for
      mutations, as the #authorize method here is called at during the code
      that executes during the mutation, rather than when a field resolves.
      
      https://gitlab.com/gitlab-org/gitlab-ce/issues/57828
      ccb4edbc
  6. 21 2月, 2019 1 次提交
  7. 18 2月, 2019 2 次提交
  8. 14 2月, 2019 4 次提交
  9. 06 2月, 2019 1 次提交
  10. 01 2月, 2019 1 次提交
  11. 24 1月, 2019 1 次提交
  12. 27 11月, 2018 1 次提交
    • P
      Suggests issues when typing title · 50e21a89
      Phil Hughes 提交于
      This suggests possibly related issues when the user types a title.
      
      This uses GraphQL to allow the frontend to request the exact
      data that is requires. We also get free caching through the Vue Apollo
      plugin.
      
      With this we can include the ability to import .graphql files in JS
      and Vue files.
      Also we now have the Vue test utils library to make testing
      Vue components easier.
      
      Closes #22071
      50e21a89
  13. 26 11月, 2018 1 次提交
    • D
      Batch load only data from same repository when lazy object is accessed · 5f0e4040
      Douwe Maan 提交于
      By specifying `key`, we get a different lazy batch loader for each
      repository, which means that accessing a lazy object from one repository
      will only result in that repository's objects being fetched, not those
      of other repositories, saving us some unnecessary Gitaly lookups.
      5f0e4040
  14. 05 10月, 2018 1 次提交
  15. 12 9月, 2018 1 次提交
  16. 11 9月, 2018 1 次提交
  17. 26 7月, 2018 1 次提交
  18. 04 7月, 2018 1 次提交
    • B
      Add pipeline lists to GraphQL · 04b04658
      Bob Van Landuyt 提交于
      This adds Keyset pagination to GraphQL lists. PoC for that is
      pipelines on merge requests and projects.
      
      When paginating a list, the base-64 encoded id of the ordering
      field (in most cases the primary key) can be passed in the `before` or
      `after` GraphQL argument.
      04b04658
  19. 28 6月, 2018 1 次提交
  20. 15 6月, 2018 2 次提交
  21. 06 6月, 2018 4 次提交