Link Search Menu Expand Document

Variables

Using variables can simplify your queries and mutations using arguments as you don’t need separate operations for every argument possible. Variables in GraphQL allow clients to separate dynamic input from otherwise static operations. A GraphQL variable object is a JSON object containing the fields that your operation can accept.

query queryName ($variable : type) {
  fieldName1
  fieldName2 (filter: {field1 {in : $variable}}) {
    field1
    field2
  }
}

Variables:

{
  variable: “value”
}

Fragments

Fragments are sets of fields. Instead of specifying a list of field names whenever you use them, create a fragment once and reuse it everywhere.

query queryName {
  fieldName1
  fieldName2 {
    ...fragmentName
  }
}

fragment fragmentName on FieldName {
  field1
  field2
  field3
}

Directives

Directives are a way to conditionally control which fields are returned by a query. You can either include or skip a certain field or fields based on the argument passed to the directive.

query queryName($condition: Boolean) {
  fieldName1
  fieldName2 @include(if: $condition) {
    field1
    field2
  }
}

Learn more


© 2021 Intuit Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. Terms and conditions, features, support, pricing, and service options subject to change without notice.