igor-starostenko/report_factory

View on GitHub
app/graphql/connections/reports_connection.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

ReportsConnection = ReportType.define_connection do
  name 'ReportsConnection'

  field :totalCount, !types.Int do
    resolve lambda { |obj, _args, _ctx|
      obj.nodes.count
    }
  end
end