We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e57d3 commit 796fb4eCopy full SHA for 796fb4e
codegen.yml
@@ -16,10 +16,14 @@ config:
16
scalars:
17
URI: 'URI'
18
UUID: 'UUID'
19
- Datetime: 'Date'
+ Datetime: 'Date' # FIXME: wrong type, it's actually a string
20
Cursor: 'string'
21
JSON: '{ [key: string]: any }'
22
Uint256: 'string'
23
+ Int256: 'string'
24
Address: 'string'
25
TransactionHash: 'string'
26
BigFloat: 'string'
27
+ # BigInt: 'string' # FIXME: this breaks the build. Need to fix the type in the codebase
28
+ Bytes32: 'string'
29
+ FullText: 'string'
type.d.ts
@@ -20,7 +20,6 @@ declare module '@pinata/ipfs-gateway-tools/dist/node' {
}
-type IPFS = string
type UUID = string
type URI = string
0 commit comments