Automattic\WooCommerce\Api\Infrastructure\Schema

CustomScalarType{}WC 1.0

Stable subclass of the underlying GraphQL engine's CustomScalarType, used by autogenerated custom scalar types.

The constructor accepts the same associative-array config the current engine (webonyx) documents (keys: name, description, serialize, parseValue, parseLiteral).

A metadata config key may also be provided; see ObjectType::get_metadata() for the semantics.

No Hooks.

Usage

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

Methods

  1. public get_metadata()
  2. ERROR: no method name found on line ``
  3. ERROR: no method name found on line ``
  4. ERROR: no method name found on line ``
  5. ERROR: no method name found on line ``
  6. ERROR: no method name found on line ``

CustomScalarType{} code WC 10.9.1

class CustomScalarType extends \Automattic\WooCommerce\Vendor\GraphQL\Type\Definition\CustomScalarType {
	/**
	 * Type-level metadata entries declared in the config, keyed by name.
	 *
	 * @return array<string, bool|int|float|string|null>
	 */
	public function get_metadata(): array {
		return $this->config['metadata'] ?? array();
	}
}