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

me.wener.jraphql.lang.FieldDefinition Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package me.wener.jraphql.lang;

import com.google.common.collect.Lists;
import java.util.List;
import lombok.Data;

/**
 * @author wener
 * @since 16/03/2018
 */
@Data
public class FieldDefinition extends AbstractDefinition
    implements HasDescription,
        HasName,
        HasDirectives,
        HasType,
        HasArgumentDefinitions {

  private String description;
  private String name;
  private List argumentDefinitions = Lists.newArrayList();
  private Type type;
  private List directives = Lists.newArrayList();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy