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 930bb7e commit 72a108fCopy full SHA for 72a108f
src/InputObjectParser.ts
@@ -42,6 +42,7 @@ export default class InputObjectParser {
42
if (typeOf === 'number') return 'Float';
43
if (typeOf === 'string') return 'String';
44
if (typeOf === 'boolean') return 'Boolean';
45
+ if (value instanceof Date) return 'Date';
46
47
if (isComposeInputType(value)) {
48
return value;
src/ObjectParser.ts
@@ -42,6 +42,7 @@ export default class ObjectParser {
if (isComposeOutputType(value)) {
0 commit comments