You are here

public function Server::removeAllPersistedQueryInstances in GraphQL 8.4

Removes all the persisted query instances.

Overrides ServerInterface::removeAllPersistedQueryInstances

File

src/Entity/Server.php, line 401

Class

Server
The main GraphQL configuration and request entry point.

Namespace

Drupal\graphql\Entity

Code

public function removeAllPersistedQueryInstances() : void {
  $this->persisted_query_instances = NULL;
  $this->sorted_persisted_query_instances = NULL;
}