Get min value.
import { integers } from "@protofire/subgraph-devkit";import { BigInt } from "@graphprotocol/graph-ts";const a = BigInt.fromI32(100);const b = BigInt.fromI32(101);integers.min(a, b); // => 100
the min value.
the BigInt number.
Generated using TypeDoc
Get min value.
Example
Returns
the min value.