@Retention(value=RUNTIME) @Target(value=TYPE) @Documented public @interface Input
@Input("StarshipInput")
@Description("Input type for a starship")
public class Starship {
private String id;
private String name;
private float length;
// getters/setters...
}
Schema generation of this would result in a stanza such as:
"Input type for a starship"
input StarshipInput {
id: String
name: String
length: Float
}
public abstract String value
Copyright © 2019 – 2021 Eclipse Foundation. All rights reserved.
Use is subject to license terms.