Class: GraphQL::Pagination::Connection::Edge

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/pagination/connection.rb

Overview

A wrapper around paginated items. It includes a #cursor for pagination and could be extended with custom relationship-level data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node, connection) ⇒ Edge

Returns a new instance of Edge.



261
262
263
264
# File 'lib/graphql/pagination/connection.rb', line 261

def initialize(node, connection)
  @connection = connection
  @node = node
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node.



259
260
261
# File 'lib/graphql/pagination/connection.rb', line 259

def node
  @node
end

Instance Method Details

#cursorObject



270
271
272
# File 'lib/graphql/pagination/connection.rb', line 270

def cursor
  @cursor ||= @connection.cursor_for(@node)
end

#parentObject



266
267
268
# File 'lib/graphql/pagination/connection.rb', line 266

def parent
  @connection.parent
end

#was_authorized_by_scope_items?Boolean

Returns:

  • (Boolean)


274
275
276
# File 'lib/graphql/pagination/connection.rb', line 274

def was_authorized_by_scope_items?
  @connection.was_authorized_by_scope_items?
end