Sha256: 77775c92f4d96623590a2c14601aa41f3fdd1e40f089b6f97bd08f8c02c1d1fa

Contents?: true

Size: 545 Bytes

Versions: 2

Compression:

Stored size: 545 Bytes

Contents

class Taro::Types::ObjectTypes::PageInfoType < Taro::Types::ObjectType
  field :has_previous_page, type: 'Boolean', null: false, desc: 'Whether there is a previous page of results'
  field :has_next_page, type: 'Boolean', null: false, desc: 'Whether there is another page of results'
  field :start_cursor, type: 'String', null: true, desc: 'The first cursor in the current page of results (null if zero results)'
  field :end_cursor, type: 'String', null: true, desc: 'The last cursor in the current page of results (null if zero results)'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
taro-1.1.0 lib/taro/types/object_types/page_info_type.rb
taro-1.0.0 lib/taro/types/object_types/page_info_type.rb