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 29, 2024
1 parent a1bf3e5 commit f5cc7fc
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1050,10 +1050,12 @@ type ComputeSessionNode implements Node {
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
vfolder_nodes: [VirtualFolderNode]

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

"""Added in 24.9.0."""
kernel_nodes: [KernelNode]

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'ComputeSessionNode.kernel_nodes' has description 'Added in 24.9.0.'

Field 'ComputeSessionNode.kernel_nodes' has description 'Added in 24.9.0.'

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'ComputeSessionNode.kernel_nodes' changed type from 'KernelConnection' to '[KernelNode]'

Field 'ComputeSessionNode.kernel_nodes' changed type from 'KernelConnection' to '[KernelNode]'

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'filter: String' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'order: String' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'offset: Int' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'before: String' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'after: String' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'first: Int' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

Check failure on line 1058 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'last: Int' was removed from field 'ComputeSessionNode.kernel_nodes'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.

"""Added in 24.09.0."""
dependents(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): ComputeSessionConnection
Expand All @@ -1070,27 +1072,6 @@ Added in 24.09.0. One of ['read_attribute', 'update_attribute', 'delete_session'
"""
scalar SessionPermissionValueField

"""Added in 24.09.0."""
type KernelConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!

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

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

"""Added in 24.09.0. A Relay edge containing a `Kernel` and its cursor."""
type KernelEdge {
"""The item at the end of the edge"""
node: KernelNode

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

"""Added in 24.09.0."""
type KernelNode implements Node {
"""The ID of the object"""
Expand All @@ -1105,6 +1086,9 @@ type KernelNode implements Node {
session_id: UUID
image: ImageNode

"""Added in 24.12.0."""
image_reference: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

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

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

"""
Added in 24.12.0. The architecture that the image of this kernel requires
"""
Expand Down

0 comments on commit f5cc7fc

Please sign in to comment.