Revert "Merge branch '2.7.x'"

This reverts commit f0677a119c, reversing
changes made to 938d58f32c.
This commit is contained in:
Brian Clozel
2021-12-21 09:05:06 +01:00
parent f0677a119c
commit f61c87c3a7
107 changed files with 10 additions and 6457 deletions

View File

@@ -1,29 +0,0 @@
type Query {
greeting(name: String! = "Spring"): String!
project(slug: ID!): Project
}
""" A Project in the Spring portfolio """
type Project {
""" Unique string id used in URLs """
slug: ID!
""" Project name """
name: String!
""" URL of the git repository """
repositoryUrl: String!
""" Current support status """
status: ProjectStatus!
}
enum ProjectStatus {
""" Actively supported by the Spring team """
ACTIVE
""" Supported by the community """
COMMUNITY
""" Prototype, not officially supported yet """
INCUBATING
""" Project being retired, in maintenance mode """
ATTIC
""" End-Of-Lifed """
EOL
}