LogoLogo
DocsHomeSupportContact
  • Getting Started
    • Introduction
    • Build on DIMO
  • DEVELOPER GUIDE
    • Developer Overview
    • Developer Console
    • Authentication
    • DIMO Developer SDKs
      • Data SDK
      • Login with DIMO SDK
        • React Component
        • Login with DIMO Redirect
        • Core Functionalities
      • TypeScript: Transactions SDK
      • SDK Release Notes
    • Low Code Tools
      • n8n: Getting Started
    • Permissions Contract: SACD
    • DIMO Credits
    • Response Types
    • Rate Limits
    • Developer FAQ
    • Developer Changelogs
    • Troubleshooting Common Issues
  • API References
    • Overview of DIMO API
    • Attestation API
    • Device Definitions API
    • Identity API
      • Schema & Types
      • Scalars
      • Nodes & Objects
        • AftermarketDevice
        • AftermarketDeviceConnection
        • DCN
        • DCNConnection
        • DeveloperLicense
        • DeviceDefinition
        • Earning
        • EarningsConnection
        • Manufacturer
        • Sacd
        • SyntheticDevice
        • Vehicle
        • VehicleConnection
        • VehicleEarnings
        • UserRewards
      • Common Queries
    • Telemetry API
      • Schema & Types
      • Scalars
      • Nodes & Objects
        • Signals
        • SignalsLatest
      • Common Queries
    • Token Exchange API
    • Trips API
    • Valuations API
  • DIMO Hardware
    • Introduction
    • DIMO Hardware Application
    • DIMO Manufacturing License
    • Development & Certification
    • Audits & Assessments
      • Hardware & Security Audit
      • Customer Experience Assessment
      • Integration Testing & Quality Control
      • Final Approval
    • DIMO Device License
      • Device Minting Certificates
    • Essential Documents
      • Hardware & Security Audit Checklist
      • Approved Hardware Auditors
      • DIMO Memorandum of Understanding (MOU)
  • Additional References
    • Developer License
    • DIMO GraphQL Basics
  • Deprecated Resources
    • Guides
      • Developer Journey
      • Quick Start Guide
      • Hello World
      • Code Exchange Flow
    • Data Availability
Powered by GitBook
On this page
  • Address
  • BigDecimal
  • BigInt
  • Boolean
  • Bytes
  • Float
  • ID
  • Int
  • String
  • Time

Was this helpful?

  1. API References
  2. Identity API

Scalars

PreviousSchema & TypesNextNodes & Objects

Last updated 10 months ago

Was this helpful?

Scalars are the value types that every field in a GraphQL document eventually resolves to. It can be viewed as the primitive data type that stores a single value. There are 5 built-in scalars: int, float, string, Boolean, and id - we have also defined custom scalars to help define the data we return.

Address

A 20-byte Ethereum address, encoded as a checksummed hex string with 0x prefix.

BigDecimal

An arbitrary-precision decimal data type, per the General Decimal Arithmetic specification. Learn more about why BigDecimal is .

BigInt

An integer of arbitrary precision, decimal-encoded. Typically a uint256.

Boolean

Represents a boolean value that can be either true or false.

Bytes

An array of byte, encoded as a lowercase hex string with 0x prefix.

Float

A signed double-precision floating-point value.

ID

A unique identifier, often used to refetch an object or as a key for caching.

Int

A signed 32-bit integer.

String

A UTF-8 character sequence.

Time

A point in time, encoded per . This is in second precision and in UTC, an example would be 2023-12-04T18:32:12Z.

ideal for monetary calculations
RFC-3999