Skip to content

Commit

Permalink
3.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Jul 20, 2022
1 parent b5bcb82 commit 699f1c1
Show file tree
Hide file tree
Showing 6 changed files with 356 additions and 356 deletions.
4 changes: 2 additions & 2 deletions api/dist/Fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,15 +390,15 @@ class ResultContext {
t(value);
}
else {
t(`"${value.replace('"', '\\"')}"`);
t(JSON.stringify(value));
}
}
else if (typeof value === 'boolean') {
t(value ? "true" : "false");
}
else if (value instanceof StringValue) {
if (value.quotationMarks) {
t(`"${value.value.replace('"', '\\"')}"`);
t(JSON.stringify(value.value));
}
else {
t(value.value);
Expand Down
6 changes: 3 additions & 3 deletions example/client/relay-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@types/react-relay": "^11.0.2",
"@types/relay-runtime": "^11.0.3",
"antd": "^4.16.13",
"graphql-ts-client-api": "^3.1.10",
"graphql-ts-client-relay": "^3.1.10",
"graphql-ts-client-api": "^3.1.11",
"graphql-ts-client-relay": "^3.1.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-relay": "^12.0.0",
Expand Down Expand Up @@ -51,6 +51,6 @@
]
},
"devDependencies": {
"graphql-ts-client-codegen": "^3.1.10"
"graphql-ts-client-codegen": "^3.1.11"
}
}
Loading

0 comments on commit 699f1c1

Please sign in to comment.