graphql-metadata
graphql-metadata copied to clipboard
Missing function to strip multiline metadata annotations
stripAnnotations
can remove any line that begins with @
, but will not strip multiline metadata annotations like this:
"""
@model(
create: true,
update: false
)
"""
type User {
}
A stripMetadata
function is needed for this.