Skip to content

Commit d38caec

Browse files
Add link to GraphiQL in Object Types Tutorial (#1695)
* Adding link to GraphiQL in Object Types tutorial * Update src/pages/graphql-js/object-types.mdx --------- Co-authored-by: Benjie <[email protected]>
1 parent 6529c51 commit d38caec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/graphql-js/object-types.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ When you issue a GraphQL query against an API that returns object types, you can
135135
}
136136
```
137137

138-
If you run this code with `node server.js` and browse to http://localhost:4000/graphql you can try out these APIs with GraphiQL.
138+
If you run this code with `node server.js` and browse to http://localhost:4000/graphql you can try out these APIs with [GraphiQL](https://github.com/graphql/graphiql).
139139

140140
This way of defining object types often provides advantages over a traditional REST API. Instead of doing one API request to get basic information about an object, and then multiple subsequent API requests to find out more information about that object, you can get all of that information in one API request. That saves bandwidth, makes your app run faster, and simplifies your client-side logic.
141141

0 commit comments

Comments
 (0)