broken link fix: link to blog for guide on security

This commit is contained in:
Chang Wang
2019-04-16 16:28:52 -07:00
parent ac49b74d4f
commit 28e249dbe5

View File

@@ -88,7 +88,7 @@ Authentication and authorization are important topics to discuss with any API. G
#### How can I secure my schema from malicious or expensive queries?
Public APIs of any kind need some kind of safeguards against malicious queries. Since GraphQL allows for recursive queries, it wouldn't be hard to create a query that is overly complicated and acts as a DoS attack, even by accident. There are multiple ways to prevent something like this from happening, from complexity limiting to query depth limiting. Read the [guide on security](../guides/security.html) to learn more.
Public APIs of any kind need some kind of safeguards against malicious queries. Since GraphQL allows for recursive queries, it wouldn't be hard to create a query that is overly complicated and acts as a DoS attack, even by accident. There are multiple ways to prevent something like this from happening, from complexity limiting to query depth limiting. Read the [guide on security](https://blog.apollographql.com/securing-your-graphql-api-from-malicious-queries-16130a324a6b) to learn more.
#### What kinds of cache should I set up?