directives.graphql 244 B

123456789101112131415161718
  1. query MyQuery @directive(
  2. arg: 5
  3. # comment
  4. arg2: 10
  5. ) {
  6. field @skip(
  7. if: true
  8. # comment
  9. cursor: 10
  10. ) @nope
  11. otherField
  12. ...fragmentSpread, @include(if: ["this isn't even a boolean", "wow, that's really odd",,,,,])
  13. }