We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451a511 commit 48d6c3aCopy full SHA for 48d6c3a
README.md
@@ -264,14 +264,6 @@ $character = new UnionType(
264
);
265
```
266
267
-### Types
268
-
269
-#### 🕰️ DateTime
270
271
-scalar type that produces `scalar DateTime` in your schema.
272
273
-[`SimPod\GraphQLUtils\Type\DateTimeType`](https://github.com/simPod/GraphQL-Utils/blob/master/src/Type/DateTimeType.php)
274
275
### Error Handling
276
277
Extending your exception with `SimPod\GraphQLUtils\Error\Error` forces you to implement `getType()` method.
src/Type/DateTimeType.php
@@ -21,6 +21,7 @@
21
use function strpos;
22
use function substr;
23
24
+/** @deprecated Use https://github.com/mll-lab/graphql-php-scalars */
25
class DateTimeType extends CustomScalarType
26
{
27
private const NAME = 'DateTime';
0 commit comments