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

PageInfo::getpublic staticWC 1.0

Method of the class: PageInfo{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = PageInfo::get(): ObjectType;

PageInfo::get() code WC 10.9.1

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;
}