Skip to content

Commit

Permalink
chore: update GraphQL schema dump
Browse files Browse the repository at this point in the history
  • Loading branch information
fregataa committed Oct 29, 2024
1 parent f5729a1 commit b7cab00
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,12 @@ type ComputeSessionNode implements Node {
vfolder_mounts: [String]
occupied_slots: JSONString
requested_slots: JSONString

"""Added in 24.12.0."""
image_references: [String]

Check notice on line 1050 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'image_references' was added to object type 'ComputeSessionNode'

Field 'image_references' was added to object type 'ComputeSessionNode'

"""Added in 24.12.0."""
vfolder_nodes(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): VirtualFolderConnection

Check notice on line 1053 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'vfolder_nodes' was added to object type 'ComputeSessionNode'

Field 'vfolder_nodes' was added to object type 'ComputeSessionNode'
num_queries: BigInt
inference_metrics: JSONString
kernel_nodes(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): KernelConnection
Expand Down Expand Up @@ -1098,6 +1104,11 @@ type KernelNode implements Node {
cluster_hostname: String
session_id: UUID
image: ImageNode

"""
Added in 24.12.0. The architecture that the image of this kernel requires
"""
architecture: String

Check notice on line 1111 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'architecture' was added to object type 'KernelNode'

Field 'architecture' was added to object type 'KernelNode'
status: String
status_changed: DateTime
status_info: String
Expand Down

0 comments on commit b7cab00

Please sign in to comment.