Skip to content

Instantly share code, notes, and snippets.

@hatappi
Created May 19, 2019 02:30
Show Gist options
  • Save hatappi/c3a0e50eba2494ef85ed09be12a214da to your computer and use it in GitHub Desktop.
Save hatappi/c3a0e50eba2494ef85ed09be12a214da to your computer and use it in GitHub Desktop.
module Types
class BaseConnection < GraphQL::Types::Relay::BaseConnection
field :total_count, Int, null: false
def total_count
object.nodes.size
end
end
class BaseObject < GraphQL::Schema::Object
connection_type_class Types::BaseConnection
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment