1. 14 4月, 2020 1 次提交
  2. 08 4月, 2020 2 次提交
  3. 06 4月, 2020 1 次提交
  4. 31 3月, 2020 1 次提交
  5. 27 3月, 2020 2 次提交
  6. 26 3月, 2020 1 次提交
  7. 20 3月, 2020 1 次提交
  8. 16 3月, 2020 1 次提交
  9. 13 3月, 2020 3 次提交
  10. 06 3月, 2020 1 次提交
  11. 03 3月, 2020 1 次提交
  12. 27 2月, 2020 1 次提交
  13. 12 2月, 2020 1 次提交
  14. 10 2月, 2020 1 次提交
  15. 06 2月, 2020 1 次提交
  16. 04 2月, 2020 1 次提交
  17. 20 1月, 2020 1 次提交
  18. 08 1月, 2020 1 次提交
  19. 29 11月, 2019 1 次提交
  20. 27 11月, 2019 1 次提交
  21. 18 11月, 2019 1 次提交
  22. 14 11月, 2019 1 次提交
  23. 01 11月, 2019 1 次提交
  24. 29 10月, 2019 1 次提交
  25. 23 10月, 2019 1 次提交
  26. 16 10月, 2019 1 次提交
  27. 19 9月, 2019 1 次提交
  28. 06 9月, 2019 1 次提交
  29. 11 7月, 2019 1 次提交
  30. 05 7月, 2019 1 次提交
    • M
      Small markdown tweaks to clear kramdown warnings · e108f0d9
      Marcel Amirault 提交于
      Fixing square brackets, links, etc in:
        merge_requests.md
        vulnerabilities.md
        issues.md
        issues_statistics.md
        pipelines.md
        services.md
        group_milestones.md
        milestones.md
        runners.md
        changelog.md
        issue_workflow.md
        elasticsearch.md
        api_graphql_styleguide.md
        automatic_ce_ee_merge.md
        file_storage.md
        architecture.md
        database_debugging.md
        index.md
        index.md
        frontend_testing.md
        pry_debugging.md
        vue.md
        development_process.md
      e108f0d9
  31. 26 6月, 2019 1 次提交
  32. 25 6月, 2019 1 次提交
  33. 18 6月, 2019 1 次提交
  34. 04 6月, 2019 1 次提交
    • B
      Expose IDs in GraphQL as a GlobalID · ed503d51
      Bob Van Landuyt 提交于
      This exposes all fields named `id` as GlobalIDs so they can be used
      across our entire GraphQL implementation.
      
      When the objects loaded are `ApplicationRecord`s. We'll use our
      existing batchloading to find them. Otherwise, we'll fall back to the
      default implementation of `GlobalID`: Calling the `.find` method on
      the class.
      ed503d51
  35. 03 4月, 2019 1 次提交
  36. 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