Log in to GraphQL Editor
GraphQL Tutorial - Queries and mutations Part 2
Tomek

Tomek Poniatowicz

1/8/2019

GraphQL Tutorial - Queries and mutations Part 2

In Part 1 of our GraphQL Tutorial, we have ended covering Operation Name. Let’s move to a feature allowing us to save some time as well as bits over the wire - the Variables.

Variables

Until now, our arguments were written inside a query string. As most of the time, arguments to fields will be dynamic, it’s a poor idea to pass the dynamic arguments in the query string. To handle this client-side code would need to manipulate the query string at runtime dynamically, serializing it into a format specific for GraphQL. GraphQL comes with a solution - variables.

To start using them, we need to follow three steps. First, we need to replace a static value in the query with $variableName. Next to declare $variableName as one of the variables accepted by the query and finally pass variableName: value in the separate, transport-specific variables dictionary (a JSON would be just fine).

Query:

query UserNameAndFriends($gender: Gender) {
  user(gender: $gender) {
    name
    friends {
      name
    }
  }
}

Variable:

{
  "gender": "MALE"
}

Result:

{
  "data": {
    "user": {
      "name": "James",
      "friends": [
        {
          "name": "Adam"
        },
        {
          "name": "Paul"
        },
        {
          "name": "Chris"
        }
      ]
    }
  }
}

Variable definitions

The variable definitions are the part that looks like this in the above query ($gender: Gender). It operates the same way as the argument definitions for a function in a typed language. It lists all variables prefixed with $ followed by their type (in this case Gender).

All declared variables must be both:

  • Scalars
  • Enums
  • Input Object Types

This means that if you want to pass a complex object into a field, you need to know which input type will match on the server.

Variable definitions can be:

  • optional
  • requisitely

In the above case, it is optional. But if the field in which you pass the variable requires a non-zero argument, the variable must also be required.

You will learn more about the syntax for these variable definitions in our next article about the schema language GraphQL.

Default variables

In GraphQL you can assign Default values to the variables. It’s done by by adding the default value after the type declaration in your query. If Default values are provided for all variables, you can call the query without passing any variables. Note that If you will pass any variables in your query they Default values will be overridden.

query UserNameAndFriends($gender: Gender = MALE) {
  user(gender: $gender) {
    name
    friends {
      name
    }
  }
}

Directives

Directives let you include or exclude a field if a variable is true or false. It's very useful when we need to dynamically change the structure of the query.

Query:

query User($gender: Gender, $withFriends: Boolean!) {
  user(gender: $gender) {
    name                
    friends @include(if: $withFriends) {
      name
    }
  }
}

Variables:

{
  "gender": "MALE",
  "withFriends": true
}

Result:

{
  "data": {
    "user": {
      "name": "James",
      "friends": [
        {
          "name": "Adam"
        },
        {
          "name": "Paul"
        },
        {
          "name": "Chris"
        }
      ]
    }
  }
}

In this case withFriends variable we pass is true so we also get the friends field, if false we won't.

There are two types of directives available in GraphQL:

  • @include(if: Boolean) that includes field in the result if true.
  • @skip(if: Boolean) that skip field if the argument is true.

As already mentioned, Directives are great to handle situations where you normally would have to perform string manipulations to change some fields in your query.

Check out our other blogposts

Power of typeof & typestyle in react apps
Artur Czemiel
Artur Czemiel
Power of typeof & typestyle in react apps
3 min read
about 5 years ago
Tina Cloud -  a headless CMS backed by Git
Michał Tyszkiewicz
Michał Tyszkiewicz
Tina Cloud - a headless CMS backed by Git
4 min read
over 2 years ago
Vue - introduction to Web Components
Michał Tyszkiewicz
Michał Tyszkiewicz
Vue - introduction to Web Components
5 min read
over 3 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