All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.apollographql.apollo.runtime.java.interceptor.internal.AutoPersistedQueryInfo Maven / Gradle / Ivy

The newest version!
package com.apollographql.apollo.runtime.java.interceptor.internal;

import com.apollographql.apollo.api.ExecutionContext;
import org.jetbrains.annotations.NotNull;

class AutoPersistedQueryInfo implements ExecutionContext.Element {
  public boolean hit;

  public AutoPersistedQueryInfo(boolean hit) {
    this.hit = hit;
  }

  @NotNull @Override public Key getKey() {
    return KEY;
  }

  static final ExecutionContext.Key KEY = new ExecutionContext.Key() {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy