An error occurred fetching the project authors.
  1. 06 May, 2019 1 commit
    • Jan Provaznik's avatar
      GraphQL - Add extra complexity for resolvers · b8bb2b19
      Jan Provaznik authored
      If a field is a resolver, its complexity is automatically
      increased. By default we add extra points for sort and search
      arguments (which will be common for various resolvers).
      
      For specific resolvers we add field-specific complexity, e.g.
      for Issues complexity is increased if we filter issues by `labelName`
      (because then SQL query is more complex). We may want to tune these
      values in future depending on real-life results.
      
      Complexity is also dependent on the number of loaded nodes, but only
      if we don't search by specific ID(s). Also added complexity is limited
      (by default only twice more than child complexity) - the reason is
      that although it's more complex to process more items, the complexity
      increase is not linear (there is not so much difference between loading
      10, 20 or 100 records from DB).
      b8bb2b19
  2. 06 Jun, 2018 2 commits
  3. 05 Jun, 2018 4 commits