You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ GraphQL client library for Clojure and ClojureScript.
6
6
7
7
## Why
8
8
9
-
Writing GraphQL queries in the frontend applications is not straight forward. In JavaSript world it is common to see GraphQL queries written as inline strings inside the application code:
9
+
Writing GraphQL queries in the frontend applications is not straight forward. In JavaScript world it is common to see GraphQL queries written as inline strings inside the application code:
10
10
11
11
```javascript
12
12
client.query(`
@@ -238,7 +238,7 @@ query {
238
238
name
239
239
}
240
240
}
241
-
```
241
+
```
242
242
243
243
but, with graphql-builder you can compose this query from the application code:
0 commit comments