debian-mirror-gitlab/lib/gitlab/graphql/connection_collection_methods.rb

14 lines
252 B
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
module Gitlab
module Graphql
module ConnectionCollectionMethods
extend ActiveSupport::Concern
included do
2021-11-18 22:05:49 +05:30
delegate :to_a, :size, :map, :include?, :empty?, to: :nodes
2021-02-22 17:27:13 +05:30
end
end
end
end