You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An empty schema.gql should not be required to make the framework start. The framework currently fails because type Mutation is inserted into the complete SDL but does not hold any mutation.
extend type Mutation {
"""
Some Mutation
"""
someMutation: String! @custom(resolver: "someMutation")
}
extend type Query {
"""
Some Query
"""
someQuery: String! @custom(resolver: "someQuery")
}
The text was updated successfully, but these errors were encountered:
Package
Description / Use Case for a Feature
An empty
schema.gql
should not be required to make the framework start. The framework currently fails becausetype Mutation
is inserted into the complete SDL but does not hold any mutation.The text was updated successfully, but these errors were encountered: