Skip to main content
A date-time scalar representing a point in time with timezone information.

Format

  • Input: Flexible ISO 8601 parsing (e.g., 2024-01-15T10:30:00.000Z)
  • Output: yyyy-MM-dd'T'HH:mm:ss.SSS'Z' (always UTC)

Examples

# Query with Date argument
ticketSearch(locationId: "123", minCreated: "2024-01-01T00:00:00.000Z") {
  id
  created {
    date
  }
}
// Response
{
  "created": {
    "date": "2024-01-15T14:30:45.123Z"
  }
}
scalar Date

Member Of

Account object ● allUsers query ● Appointment object ● AppointmentFilter input ● Interaction object ● LabelType object ● Location object ● ProductChange object ● Ticket object ● TicketAudit object ● TicketCancelled object ● TicketCreated object ● TicketExternalData object ● TicketMessage object ● ticketSearch query ● User object