-
Notifications
You must be signed in to change notification settings - Fork 88
Open
ballerina-platform/module-ballerina-graphql
#2438Labels
Area/ToolingCredits/30HacktoberfestType/Improvementgood first issueGood for newcomersGood for newcomersmodule/graphql-toolIssues related to Ballerina GraphQL CLI toolIssues related to Ballerina GraphQL CLI tool
Description
Description:
The Ballerina GraphQL tool generates the schema from the Ballerina service. This generated schema file is not ordered properly. Ideally, we should order the types so the schema looks nice.
It should be something like this:
type Query {
# ...
}
type Mutation {
# ...
}
type Subscription {
# ...
}
interface I {
# ...
}
type Foo {
# ...
}
input Bar {
# ...
}
enum E {
# ...
}
union #...
Metadata
Metadata
Assignees
Labels
Area/ToolingCredits/30HacktoberfestType/Improvementgood first issueGood for newcomersGood for newcomersmodule/graphql-toolIssues related to Ballerina GraphQL CLI toolIssues related to Ballerina GraphQL CLI tool
Type
Projects
Status
Todo