ServiceInfo

Service status information type containing version and timestamp

Audience: System Administrator

The ServiceInfo type provides basic status information about a pyck microservice, including its version number and current timestamp. This type is returned by all service status queries.

Fields

Field
Type
Description

version

String!

The semantic version number of the service (e.g., "1.2.3")

date

Time!

The current timestamp from the service

Usage

ServiceInfo is used exclusively as the return type for service status queries. Each microservice in the pyck architecture exposes a status query that returns this type.

Example

query {
  inventory {
    version
    date
  }
  management {
    version
    date
  }
}

Response Example

Notes

  • The version field typically follows semantic versioning (MAJOR.MINOR.PATCH)

  • The date field uses ISO 8601 format with timezone information

  • These status endpoints are public and don't require authentication

Last updated

Was this helpful?