Skip to content

Commit

Permalink
Merge pull request #36 from pluralsh/schema-refresh-jul18
Browse files Browse the repository at this point in the history
Refresh Schema
  • Loading branch information
michaeljguarino authored Jul 18, 2024
2 parents 2ccf8f0 + ad04ba6 commit 3dab860
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
22 changes: 16 additions & 6 deletions models_gen.go

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

17 changes: 16 additions & 1 deletion schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ type RootQueryType {

stackDefinitions(after: String, first: Int, before: String, last: Int): StackDefinitionConnection

infrastructureStacks(after: String, first: Int, before: String, last: Int, q: String, projectId: ID): InfrastructureStackConnection
infrastructureStacks(
after: String, first: Int, before: String, last: Int, q: String, projectId: ID, tagQuery: TagQuery
): InfrastructureStackConnection

observabilityProvider(id: ID!): ObservabilityProvider

Expand Down Expand Up @@ -1674,6 +1676,9 @@ input GlobalServiceAttributes {
"a project this global service will sync across"
projectId: ID

"the id of the service creating this"
parentId: ID

"whether you want the global service to take ownership of existing plural services"
reparent: Boolean

Expand Down Expand Up @@ -1706,6 +1711,9 @@ input ManagedNamespaceAttributes {
"a project this managed namespace will sync across"
projectId: ID

"the id of the service creating this"
parentId: ID

service: ServiceTemplateAttributes

target: ClusterTargetAttributes
Expand Down Expand Up @@ -1784,6 +1792,9 @@ type GlobalService {
"behavior for all owned resources when this global service is deleted"
cascade: Cascade

"the service which created this global service"
parent: ServiceDeployment

"a project this global service is bound to"
project: Project

Expand Down Expand Up @@ -1834,6 +1845,9 @@ type ManagedNamespace {
"behavior for all owned resources when this global service is deleted"
cascade: Cascade

"the service which created this managed namespace"
parent: ServiceDeployment

"a project this global service is bound to"
project: Project

Expand Down Expand Up @@ -4068,6 +4082,7 @@ enum GitHealth {
enum ScmType {
GITHUB
GITLAB
BITBUCKET
}

enum MatchStrategy {
Expand Down

0 comments on commit 3dab860

Please sign in to comment.