Skip to content

Commit

Permalink
Merge pull request #35 from pluralsh/schema-refresh-jul10
Browse files Browse the repository at this point in the history
Refresh schema july 10
  • Loading branch information
michaeljguarino authored Jul 10, 2024
2 parents 7437c5c + 0000cbb commit 5ef2b9c
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
16 changes: 16 additions & 0 deletions models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,28 @@ type RootQueryType {
cluster: String
): ServiceDeploymentConnection

"Renders a filtered list of services and all their descendents returned as a paginated connection"
serviceTree(
after: String

first: Int

before: String

last: Int

clusterId: ID

q: String

status: ServiceDeploymentStatus

errored: Boolean

"a project to filter services w\/in"
projectId: ID
): ServiceDeploymentConnection

serviceStatuses(clusterId: ID, q: String, status: ServiceDeploymentStatus, projectId: ID): [ServiceStatusCount]

serviceContext(name: String!): ServiceContext
Expand Down Expand Up @@ -410,6 +432,8 @@ type RootMutationType {

deleteUser(id: ID!): User

impersonateServiceAccount(email: String!): User

markRead(type: ReadType): User

createGroup(attributes: GroupAttributes!): Group
Expand Down Expand Up @@ -3945,6 +3969,9 @@ type AddonVersion {
"any add-ons this might break"
incompatibilities: [VersionReference]

"the version of the helm chart to install for this version"
chartVersion: String

"the release page for a runtime service at a version, this is a heavy operation not suitable for lists"
releaseUrl(version: String!): String

Expand Down Expand Up @@ -4156,6 +4183,8 @@ input PrAutomationAttributes {

creates: PrAutomationCreateSpecAttributes

deletes: PrAutomationDeleteSpecAttributes

"link to an add-on name if this can update it"
addon: String

Expand Down Expand Up @@ -4222,6 +4251,12 @@ input PrAutomationCreateSpecAttributes {
templates: [PrAutomationTemplateAttributes]
}

"Operations to delete files within this pr"
input PrAutomationDeleteSpecAttributes {
files: [String!]
folders: [String!]
}

"a fully specify regex\/replace flow"
input RegexReplacementAttributes {
regex: String!
Expand Down Expand Up @@ -4416,6 +4451,8 @@ type PrAutomation {

creates: PrCreateSpec

deletes: PrDeleteSpec

configuration: [PrConfiguration]

"write policy for this pr automation, also propagates to the notifications list for any created PRs"
Expand Down Expand Up @@ -4462,6 +4499,12 @@ type PrCreateSpec {
templates: [PrTemplateSpec]
}

"Files or folders you want to delete in this pr"
type PrDeleteSpec {
files: [String!]
folders: [String!]
}

"the details of where to find and place a templated file"
type PrTemplateSpec {
source: String!
Expand Down

0 comments on commit 5ef2b9c

Please sign in to comment.