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 22, 2024
1 parent 92a1f2a commit 44fd04e
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,24 @@ type ImageNode implements Node {

"""Added in 24.03.4. The undecoded id value stored in DB."""
row_id: UUID
name: String
name: String @deprecated(reason: "Deprecated since 24.09.1. use `namespace` instead")

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'ImageNode.name' is deprecated

Field 'ImageNode.name' is deprecated

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'ImageNode.name' has deprecation reason 'Deprecated since 24.09.1. use `namespace` instead'

Field 'ImageNode.name' has deprecation reason 'Deprecated since 24.09.1. use `namespace` instead'

"""Added in 24.09.1."""
namespace: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'namespace' was added to object type 'ImageNode'

Field 'namespace' was added to object type 'ImageNode'

"""Added in 24.09.1."""
base_image_name: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'base_image_name' was added to object type 'ImageNode'

Field 'base_image_name' was added to object type 'ImageNode'

"""Added in 24.03.10."""
project: String
humanized_name: String
tag: String

"""Added in 24.09.1."""
tags: [KVPair]

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'tags' was added to object type 'ImageNode'

Field 'tags' was added to object type 'ImageNode'

"""Added in 24.09.1."""
version: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'version' was added to object type 'ImageNode'

Field 'version' was added to object type 'ImageNode'
registry: String
architecture: String
is_local: Boolean
Expand Down Expand Up @@ -515,12 +527,24 @@ type Group {

type Image {
id: UUID
name: String
name: String @deprecated(reason: "Deprecated since 24.09.1. use `namespace` instead")

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'Image.name' is deprecated

Field 'Image.name' is deprecated

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'Image.name' has deprecation reason 'Deprecated since 24.09.1. use `namespace` instead'

Field 'Image.name' has deprecation reason 'Deprecated since 24.09.1. use `namespace` instead'

"""Added in 24.09.1."""
namespace: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'namespace' was added to object type 'Image'

Field 'namespace' was added to object type 'Image'

"""Added in 24.09.1."""
base_image_name: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'base_image_name' was added to object type 'Image'

Field 'base_image_name' was added to object type 'Image'

"""Added in 24.03.10."""
project: String
humanized_name: String
tag: String

"""Added in 24.09.1."""
tags: [KVPair]

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'tags' was added to object type 'Image'

Field 'tags' was added to object type 'Image'

"""Added in 24.09.1."""
version: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'version' was added to object type 'Image'

Field 'version' was added to object type 'Image'
registry: String
architecture: String
is_local: Boolean
Expand Down

0 comments on commit 44fd04e

Please sign in to comment.