gitlab-org--gitlab-foss/app/graphql/types
Jan Provaznik 5ee7884d91 GraphQL - Add extra complexity for resolvers
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).
2019-05-06 21:24:19 +00:00
..
ci GraphQL Type authorization 2019-04-03 14:36:33 +13:00
permission_types Basic GraphQL for a group 2019-04-23 11:16:05 -05:00
base_enum.rb
base_field.rb GraphQL - Add extra complexity for resolvers 2019-05-06 21:24:19 +00:00
base_input_object.rb
base_interface.rb
base_object.rb
base_scalar.rb
base_union.rb
group_type.rb Basic GraphQL for a group 2019-04-23 11:16:05 -05:00
issuable_state_enum.rb
issue_state_enum.rb
issue_type.rb GraphQL - Add extra complexity for resolvers 2019-05-06 21:24:19 +00:00
label_type.rb
merge_request_state_enum.rb
merge_request_type.rb GraphQL Type authorization 2019-04-03 14:36:33 +13:00
metadata_type.rb
milestone_type.rb GraphQL Type authorization 2019-04-03 14:36:33 +13:00
mutation_type.rb
namespace_type.rb Refactor group query spec 2019-04-23 12:00:45 -05:00
order.rb
project_type.rb Basic GraphQL for a group 2019-04-23 11:16:05 -05:00
query_type.rb Basic GraphQL for a group 2019-04-23 11:16:05 -05:00
sort.rb
time_type.rb
user_type.rb GraphQL Type authorization 2019-04-03 14:36:33 +13:00