I'm mocking a schema from Prisma which includes block comments like:
"""
The subscription event gets only dispatched when all of the field names included in this list have been updated
"""
updatedFields_contains_every: [String!]
but graphql-faker seems to dislike the """ format comments, complaining:
Syntax Error GraphQL (147:3) Expected Name, found String 146: 147: """ ^ 148: The subscription event gets only dispatched when all of the field names included in this list have been updated
Would it be possible to support schemas with this style of comments, so I can easily deploy graphql-faker using only the schema from my repo?
I'm mocking a schema from Prisma which includes block comments like:
but graphql-faker seems to dislike the
"""
format comments, complaining:Would it be possible to support schemas with this style of comments, so I can easily deploy graphql-faker using only the schema from my repo?