Link Search Menu Expand Document

Introspection

Introspection allows you to query the schema for information about itself. That means the response of an introspection query contains the entire schema structure, including all the field names, types, and relationships. This is useful as you build your queries but it is especially useful to find out about updates to the schema. Note: Developers can query the full Ecosystem API schema but will have access to only certain parts of it based on the scopes their app is authorized for.

query {
  __schema {
    types {
      name
      fields {
        name
      }
    }
  }
}

© 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.