Service
Query to fetch services.
type Service {
id: ID!
name: String!
description: String
createdAt: DateTime
ipAddresses(
status: StatusEnum
): [AssociatedIpsService!]!
}
Fields
Service.id
● ID!
non-null scalar
The unique identifier of the service.
Service.name
● String!
non-null scalar
The name of service.
Service.description
● String
scalar
A brief description of the service.
Service.createdAt
● DateTime
scalar
Tiempo de creacion
Service.ipAddresses
● [AssociatedIpsService!]!
non-null object
Fetches the associated Ip addresses of the service, filtered by an optional status parameter.
Service.ipAddresses.status
● StatusEnum
enum
Member Of
InfraestructureQuery
object