the directives are ignored if they are on top level fields. Here's an example that would return both `people` and `otherData`: ```graphql query { people @skip(if: true) { ... } otherData @skip(if: false) { ... } } ```