Ivan Kolmychek
Ivan Kolmychek
@joshprice thank you. While I got the general idea from looking at the code itself and examples for other languages, I think it would benefit anyone who explores the GraphQL...
@0x6e6562 there are some examples in repos from official [GraphQL Github organization](https://github.com/graphql/). - The `graphql-js` [has multiple mentions of them](https://github.com/graphql/graphql-js/search?utf8=%E2%9C%93&q=mutations) - The `express-graphql` has one [example definition of empty mutation](https://github.com/graphql/express-graphql/blob/0bf6aac9ec1c02d42f5de93ff068182c304d56a4/src/__tests__/http-test.js#L58)
The `graphql-relay-js` repo [has multiple mentions](https://github.com/graphql/graphql-relay-js/search?utf8=%E2%9C%93&q=mutation) too.
Also, here is the post on Medium about mutations: https://medium.com/@tarkus/validation-and-user-errors-in-graphql-mutations-39ca79cd00bf
[The docs from `graphql-relay-ruby` also mention mutations](https://github.com/rmosolgo/graphql-relay-ruby#mutations) Quote (empathis mine): > Mutations allow Relay to mutate your system. They conform to a strict API which makes them predictable to the...
I think [this issue](https://github.com/whatyouhide/stream_data/issues/73) can be related.
@bethesque that explaination/example is nice and really looks like something that would be nice to have in wiki or docs. :)
@mpapis Ok, thank you. Anyway, I created this issue more to help others who can stumble upon such behavior and to have a place to post a workaround. But it...