1. 05 9月, 2019 1 次提交
  2. 23 8月, 2019 1 次提交
    • A
      Expose namespace storage statistics with GraphQL · 606a1d2d
      Alessio Caiazza 提交于
      Root namespaces have storage statistics.
      This commit allows namespace owners to get those stats via GraphQL
      queries like the following one
      
      {
        namespace(fullPath: "a_namespace_path") {
          rootStorageStatistics {
            storageSize
            repositorySize
            lfsObjectsSize
            buildArtifactsSize
            packagesSize
            wikiSize
          }
        }
      }
      606a1d2d
  3. 28 6月, 2019 1 次提交
  4. 11 6月, 2019 1 次提交
  5. 10 6月, 2019 1 次提交
  6. 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
  7. 03 6月, 2019 1 次提交
  8. 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