GraphiQL API Documentation
    Preparing search index...
    • Actions are functions used to update values in your store. They are static and never change.

      Returns {
          pop(): void;
          push(item: DocExplorerNavStackItem): void;
          rebuildNavStackWithSchema(schema: GraphQLSchema): void;
          reset(): void;
          resolveSchemaReferenceToNavItem(
              schemaReference: SchemaReference | null,
          ): void;
      }

      • pop: function
        • Pop the last item from the navigation stack.

          Returns void

      • push: function
      • rebuildNavStackWithSchema: function
        • Replace the nav stack with an updated version using the new schema.

          Parameters

          • schema: GraphQLSchema

          Returns void

      • reset: function
        • Reset the navigation stack to its initial state, this will remove all but the initial stack item.

          Returns void

      • resolveSchemaReferenceToNavItem: function
        • Parameters

          • schemaReference: SchemaReference | null

          Returns void