Hello,
I'm trying to integrate Apollo with my iOS application. While following the steps from the doc I faced one issue in run script section and that is: Apollo does not support anonymous operations. I also looked around the same issue on this repo but I can't able to solve my problem.

Here are my project structure and run script,

_userRegistration.graphql_ contain,

Any help would be appreciated!
Hi!
You need to add a query like this
mutation UserRegistration {
/// You query
}
Thus, a name for the query after the mutation or query
Thank you @kimdv! It works. 馃挴
Most helpful comment
Hi!
You need to add a query like this
Thus, a name for the query after the
mutationorquery