Skip to content

Commit

Permalink
chore: update GraphQL schema dump
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho authored and github-actions[bot] committed Sep 2, 2024
1 parent 86fbc4c commit 3941360
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ type Queries {

"""Added in 24.03.0."""
model_cards(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): ModelCardConnection
network(id: UUID!): NetworkNode
network(id: String!): NetworkNode

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type for argument 'id' on field 'Queries.network' changed from 'UUID!' to 'String!'

Changing the type of a field's argument can cause existing queries that use this argument to error.
networks(filter: String, order: String, offset: Int, before: String, after: String, first: Int, last: Int): NetworkConnection
}

Expand Down Expand Up @@ -1295,9 +1295,12 @@ type NetworkNode implements Node {
row_id: UUID
name: String
ref_name: String
driver: String

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'driver' was added to object type 'NetworkNode'

New fields must include a description with a version number in the format "Added in XX.XX.X."
project: UUID
domain_name: String
options: JSONString
created_at: DateTime

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'created_at' was added to object type 'NetworkNode'

New fields must include a description with a version number in the format "Added in XX.XX.X."
updated_at: DateTime

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'updated_at' was added to object type 'NetworkNode'

New fields must include a description with a version number in the format "Added in XX.XX.X."
}

type NetworkConnection {
Expand Down Expand Up @@ -1439,9 +1442,9 @@ type Mutations {
modify_container_registry(hostname: String!, props: ModifyContainerRegistryInput!): ModifyContainerRegistry
delete_container_registry(hostname: String!): DeleteContainerRegistry
modify_endpoint(endpoint_id: UUID!, props: ModifyEndpointInput!): ModifyEndpoint
create_network(name: String!, project: UUID!): CreateNetwork
modify_network(network_id: UUID!, props: ModifyNetworkInput!): ModifyNetwork
delete_network(network_id: UUID!): DeleteNetwork
create_network(driver: String, name: String!, project_id: UUID!): CreateNetwork

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New arguments must include a description with a version number in the format "Added in XX.XX.X.", Argument 'driver: String' added to field 'Mutations.create_network'

New arguments must include a description with a version number in the format "Added in XX.XX.X."

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New arguments must include a description with a version number in the format "Added in XX.XX.X.", Argument 'project_id: UUID!' added to field 'Mutations.create_network'

New arguments must include a description with a version number in the format "Added in XX.XX.X."

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'project: UUID!' was removed from field 'Mutations.create_network'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.
modify_network(network: String!, props: ModifyNetworkInput!): ModifyNetwork

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New arguments must include a description with a version number in the format "Added in XX.XX.X.", Argument 'network: String!' added to field 'Mutations.modify_network'

New arguments must include a description with a version number in the format "Added in XX.XX.X."

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'network_id: UUID!' was removed from field 'Mutations.modify_network'

Removing a field argument is a breaking change because it will cause existing queries that use this argument to error.
delete_network(network: String!): DeleteNetwork

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New arguments must include a description with a version number in the format "Added in XX.XX.X.", Argument 'network: String!' added to field 'Mutations.delete_network'

New arguments must include a description with a version number in the format "Added in XX.XX.X."

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

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Argument 'network_id: UUID!' was removed from field 'Mutations.delete_network'

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

type ModifyAgent {
Expand Down

0 comments on commit 3941360

Please sign in to comment.