File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010## Unreleased
1111
12+ ## v6.2.0
13+
14+ ### Added
15+
16+ - Add a new scalar ` BigInt `
17+
1218## v6.1.0
1319
1420### Added
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ A collection of custom scalar types for usage with https://github.com/webonyx/gr
1818You can use the provided Scalars just like any other type in your schema definition.
1919Check [ SchemaUsageTest] ( tests/SchemaUsageTest.php ) for an example.
2020
21+ ### [ BigInt] ( src/BigInt.php )
22+
23+ An arbitrarily long sequence of digits that represents a big integer.
24+
2125### [ Date] ( src/Date.php )
2226
2327A date string with format ` Y-m-d ` , e.g. ` 2011-05-23 ` .
Original file line number Diff line number Diff line change 55class BigInt extends Regex
66{
77 public ?string $ description = <<<'DESCRIPTION'
8- A hexadecimal color is specified with: `#RRGGBB`, where `RR` (red), `GG` (green) and `BB` (blue)
9- are hexadecimal integers between `00` and `FF` specifying the intensity of the color.
8+ An arbitrarily long sequence of digits that represents a big integer.
109DESCRIPTION;
1110
1211 public static function regex (): string
You can’t perform that action at this time.
0 commit comments