graphql-tools 0.5.4

Tools for working with GraphQL in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
"""
  Directs the executor to include this field or
  fragment only when the `if` argument is true.
"""
directive @include("Included when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT

"""
  Directs the executor to skip this field or
  fragment when the `if` argument is true.
"""
directive @skip("Skipped when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT