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

graphql.kickstart.autoconfigure.editor.voyager.properties.VoyagerDisplayOptions Maven / Gradle / Ivy

The newest version!
package graphql.kickstart.autoconfigure.editor.voyager.properties;

import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Data;

@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class VoyagerDisplayOptions {

  private boolean skipRelay = true;
  private boolean skipDeprecated = true;
  private String rootType = "Query";
  private boolean sortByAlphabet = false;
  private boolean showLeafFields = true;
  private boolean hideRoot = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy