Created
May 19, 2019 02:30
-
-
Save hatappi/c3a0e50eba2494ef85ed09be12a214da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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