BigInt and BigDecimal
Checkpoint provides support for BigInt
, Decimal
, BigDecimal
. It's also possible to define custom (or define existing) decimal types.
PostgreSQL mappings
BigInt and BigDecimal types are mapped to following PostgreSQL types by default:
BigInt
->bigint
Decimal
->decimal(10, 2)
BigDecimal
-> decimal(20, 8)
Using BigInt and BigDecimal types
To use default (or custom) BigInt and BigDecimal type it needs to be predeclared in GraphQL schema using scalar
keyword. Once it's declared it can be used as field's type.
Custom decimal types
It's possible to define new or to redefine existing decimal types using overrides. This file should be called overrides.json and stored in your source directory.
You can then pass those to Checkpoint via options:
Last updated
Was this helpful?