Answers for "Apollo does not support anonymous operations"

0

Apollo does not support anonymous operations

If you are using apolloclient:codegen 
You forgot to name the query on your front-end project


I guess you have queries like this:

{
  items {
    id
    name
  }
}
Instead of the named one:

query GetItems {
  items {
    id
    name
  }
}

The guy in the source saved my day
Posted by: Guest on March-12-2021

Code answers related to "Apollo does not support anonymous operations"

Browse Popular Code Answers by Language