- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I'm using SWR with GraphQL and feel that keys are not easy to read because newlines(\n) are printed as it is.
For example, a key is shown as
@"\n query GetUser(\n $id: ID ) {\n getUser(\n id: $id\n ) {\n name\n }\n }\n",#id:"xyz",
And I prefer
query GetUser(
  $id: ID
) {
  getUser(
    id: $id
  ) {
     name
  }
}
id: "xyz"
Is there a plan to enable it?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request