Skip to content

Commit 1cbe6e7

Browse files
committed
fixed merge conflict
2 parents 4403951 + 83697aa commit 1cbe6e7

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

site/_css/users.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
section.whos-using-page {
22
padding-bottom: 6em;
33
text-align: center;
4-
max-width: 800px;
4+
max-width: 900px;
55

66
.prose {
77
max-width: 560px;

site/learn/Learn-Queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The field `name` returns a `String` type, in this case the name of the main hero
2828

2929
> Oh, one more thing - the query above is *interactive*. That means you can change it as you like and see the new result. Try adding an `appearsIn` field to the `hero` object in the query, and see the new result.
3030
31-
In the previous example, we just asked for a the name of our hero which returned a String, but fields can also refer to Objects. In that case, you can make a *sub-selection* of fields for that object. GraphQL queries can traverse related objects and their fields, letting clients fetch lots of related data in one request, instead of making several roundtrips as one would need in a classic REST architecture.
31+
In the previous example, we just asked for the name of our hero which returned a String, but fields can also refer to Objects. In that case, you can make a *sub-selection* of fields for that object. GraphQL queries can traverse related objects and their fields, letting clients fetch lots of related data in one request, instead of making several roundtrips as one would need in a classic REST architecture.
3232

3333
```graphql
3434
# { "graphiql": true }

site/users/index.html.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ var logos = [
8989
img: 'project-september.png',
9090
link: 'https://www.projectseptember.com/'
9191
},
92+
{
93+
name: 'Curio',
94+
img: 'curio.png',
95+
link: 'https://curio.org'
96+
},
9297
// Adding your logo?
9398
// Add it to the /users/logos/ directory and then append an entry above this comment.
9499
//

site/users/logos/curio.png

11.7 KB
Loading

site/users/logos/loggi.png

798 Bytes
Loading

0 commit comments

Comments
 (0)