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 authored and github-actions[bot] committed Oct 28, 2024
1 parent ef66765 commit f3c8d38
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 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,15 @@ 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."""
image_nodes(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): ImageConnection

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

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

Field 'image_nodes' 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 1056 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 All @@ -1064,6 +1073,27 @@ Added in 24.09.0. One of ['read_attribute', 'update_attribute', 'delete_session'
"""
scalar SessionPermissionValueField

"""Added in 24.12.0."""
type ImageConnection {

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'ImageConnection' was added

Type 'ImageConnection' was added
"""Pagination data for this connection."""
pageInfo: PageInfo!

"""Contains the nodes in this connection."""
edges: [ImageEdge]!

"""Total count of the GQL nodes of the query."""
count: Int
}

"""Added in 24.12.0. A Relay edge containing a `Image` and its cursor."""
type ImageEdge {

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'ImageEdge' was added

Type 'ImageEdge' was added
"""The item at the end of the edge"""
node: ImageNode

"""A cursor for use in pagination"""
cursor: String!
}

"""Added in 24.09.0."""
type KernelConnection {
"""Pagination data for this connection."""
Expand Down

0 comments on commit f3c8d38

Please sign in to comment.