Log in to GraphQL Editor
Five mistakes to avoid when getting started with GraphQL
Tomek

Tomek Poniatowicz

3/15/2019

Five mistakes to avoid when getting started with GraphQL

Being short-sighted

It’s a mistake that can lead to serious complications later on. Thinking about your schema try being as predictive as possible in terms what can be required later on when your project grow. Even if you think that initial odds of this happening seems very low, take a while to plan through possible future elements like additional fields or output/input object types. If there is even a tiny changes that you will need them in the future, having them thought through will prevent your project from breaking changes later on.

Remember: A schema is a most important part of any GraphQL project so make sure to treat it with all due respect!

Plan your schema!

Inconsistency in naming

It's really important to keep naming conventions consistent. There are some common practices you shouldn't ignore, like:

  • using camelCase for fields
  • using PascalCase for the names of types ok
  • using all capital letters for ENUM values enum

Flattening objects in queries

There are a lot of mistakes you can make when "speaking" GraphQL. Not only mistakes that might prevent your project form working properly, but also that they won't use GraphQL possibilities to the fullest. A good example is a type we have created above.

Avoid queries like this

The leageId is a problem here as this will be seen as an inconsistency. When querying for a team’s league you need to perform two database calls:

  • to get the team with the leagueId
  • to pass the leagueId to another query

This is very negligent as GraphQL it's all about reducing the number of database calls. The GraphQL preferable way is nesting the output types which makes it easier to call your database with a single request and batch your data: Try structurize your GraphQL queries this way

Not using graphical interfaces

GraphQL is a very modern "language" so there are a lot of amazing tools, plugins or editors that can speed up the schema design process so why not using them? If you are starting your journey with GraphQL it is a great idea design your first schema with a graphical interface. This will reduce the number of mistakes, speed up your work and learning curve of GraphQL by a lot!

Not using GraphQL

If you are still focusing on REST you are making a canonical mistake. As none of them is perfect and both have pros & cons, it's really wise to know them both and then make a rational decision which would suit your project better.

Check out our other blogposts

What's new in TypeScript 3.9 RC
Tomek Poniatowicz
Tomek Poniatowicz
What's new in TypeScript 3.9 RC
2 min read
almost 4 years ago
Searchkit - Search UI with GraphQL, React and Elasticsearch
Tomek Poniatowicz
Tomek Poniatowicz
Searchkit - Search UI with GraphQL, React and Elasticsearch
3 min read
over 3 years ago
Generate GraphQL resolvers easily with GraphQL Centaur
Tomek Poniatowicz
Tomek Poniatowicz
Generate GraphQL resolvers easily with GraphQL Centaur
4 min read
almost 4 years ago

Ready for take-off?

Elevate your work with our editor that combines world-class visual graph, documentation and API console

Get Started with GraphQL Editor