Automattic\WooCommerce\Internal\Api\Autogenerated\GraphQLTypes\Pagination

PageInfo{}WC 1.0

No Hooks.

Usage

$PageInfo = new PageInfo();
// use class methods

Methods

  1. public static get()

PageInfo{} code WC 10.9.1

class PageInfo {
	private static ?ObjectType $instance = null;

	public static function get(): ObjectType {
		if ( null === self::$instance ) {
			self::$instance = new ObjectType(
				array(
					'name'   => 'PageInfo',
					'fields' => array(
						'has_next_page'     => array(
							'type' => Type::nonNull( Type::boolean() ),
						),
						'has_previous_page' => array(
							'type' => Type::nonNull( Type::boolean() ),
						),
						'start_cursor'      => array(
							'type' => Type::string(),
						),
						'end_cursor'        => array(
							'type' => Type::string(),
						),
					),
				)
			);
		}
		return self::$instance;
	}
}