1. 06 3月, 2019 1 次提交
    • B
      Adjust GraphQL helper to query empty fields · ee4ba6ce
      Bob Van Landuyt 提交于
      These adjustments make sure our GraphQL helpers support rendering
      queries for empty fields like this:
      
            {
              echo(text: "Hello world")
            }
      
      Instead of like this:
      
           {
             echo(text: "Hello world") {
             }
           }
      
      The latter would be an invalid query, causing parsing errors.
      ee4ba6ce
  2. 05 3月, 2019 1 次提交
  3. 14 2月, 2019 1 次提交
  4. 24 1月, 2019 1 次提交
  5. 21 12月, 2018 1 次提交
  6. 26 7月, 2018 1 次提交
  7. 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
  8. 15 6月, 2018 1 次提交
    • B
      Allow querying a single MR within a project · 9403b1d9
      Bob Van Landuyt 提交于
      This allows the user to get a single MR nested in a GraphQL project
      query.
      
      Since we need the full path and the iid anyway, this makes more sense
      than having a root query that needs the full path as well.
      9403b1d9
  9. 06 6月, 2018 4 次提交